SmartZone v8.0 - Updated
Accusoft.SmartZoneICR.Net Assembly / Accusoft.SmartZoneICRSdk Namespace / Reader Class / DataValidationListGetAt Method
Index between 0 and DataValidationListCount-1




In This Topic
    DataValidationListGetAt Method (Reader)
    In This Topic
    Returns the string value of an entry at the specified index
    Syntax
    'Declaration
     
    
    Public Function DataValidationListGetAt( _
       ByVal index As Integer _
    ) As String
    'Usage
     
    
    Dim instance As Reader
    Dim index As Integer
    Dim value As String
     
    value = instance.DataValidationListGetAt(index)
    public string DataValidationListGetAt( 
       int index
    )
    public: string* DataValidationListGetAt( 
       int index
    ) 
    public:
    String^ DataValidationListGetAt( 
       int index
    ) 

    Parameters

    index
    Index between 0 and DataValidationListCount-1
    Exceptions
    ExceptionDescription
    Thrown if index is less than 0 or greater than or equal to DataValidationListCount.
    Remarks

    This method retrieves the string value of an entry in the data validation list at the specified index. If the index is equal or greater than the Count, an exception will be thrown.

    See Also