adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / IJobVariableDictionary Interface / GetVariable Method / GetVariable(String) Method
The name (case-insensitive) of the variable to get.


In This Topic
    GetVariable(String) Method
    In This Topic
    Gets the variable at the specified index;
    Syntax
    'Declaration
     
    
    <NotNullAttribute()>
    Overloads Function GetVariable( _
       ByVal index As String _
    ) As IJobVariable
    [NotNull()]
    IJobVariable GetVariable( 
       string index
    )
    [NotNull()]
    IJobVariable^ GetVariable( 
       String^ index
    ) 

    Parameters

    index
    The name (case-insensitive) of the variable to get.

    Return Value

    The requested variable, or a null reference (Nothing in Visual Basic) if no variable exists with that name.
    Remarks
    Adding or updating variables in this collection only affects the job instance in which the script is running.
    See Also