FDO API Reference Feature Data Objects

GeometricPropertyDefinition Class Reference

List of all members.

Detailed Description

FdoGeometricPropertyDefinition derives from FdoPropertyDefinition and represents a geometric value. Geometric properties can take on any of the geometric types listed in the FdoGeometricType enumeration. Note: Geometric properties do not actually store the coordinate system or measure units, this is to enable the use of the same schema in different geometric locals. FdoGeometricType informs the client application what types of geometric primitives it can expect when reading a particular geometric property (and what types they can store in the property on insert/update). The client application can interpret the actual geometry values as it wants, e.g., displaying and manipulating the vertices of a Polyline as a group of independent points.


Public Member Functions

 GeometricPropertyDefinition (System::IntPtr unmanaged, System::Boolean autoDelete)
 GeometricPropertyDefinition (System::String *name, System::String *description, System::Boolean system)
 GeometricPropertyDefinition (System::String *name, System::String *description)
 Constructs an instance of an FdoGeometricPropertyDefinition using the specified arguments.
 GeometricPropertyDefinition ()
 Constructs a default instance of an FdoGeometricPropertyDefinition.
__property System::Int32 get_GeometryTypes ()
 Gets the FdoGeometricTypes that can be stored in this geometric property. The returned value may be any combination of the values from the FdoGeometricType enumeration combined via a bit-wise or operation.
__property System::Boolean get_HasElevation ()
 Gets a Boolean value that indicates if the geometry of this property include elevation values.
__property System::Boolean get_HasMeasure ()
 Gets a Boolean value that indicates if the geometry of this property includes measurement values that can be used for dynamic segmentation.
__property NAMESPACE_OSGEO_FDO_SCHEMA::PropertyType get_PropertyType ()
 Gets the concrete property type.
__property System::Boolean get_ReadOnly ()
 Returns a Boolean value that indicates if this geometric property is read-only.
__property System::String * get_SpatialContextAssociation ()
 Gets the Spatial Context name associated to this geometric property.
__property System::Void set_GeometryTypes (System::Int32 value)
 Sets the FdoGeometricTypes that can be stored in this geometric property. The value may be any combination of the values from the FdoGeometricType enumeration combined via a bit-wise or operation.
__property System::Void set_HasElevation (System::Boolean value)
 Sets a Boolean value that determines if the geometry of this property includes elevation values.
__property System::Void set_HasMeasure (System::Boolean value)
 Sets a Boolean value that determines if the geometry of this property includes measurement values that can be used for dynamic segmentation.
__property System::Void set_ReadOnly (System::Boolean value)
 Sets a Boolean value that specifies whether this geometric property is read-only.
__property System::Void set_SpatialContextAssociation (System::String *value)
 Sets/add a Spatial Context association to this geometric property.

Comments or suggestions? Send us feedback.