VBArrayPrototype.getItem(Object, Object[]) Método
Definição
Obtém o valor na posição especificada na matriz especificada.Gets the value at the specified position in the specified array.
Esta API dá suporte à infraestrutura do produto e não deve ser usada diretamente do seu código.
public:
static System::Object ^ getItem(System::Object ^ thisob, ... cli::array <System::Object ^> ^ args);
[Microsoft.JScript.JSFunction((Microsoft.JScript.JSFunctionAttributeEnum) 18, Microsoft.JScript.JSBuiltin.VBArray_getItem)]
public static object getItem (object thisob, params object[] args);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject | Microsoft.JScript.JSFunctionAttributeEnum.HasVarArgs, Microsoft.JScript.JSBuiltin.VBArray_getItem)]
public static object getItem (object thisob, params object[] args);
[<Microsoft.JScript.JSFunction((Microsoft.JScript.JSFunctionAttributeEnum) 18, Microsoft.JScript.JSBuiltin.VBArray_getItem)>]
static member getItem : obj * obj[] -> obj
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject | Microsoft.JScript.JSFunctionAttributeEnum.HasVarArgs, Microsoft.JScript.JSBuiltin.VBArray_getItem)>]
static member getItem : obj * obj[] -> obj
Public Shared Function getItem (thisob As Object, ParamArray args As Object()) As Object
Parâmetros
- thisob
- Object
O objeto no qual este método está atuando.The object that this method is acting upon.
- args
- Object[]
Uma matriz que representa os índices de cada dimensão que especifica a posição do elemento a ser obtido.An array that represents the indexes of each dimension that specifies the position of the element to get.
Retornos
O valor na posição especificada em thisob.The value at the specified position in thisob.
- Atributos
Comentários
Se thisob o tiver três ou menos dimensões, args o poderá conter uma lista separada por vírgulas de índices.If thisob has three or fewer dimensions, args can contain a comma-separated list of indexes. Se thisob o tiver quatro ou mais dimensões, args o poderá conter uma matriz de índices.If thisob has four or more dimensions, args can contain an array of indexes.