Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

5775cabb aa55 e0d1 59bc 4fa42e5121f6

haplokuon edited this page May 6, 2023 · 1 revision

Group(String, IEnumerable<EntityObject>) Constructor

netDxf 3.0.0 Library

Initialized a new group with the specified entities.

Definition

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

Parameters

  String
Group name (optional).
  IEnumerable(EntityObject)
The list of entities contained in the group.

Remarks

If the name is set to null or empty, a unique name will be generated when the group is added to the document.

See Also

Reference

Group Class
Group Overload
netDxf.Objects Namespace

Clone this wiki locally