PointGroupPointStyleId Property

Specifies what points match this description key during description key matching.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntax
public ObjectId PointStyleId { get; set; }

Property Value

ObjectId
Exceptions
ExceptionCondition
ArgumentException Thrown when the ObjectId is not a PointStyle object.
Remarks
ObjectId.Null is a valid value.
Example
1ObjectId pointStyleId = pointGroup.PointStyleId;
2PointStyle pointStyle = pointStyleId.GetObject(OpenMode.ForRead) as PointStyle;
3write("Point style for PointGroup: " + pointStyle.Name + "\n");
See Also