Class UserHandleCollection
Initializes a new instance of the UserHandleCollection class.
Inheritance
System.Object
UserHandleCollection
Namespace: Syncfusion.SfDiagram.XForms
Assembly: Syncfusion.SfDiagram.XForms.dll
Syntax
public class UserHandleCollection : Object
Constructors
UserHandleCollection()
Declaration
public UserHandleCollection()
Properties
Count
Gets the count.
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The count. |
Item[Int32]
Gets the UserHandleCollection at the specified index.
Declaration
public UserHandle this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | Index. |
Property Value
Type |
---|
UserHandle |
Methods
Add(UserHandle)
Add the specified handle.
Declaration
public void Add(UserHandle handle)
Parameters
Type | Name | Description |
---|---|---|
UserHandle | handle | Handle. |
GetEnumerator()
Gets the enumerator.
Declaration
public IEnumerator<UserHandle> GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<UserHandle> | The enumerator. |
Remove(UserHandle)
Remove the specified handle.
Declaration
public void Remove(UserHandle handle)
Parameters
Type | Name | Description |
---|---|---|
UserHandle | handle | Handle. |