ImageGear21.Art Assembly > ImageGear.ART Namespace > ImGearARTGroupArray Class > Item Property : Item(Int32) Property |
'Declaration Public Overloads Property Item( _ ByVal index As Integer _ ) As ImGearARTGroup
'Usage Dim instance As ImGearARTGroupArray Dim index As Integer Dim value As ImGearARTGroup instance.Item(index) = value value = instance.Item(index)
public ImGearARTGroup Item( int index ) {get; set;}
public: __property ImGearARTGroup* get_Item( int index ); public: __property void set_Item( int index, ImGearARTGroup* value );
public: property ImGearARTGroup^ Item { ImGearARTGroup^ get(int index); void set (int index, ImGearARTGroup^ value); }
When setting a new group at the specified index, please make sure it does not have parent page (i.e. ImGearARTGroup.ParentPage is null), otherwise ImageGear.Core.ImGearException will be thrown. If the group to be added already has parent page, please clone it prior to setting at the specified index.