'宣言 Overloads Function Add( _ ByVal row As System.Integer, _ ByVal column As System.Integer, _ ByVal row2 As System.Integer, _ ByVal column2 As System.Integer, _ Optional ByVal tableHasHeaders As YesNoGuess, _ Optional ByVal tableStyle As System.String, _ Optional ByVal name As System.String _ ) As ITable
ITable Add( System.int row, System.int column, System.int row2, System.int column2, YesNoGuess tableHasHeaders, System.string tableStyle, System.string name )
パラメータ
- row
- 一番上の行のインデックスを示す整数値。
- column
- 左端の列のインデックスを示す整数値。
- row2
- 一番下の行のインデックスを示す整数値。
- column2
- 右端の列のインデックスを示す整数値。
- tableHasHeaders
- データが列ラベルを持つかどうかを示すYesNoGuess定数。ソース範囲に見出しが含まれていない場合は、見出しが自動的に生成されます。デフォルト値はYesNoGuess.Guessです。.
- tableStyle
- テーブルスタイルを示す文字列値。デフォルト値はTableStyleMedium2です。
- name
- テーブル名を示す文字列値。これを省略すると、テーブル名は自動的に生成されます。
戻り値の型
作成されたテーブルを表すTable値。テーブルを作成できない場合は
null
。