DrawingPlaneAPI#
Interface DrawingPlaneAPI
Hierarchy
- DrawingPlaneAPI
Methods
change
- changeDrawing Plane(drawingPlaneId, properties): DrawingPlaneProperties 
- Experimental- Parameters- 
drawingPlaneId: numberThe ID of the DrawingPlane you want to change. 
- 
properties: DrawingPlanePropertiesThe properties of the DrawingPlane you want change. 
 - Returns DrawingPlaneProperties- An Object with the changed Properties. 
- 
create
- createDrawing Plane(properties?): number 
- Experimental- Creates a new DrawingPlane with the specified properties. - Parameters- 
Optionalproperties: DrawingPlanePropertiesInitial properties of the created Drawing. 
 - Returns number- The ID of the newly created Drawing. 
- 
get
- getDrawing Plane Data(drawingPlaneId): DrawingPlaneProperties 
- Experimental- Returns the DrawingPlane properties for the specified DrawingPlane ID. - Parameters- 
drawingPlaneId: numberThe ID of the DrawingPlane you want to get the Data for. 
 - Returns DrawingPlaneProperties- The requested DrawingPlane properties. 
- 
get
remove
- removeDrawing Plane(drawingPlaneId, safe?): RemoveState 
- Experimental- Removes a DrawingPlane with the specified ID. If a DrawingPlane is part of a Snapshot the removal will fail with the State REFERENCED_BY_SNAPSHOT. - Parameters- 
drawingPlaneId: numberThe ID of the Drawing you want to remove. 
- 
Optionalsafe: booleanPerforms a safe remove which interrupt the removal process if the Drawing is part of one or more Snapshots. 
 - Returns RemoveState
- 
Changes one or more properties of a DrawingPlane with the specified ID.