Gets the raw description used for points created by description key for the PointGroup.
Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.280
Syntax
C#
public string RawDescription { get; }
VB
Public ReadOnly Property RawDescription As String Get
C++
public: property String^ RawDescription { String^ get (); }
Property Value
StringExample
C#
1String rawDescription = pointGroup.RawDescription; 2write("PointGroup Raw Description: " + rawDescription + "\n");
VB
1Dim rawDescription As [String] = pointGroup__1.RawDescription 2write("PointGroup Raw Description: " & rawDescription & vbLf)