Gets the name of the "_All Points" point group.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 10.5.768.0
Syntax
C# |
---|
public static string AllPointsGroupName { get; } |
Visual Basic |
---|
Public Shared ReadOnly Property AllPointsGroupName As String
Get |
Visual C++ |
---|
public:
static property String^ AllPointsGroupName {
String^ get ();
} |
Examples
CopyC#
1string allPointsName = PointGroup.AllPointsGroupName;
2write("_All Points group name: " + allPointsName + "\n");
CopyVB.NET
1Dim allPointsName As String = PointGroup.AllPointsGroupName
2write("_All Points group name: " & allPointsName & vbLf)
See Also