PartDataField Class

An extensible field of part data.
Inheritance Hierarchy
SystemObject
  Autodesk.Civil.DatabaseServicesPartDataField
    Autodesk.Civil.DatabaseServices.StylesSizeFilterField

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntax
public class PartDataField

The PartDataField type exposes the following members.

Properties
 NameDescription
Public propertyContext Gets the parameter context.
Public propertyContextString Gets the parameter context string.
Public propertyDataType Gets the type of the reserved data.
Public propertyDescription Gets the description of the data field.
Public propertyIndex Gets the parameter index.
Public propertyIsFromList Gets if the value of data field should be set from a fixed list.
Public propertyIsFromRange Gets if the value of data field should be set from a range.
Public propertyIsReadOnly Checks if the data field is read-only.
Public propertyName Gets the name of the data field.
Public propertyUnits Gets the parameter units.
Public propertyValue Gets or sets the value. The value type is returned by the DataType property.
Public propertyValueList Gets the list of valid data if the data field is from a fixed list.
Public propertyValueRange Gets the range of valid data if the data field is from a range.
Top
Remarks
To edit the value of a PartDataField in a Part object's PartDataRecord, you must open the Part (Pipe or Structure) for write, get a reference to the Part object's PartData property (type PartDataRecord), modify the PartDatafield value, and then re-set the Part's PartData. See the example code for PartDataRecord. A similar procedure is required for editing a PartSize. See the example code for PartSize for a sample.
See Also