Click or drag to resize

DXFReaderNETControlAddHatch Method (HatchPattern, ListEntityObject, ListEntityObject, Double, Double, Int16, String, String)

Adds a new hatch to the current drawing giving the pattern object.

Namespace:  DXFReaderNET
Assembly:  DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax
public EntityObject AddHatch(
	HatchPattern Pattern,
	List<EntityObject> Boundary,
	List<EntityObject> BoundaryOutermost = null,
	double Rotation = 0,
	double Scale = 1,
	short ACIColor = 256,
	string LayerName = "",
	string LineTypeName = ""
)

Parameters

Pattern
Type: DXFReaderNET.EntitiesHatchPattern
The pattern.
Boundary
Type: System.Collections.GenericListEntityObject
A list of entities defining the boundary.
BoundaryOutermost (Optional)
Type: System.Collections.GenericListEntityObject
A list of entities defining the outermost boundary.
Rotation (Optional)
Type: SystemDouble
The hatch rotation in drawing's units (Default value = 0).
Scale (Optional)
Type: SystemDouble
The hatch scale in drawing's units (Default value = 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 layer name. If omitted, or layername doesn't exist, , or layername doesn't exist, the CurrentLineTypeName will be used.

Return Value

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