Accusoft.TwainProSdk Namespace > DataSourceCollection Class : Item Property |
'Declaration <DescriptionAttribute("Gets the element at the given index.")> <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> <BrowsableAttribute(False)> Public ReadOnly Default Property Item( _ ByVal index As Integer _ ) As String
'Usage Dim instance As DataSourceCollection Dim index As Integer Dim value As String value = instance.Item(index)
[Description("Gets the element at the given index.")] [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] [Browsable(false)] public string this[ int index ]; {get;}
[Description("Gets the element at the given index.")] [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] [Browsable(false)] public: __property string* get_Item int index ;
[Description("Gets the element at the given index.")] [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] [Browsable(false)] public: property String^ default [int] { String^ get(int index); }
This method implements a standard collection operation. It is the principle method you will use to read elements in the collection. You can read any element in the collection with this method.