Class SymbolGroups
Represents the symbol groups in the stencil.
Inheritance
System.Object
SymbolGroups
Namespace: Syncfusion.SfDiagram.Android
Assembly: Syncfusion.SfDiagram.Android.dll
Syntax
public class SymbolGroups : Object
Constructors
SymbolGroups()
Initializes a new instance of the SymbolGroups class.
Declaration
public SymbolGroups()
Properties
Count
Gets the number of symbol group in the symbol groups.
Declaration
public int Count { get; }
Property Value
Type |
---|
System.Int32 |
Item[Int32]
Gets the Symbol Group at the specified index.
Declaration
public SymbolGroup this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | It defines the index of the symbol group. |
Property Value
Type | Description |
---|---|
SymbolGroup | returns value. |
Methods
Add(SymbolGroup)
Add the specified symbol group into symbol groups.
Declaration
public void Add(SymbolGroup symbolGroup)
Parameters
Type | Name | Description |
---|---|---|
SymbolGroup | symbolGroup | It defines the symbol group. |
Clear()
Clear all the symbol group from the symbol groups.
Declaration
public void Clear()
GetEnumerator()
IEnumerator collection of Node.
Declaration
public IEnumerator<SymbolGroup> GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<SymbolGroup> | It defines the IEnumerator collection of Node. |
IndexOf(SymbolGroup)
Returns the index of the specified symbol group.
Declaration
public int IndexOf(SymbolGroup symbolGroup)
Parameters
Type | Name | Description |
---|---|---|
SymbolGroup | symbolGroup | SymbolGroup to be searched. |
Returns
Type | Description |
---|---|
System.Int32 | returns index value. |
Remove(SymbolGroup)
Remove the specified symbol group from the symbol groups.
Declaration
public void Remove(SymbolGroup symbolGroup)
Parameters
Type | Name | Description |
---|---|---|
SymbolGroup | symbolGroup | Remove the specified symbol group from the palette. |
RemoveAt(Int32)
Remove the specified symbol group at the specified index.
Declaration
public void RemoveAt(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | index value. |