DXFReaderNETControlAddHatch Method (String, Vector2, Double, Double, Int16, String, String)
|
Adds a new hatch to the current drawing giving the pattern name and a point inside.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public EntityObject AddHatch(
string PatternName,
Vector2 Position,
double Rotation = 0,
double Scale = 1,
short ACIColor = 256,
string LayerName = "",
string LineTypeName = ""
)
Public Function AddHatch (
PatternName As String,
Position As Vector2,
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,
Vector2 Position,
double Rotation = 0,
double Scale = 1,
short ACIColor = 256,
String^ LayerName = L"",
String^ LineTypeName = L""
)
member AddHatch :
PatternName : string *
Position : Vector2 *
?Rotation : float *
?Scale : float *
?ACIColor : int16 *
?LayerName : string *
?LineTypeName : string
(* Defaults:
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,
Position AS Vector2,
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. - Position
- Type: DXFReaderNETVector2
Point inside the hatch. - 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.
See Also