PointGroupAllPointsGroupName Property |
Gets the name of the "_All Points" point group.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntaxpublic static string AllPointsGroupName { get; }
Public Shared ReadOnly Property AllPointsGroupName As String
Get
public:
static property String^ AllPointsGroupName {
String^ get ();
}
Property Value
String
Remarks
"_All Points" is the name in en-us. It varies in different language versions of Civil 3D.
Example1string allPointsName = PointGroup.AllPointsGroupName;
2write("_All Points group name: " + allPointsName + "\n");
1Dim allPointsName As String = PointGroup.AllPointsGroupName
2write("_All Points group name: " & allPointsName & vbLf)
No code example is currently available or this language may not be supported.
See Also