Class GroupViewItemAccessibleObjectsIndexer
Provides indexed access to GroupViewItemAccessibleObject instances for items in a GroupView control.
Inheritance
System.Object
GroupViewItemAccessibleObjectsIndexer
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Shared.Base.dll
Syntax
public class GroupViewItemAccessibleObjectsIndexer : Object
Constructors
GroupViewItemAccessibleObjectsIndexer(GroupView)
Initializes a new instance of the GroupViewItemAccessibleObjectsIndexer class.
Declaration
public GroupViewItemAccessibleObjectsIndexer(GroupView gvctrl)
Parameters
| Type | Name | Description |
|---|---|---|
| GroupView | gvctrl | The GroupView control associated with this indexer. |
Properties
Item[Int32]
Gets the accessible object for the item at the specified index, creating it if necessary.
Declaration
public GroupViewItemAccessibleObject this[int index] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index | The index of the item. |
Property Value
| Type |
|---|
| GroupViewItemAccessibleObject |
Methods
GetItem(Int32)
Retrieves the accessible object for the item at the specified index.
Declaration
public GroupViewItemAccessibleObject GetItem(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index | The index of the item. |
Returns
| Type |
|---|
| GroupViewItemAccessibleObject |
ResetItem(Int32)
Resets (clears) the accessible object for the item at the specified index.
Declaration
public void ResetItem(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index | The index of the item to reset. |
SetItem(Int32, GroupViewItemAccessibleObject)
Sets the accessible object for the item at the specified index.
Declaration
public void SetItem(int index, GroupViewItemAccessibleObject accobj)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index | The index of the item. |
| GroupViewItemAccessibleObject | accobj | The accessible object to associate with the item. |