Visio.Hyperlink class
ハイパーリンクを表します。
- Extends
注釈
[ API セット: 1.1 ]
プロパティ
address | ハイパーリンク オブジェクトのアドレスを取得します。 |
context | オブジェクトに関連付けられている要求コンテキスト。 これにより、アドインのプロセスが Office ホスト アプリケーションのプロセスに接続されます。 |
description | ハイパーリンクの説明を取得します。 |
extra |
ハイパーリンクの URL を解決するために使用される追加の URL 要求情報を取得します。 |
sub |
ハイパーリンク オブジェクトのサブアドレスを取得します。 |
メソッド
load(options) | オブジェクトの指定されたプロパティを読み込むコマンドを待ち行列に入れます。 プロパティを読み取る前に、 |
load(property |
オブジェクトの指定されたプロパティを読み込むコマンドを待ち行列に入れます。 プロパティを読み取る前に、 |
load(property |
オブジェクトの指定されたプロパティを読み込むコマンドを待ち行列に入れます。 プロパティを読み取る前に、 |
toJSON() | API オブジェクトが |
プロパティの詳細
address
context
オブジェクトに関連付けられている要求コンテキスト。 これにより、アドインのプロセスが Office ホスト アプリケーションのプロセスに接続されます。
context: RequestContext;
プロパティ値
description
extraInfo
ハイパーリンクの URL を解決するために使用される追加の URL 要求情報を取得します。
readonly extraInfo: string;
プロパティ値
string
注釈
[ API セット: 1.1 ]
subAddress
メソッドの詳細
load(options)
オブジェクトの指定されたプロパティを読み込むコマンドを待ち行列に入れます。 プロパティを読み取る前に、context.sync()
を呼び出す必要があります。
load(options?: Visio.Interfaces.HyperlinkLoadOptions): Visio.Hyperlink;
パラメーター
読み込むオブジェクトのプロパティのオプションを提供します。
戻り値
例
Visio.run(session, function (ctx) {
const activePage = ctx.document.getActivePage();
const shape = activePage.shapes.getItem(0);
const hyperlink = shape.hyperlinks.getItem(0);
hyperlink.load();
return ctx.sync().then(function() {
console.log(hyperlink.description);
console.log(hyperlink.address);
console.log(hyperlink.subAddress);
console.log(hyperlink.extraInfo);
});
}).catch(function(error) {
console.log("Error: " + error);
if (error instanceof OfficeExtension.Error) {
console.log("Debug info: " + JSON.stringify(error.debugInfo));
}
});
load(propertyNames)
オブジェクトの指定されたプロパティを読み込むコマンドを待ち行列に入れます。 プロパティを読み取る前に、context.sync()
を呼び出す必要があります。
load(propertyNames?: string | string[]): Visio.Hyperlink;
パラメーター
- propertyNames
-
string | string[]
読み込むプロパティを指定するコンマ区切り文字列または文字列の配列。
戻り値
load(propertyNamesAndPaths)
オブジェクトの指定されたプロパティを読み込むコマンドを待ち行列に入れます。 プロパティを読み取る前に、context.sync()
を呼び出す必要があります。
load(propertyNamesAndPaths?: {
select?: string;
expand?: string;
}): Visio.Hyperlink;
パラメーター
- propertyNamesAndPaths
-
{ select?: string; expand?: string; }
propertyNamesAndPaths.select
は読み込むプロパティを指定するコンマ区切りの文字列で、 propertyNamesAndPaths.expand
は読み込むナビゲーション プロパティを指定するコンマ区切りの文字列です。
戻り値
toJSON()
API オブジェクトがJSON.stringify()
に渡されたときにより便利な出力を提供するために、JavaScript toJSON()
メソッドをオーバーライドします。 (JSON.stringify
、それに渡されるオブジェクトの toJSON
メソッドを呼び出します)。元の Visio.Hyperlink オブジェクトは API オブジェクトですが、 toJSON
メソッドは、元のオブジェクトから読み込まれた子プロパティの浅いコピーを含むプレーンな JavaScript オブジェクト ( Visio.Interfaces.HyperlinkData
として型指定) を返します。
toJSON(): Visio.Interfaces.HyperlinkData;
戻り値
Office Add-ins