PointGroupPointStyleId Property |
Specifies what points match this description key during description key matching.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.7.0.1190
Syntaxpublic ObjectId PointStyleId { get; set; }
Public Property PointStyleId As ObjectId
Get
Set
public:
property ObjectId PointStyleId {
ObjectId get ();
void set (ObjectId value);
}
Property Value
ObjectId
ExceptionsException | Condition |
---|
ArgumentException |
Thrown when the ObjectId is not a PointStyle object.
|
Remarks
ObjectId.Null is a valid value.
Example1ObjectId pointStyleId = pointGroup.PointStyleId;
2PointStyle pointStyle = pointStyleId.GetObject(OpenMode.ForRead) as PointStyle;
3write("Point style for PointGroup: " + pointStyle.Name + "\n");
1Dim pointStyleId As ObjectId = pointGroup__1.PointStyleId
2Dim pointStyle As PointStyle = TryCast(pointStyleId.GetObject(OpenMode.ForRead), PointStyle)
3write("Point style for PointGroup: " + pointStyle.Name & vbLf)
No code example is currently available or this language may not be supported.
See Also