DXFReaderNETControlAddHatch Method (String, ListEntityObject, ListEntityObject, Double, Double, Int16, String, String)
|
Adds a new hatch to the current drawing giving the pattern name.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntax public EntityObject AddHatch(
string PatternName,
List<EntityObject> Boundary,
List<EntityObject> HollowBoundary = null,
double Rotation = 0,
double Scale = 1,
short ACIColor = 256,
string LayerName = "",
string LineTypeName = ""
)
Public Function AddHatch (
PatternName As String,
Boundary As List(Of EntityObject),
Optional HollowBoundary As List(Of EntityObject) = Nothing,
Optional Rotation As Double = 0,
Optional Scale As Double = 1,
Optional ACIColor As Short = 256,
Optional LayerName As String = "",
Optional LineTypeName As String = ""
) As EntityObject
public:
EntityObject^ AddHatch(
String^ PatternName,
List<EntityObject^>^ Boundary,
List<EntityObject^>^ HollowBoundary = nullptr,
double Rotation = 0,
double Scale = 1,
short ACIColor = 256,
String^ LayerName = L"",
String^ LineTypeName = L""
)
member AddHatch :
PatternName : string *
Boundary : List<EntityObject> *
?HollowBoundary : List<EntityObject> *
?Rotation : float *
?Scale : float *
?ACIColor : int16 *
?LayerName : string *
?LineTypeName : string
(* Defaults:
let _HollowBoundary = defaultArg HollowBoundary null
let _Rotation = defaultArg Rotation 0
let _Scale = defaultArg Scale 1
let _ACIColor = defaultArg ACIColor 256
let _LayerName = defaultArg LayerName ""
let _LineTypeName = defaultArg LineTypeName ""
*)
-> EntityObject
METHOD AddHatch(
PatternName AS STRING,
Boundary AS List<EntityObject>,
HollowBoundary AS List<EntityObject> := NULL,
Rotation AS REAL8 := 0,
Scale AS REAL8 := 1,
ACIColor AS SHORT := 256,
LayerName AS STRING := "",
LineTypeName AS STRING := ""
) AS EntityObject
Parameters
- PatternName
- Type: SystemString
The pattern name. - Boundary
- Type: System.Collections.GenericListEntityObject
A list of entities defining the boundary. - HollowBoundary (Optional)
- Type: System.Collections.GenericListEntityObject
A list of entities defining the boundary that encloses or defines empty or open spaces within an area. - 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:
EntityObjectThe new added
Hatch.
Examples
Adds a solid hatch to a closed object. Assuming that in the following drawing:
the ellipse is the entity #0, the circle is the entity #1 and the rectangle is the entity #2 use the following code:
[C#]
List<EntityObject> Boundary = new List<EntityObject>();
List<EntityObject> BoundaryOutermost = new List<EntityObject>();
Boundary.Add(dxfReaderNETControl1.DXF.Entities[0]);
BoundaryOutermost.Add(dxfReaderNETControl1.DXF.Entities[1]);
BoundaryOutermost.Add(dxfReaderNETControl1.DXF.Entities[2]);
dxfReaderNETControl1.AddHatch("SOLID", Boundary, BoundaryOutermost);
The result is:
See Also