Excel.Interfaces.WorkbookLoadOptions interface
ブックは、ワークシート、テーブル、範囲などの関連するブック オブジェクトを含む最上位のオブジェクトです。 ブック オブジェクト モデルの詳細については、「 Excel JavaScript API を使用してブックを操作する」を参照してください。
注釈
プロパティ
$all | 読み込みオプションに |
application | このブックを含む Excel アプリケーション インスタンスを表します。 |
bindings | ブックの一部であるバインドのコレクションを表します。 |
name | ブックの名前を取得します。 |
properties | ブックのプロパティを取得します。 |
protection | ブックの保護オブジェクトを返します。 |
read |
ブックが読み取り専用モードで開いている場合は、 |
tables | ブックに関連付けられているテーブルのコレクションを表します。 |
プロパティの詳細
$all
読み込みオプションに $all
を指定すると、すべてのスカラー プロパティ ( Range.address
など) が読み込まれますが、ナビゲーション プロパティ ( Range.format.fill.color
など) は読み込まれません。
$all?: boolean;
プロパティ値
boolean
application
このブックを含む Excel アプリケーション インスタンスを表します。
application?: Excel.Interfaces.ApplicationLoadOptions;
プロパティ値
注釈
bindings
ブックの一部であるバインドのコレクションを表します。
bindings?: Excel.Interfaces.BindingCollectionLoadOptions;
プロパティ値
注釈
name
properties
ブックのプロパティを取得します。
properties?: Excel.Interfaces.DocumentPropertiesLoadOptions;
プロパティ値
注釈
protection
ブックの保護オブジェクトを返します。
protection?: Excel.Interfaces.WorkbookProtectionLoadOptions;
プロパティ値
注釈
readOnly
tables
ブックに関連付けられているテーブルのコレクションを表します。
tables?: Excel.Interfaces.TableCollectionLoadOptions;
プロパティ値
注釈
Office Add-ins