Hatch Constructor (HatchPattern, Boolean)
|
Initializes a new instance of the Hatch class.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public Hatch(
HatchPattern pattern,
bool associative
)
Public Sub New (
pattern As HatchPattern,
associative As Boolean
)
public:
Hatch(
HatchPattern^ pattern,
bool associative
)
new :
pattern : HatchPattern *
associative : bool -> Hatch
CONSTRUCTOR(
pattern AS HatchPattern,
associative AS LOGIC
)
Parameters
- pattern
- Type: DXFReaderNET.EntitiesHatchPattern
Hatch pattern. - associative
- Type: SystemBoolean
Defines if the hatch is associative or not.
Remarks
This constructor is initialized with an empty list of boundary paths, remember a hatch without boundaries will be discarded when saving the file.
The hatch boundary paths must be on the same plane as the hatch.
The normal and the elevation of the boundary paths will be omitted (the hatch elevation and normal will be used instead).
Only the x and y coordinates for the center of the line, ellipse, circle and arc will be used.
See Also