This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 416
5775cabb aa55 e0d1 59bc 4fa42e5121f6
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Initialized a new group with the specified entities.
Namespace: netDxf.Objects
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public Group(
string name,
IEnumerable<EntityObject> entities
)
VB
Public Sub New (
name As String,
entities As IEnumerable(Of EntityObject)
)
C++
public:
Group(
String^ name,
IEnumerable<EntityObject^>^ entities
)
F#
new :
name : string *
entities : IEnumerable<EntityObject> -> Group
- String
- Group name (optional).
- IEnumerable(EntityObject)
- The list of entities contained in the group.
If the name is set to null or empty, a unique name will be generated when the group is added to the document.