adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / IJobVariableDictionary Interface / Item Property


In This Topic
    Item Property (IJobVariableDictionary)
    In This Topic
    Gets the item with the specified string or integer index.
    Syntax
    'Declaration
     
    
    <NotNullAttribute()>
    Default Property Item( _
       ByVal index As Object _
    ) As String
    [NotNull()]
    string this[ 
       object index
    ]; {get; set;}
    [NotNull()]
    property String^ default [Object^] {
       String^ get(Object^ index);
       void set (Object^ index, String^ value);
    }

    Parameters

    index
    Remarks
    If index is an integer value, returns the item at the specified ordinal index in the collection. If index is a string value, returns the item with the specified key. If the no variable exists with the specified key, returns an empty string.
    See Also