EnableOperations Method

Enables all the operations with the specific type in the collection.

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

Syntax

C#

public void EnableOperations(
	Type operationClassType
)

Visual Basic

Public Sub EnableOperations ( _
	operationClassType As Type _
)

Visual C++

public:
void EnableOperations(
	Type^ operationClassType
)

Parameters

operationClassType
Type: System.Type
The type of the specific surface operation class which should derive from SurfaceOperation.

Remarks

If there are any status changes for those operations, the surface will be out-of-date, user needs to rebuild the surface manually.

Exceptions

ExceptionCondition
System.ArgumentException Thrown when the class specified by the operationClassType is not a valid SurfaceOperation class.

See Also