HatchPattern Constructor (String, IEnumerableHatchPatternLineDefinition, String)
|
Initializes a new instance of the HatchPattern class.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public HatchPattern(
string name,
IEnumerable<HatchPatternLineDefinition> lineDefinitions,
string description
)
Public Sub New (
name As String,
lineDefinitions As IEnumerable(Of HatchPatternLineDefinition),
description As String
)
public:
HatchPattern(
String^ name,
IEnumerable<HatchPatternLineDefinition^>^ lineDefinitions,
String^ description
)
new :
name : string *
lineDefinitions : IEnumerable<HatchPatternLineDefinition> *
description : string -> HatchPattern
CONSTRUCTOR(
name AS STRING,
lineDefinitions AS IEnumerable<HatchPatternLineDefinition>,
description AS STRING
)
Parameters
- name
- Type: SystemString
Pattern name, always stored as uppercase. - lineDefinitions
- Type: System.Collections.GenericIEnumerableHatchPatternLineDefinition
The definition of the lines that make up the pattern (not applicable in Solid fills). - description
- Type: SystemString
Description of the pattern (optional, this information is not saved in the dxf file). By default it will use the supplied name.
See Also