System.Variants.VarArrayGet

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

function VarArrayGet(const A: Variant; const Indices: array of Integer): Variant;

C++

extern DELPHI_PACKAGE System::Variant __fastcall VarArrayGet(const System::Variant &A, const int *Indices, const int Indices_High);

プロパティ

種類 可視性 ソース ユニット
function public
System.Variants.pas
System.Variants.hpp
System.Variants System.Variants

説明

多次元 Variant 配列内の 1 つの値を表す Variant を返します。

VarArrayGet を使用すると、多次元 Variant 配列から 1 つのセルの値を取得することができます。

A は、目的の値を含む Variant 配列です。

Indices は、インデックス値の配列です。配列の次元ごとに 1 つの値を含みます。

メモ:  Indices_Size は、Indices 内の最後の値のインデックスです(配列の次元数より 1 つ少ない値になります)。

Indices で指定した値が範囲外である場合、VarArrayGetEVariantBadIndexError を発生させます。

関連項目