Gets or sets the part data record.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0

Syntax

C#
public PartDataRecord PartData { get; set; }
Visual Basic
Public Property PartData As PartDataRecord
	Get
	Set
Visual C++
public:
property PartDataRecord^ PartData {
	PartDataRecord^ get ();
	void set (PartDataRecord^ value);
}

Remarks

To edit the value of a PartDataField in a 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.

See Also