Click or drag to resize

DXFReaderNETControlAddInsert Method

Adds a new insert entity to the current drawing.

Namespace:  DXFReaderNET
Assembly:  DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax
public EntityObject AddInsert(
	string BlockName,
	Vector3 Position,
	double Rotation = 0,
	Vector3 Scale = default,
	short ACIColor = 256,
	string LayerName = "",
	string LineTypeName = ""
)

Parameters

BlockName
Type: SystemString
The block name
Position
Type: DXFReaderNETVector3
The position of the insert entity.
Rotation (Optional)
Type: SystemDouble
The rotation in degree of the insert entity.
Scale (Optional)
Type: DXFReaderNETVector3
A vector with scaling along x, y and z (Default value: [1,1,1]).
ACIColor (Optional)
Type: SystemInt16
A number for 0 to 256 corresponding to the AutoCAD Color Index (0 = ByBlock; 256 = ByLayer. Default value = 256).
LayerName (Optional)
Type: SystemString
The layer name. If omitted, or layername doesn't exist, the CurrentLayer will be used.
LineTypeName (Optional)
Type: SystemString
The linetype name. If omitted, or linetype doesn't exist, the CurrentLineTypeName will be used.

Return Value

Type: EntityObject
The new added Insert.
Remarks
The entity is added to the active layout.
See Also