Returns an ObjectIdCollection containing the ObjectId's of all the surfaces in the drawing.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.5.1584.0

Syntax

C#
public static ObjectIdCollection GetCivilSurfaceIds(
	this Database database
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function GetCivilSurfaceIds ( _
	database As Database _
) As ObjectIdCollection
Visual C++
public:
[ExtensionAttribute]
static ObjectIdCollection^ GetCivilSurfaceIds(
	Database^ database
)

Parameters

database
Type: Database

Return Value

An ObjectIdCollection of all the surfaces in the drawing. The collection is empty (Count == 0) if there are no surfaces in the drawing.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Database. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

This method returns an ObjectIdCollection, which contains the ObjectId's for all surface objects in the drawing.

See Also