Block Constructor (String, IEnumerableEntityObject, IEnumerableAttributeDefinition)
|
Initializes a new instance of the Block class.
Namespace:
DXFReaderNET.Blocks
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public Block(
string name,
IEnumerable<EntityObject> entities,
IEnumerable<AttributeDefinition> attributes
)
Public Sub New (
name As String,
entities As IEnumerable(Of EntityObject),
attributes As IEnumerable(Of AttributeDefinition)
)
public:
Block(
String^ name,
IEnumerable<EntityObject^>^ entities,
IEnumerable<AttributeDefinition^>^ attributes
)
new :
name : string *
entities : IEnumerable<EntityObject> *
attributes : IEnumerable<AttributeDefinition> -> Block
CONSTRUCTOR(
name AS STRING,
entities AS IEnumerable<EntityObject>,
attributes AS IEnumerable<AttributeDefinition>
)
Parameters
- name
- Type: SystemString
Block name. - entities
- Type: System.Collections.GenericIEnumerableEntityObject
The list of entities that make the block. - attributes
- Type: System.Collections.GenericIEnumerableAttributeDefinition
The list of attribute definitions that make the block.
See Also