ShapeMouseEnterEventArgs Object (JavaScript API for Visio)
Applies to: Visio Online
Provides information about the shape that raised the ShapeMouseEnter event.
Properties
| Property | Type | Description |
|---|---|---|
| shapeName | string | Gets the name of the shape object that raised the ShapeMouseEnter event. |
| pageName | string | Gets the name of the page which has the shape object that raised the ShapeMouseEnter event. |
See property access examples.
Relationships
None
Methods
None
Property access examples
Visio.run(function (ctx) {
var document1= ctx.document;
var page = document1.getActivePage();
eventResult2 = document1.onShapeMouseEnter.add(
function (args){
console.log(Date.now()+":OnShapeMouseEnter 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));
}
});