Visio.ShapeMouseLeaveEventArgs interface
ShapeMouseLeave イベントを発生させた図形に関する情報を提供します。
注釈
[ API セット: 1.1 ]
例
Visio.run(session, function (ctx) {
const document1= ctx.document;
eventResult2 = document1.onShapeMouseLeave.add(
function (args){
console.log(Date.now()+":OnShapeMouseLeave Event"+JSON.stringify(args));
});
return ctx.sync().then(function () {
console.log("Success");
});
}).catch(function(error) {
console.log("Error: " + error);
if (error instanceof OfficeExtension.Error) {
console.log("Debug info: " + JSON.stringify(error.debugInfo));
}
});
プロパティ
page |
ShapeMouseLeave イベントを発生させた shape オブジェクトを持つページの名前を取得します。 |
shape |
ShapeMouseLeave イベントを発生させた図形オブジェクトの名前を取得します。 |
プロパティの詳細
pageName
ShapeMouseLeave イベントを発生させた shape オブジェクトを持つページの名前を取得します。
pageName: string;
プロパティ値
string
注釈
[ API セット: 1.1 ]
shapeName
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins