Visio.SelectionChangedEventArgs interface

提供有关引发了 SelectionChanged 事件的形状集合的信息。

注解

[ API 集: 1.1 ]

示例

let eventResult; // Global variable to store the EventHandlerResult returned on attaching handler.

function AttachHandler() {
    Visio.run(session, function(ctx) {
        const doc = ctx.document;
        eventResult = doc.onSelectionChanged.add(
            function (args) {
                console.log("Selected Shape Name: "+args.shapeNames[0]);
            });
        return ctx.sync().then(function(){
            console.log("Handler attached");
        });
    }).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
    });

    function onSelectionChanged(args) {
        console.log(Date.now() + "Selection Changes Event" + JSON.stringify(args));
    }
}

function RemoveHandler() {
    if (!eventResult || !eventResult.context) {
        console.log("Handler has not been attached");
        return;
    }

    Visio.run(eventResult.context, function(ctx) {
        eventResult.remove();
        return ctx.sync().then(function (){
            eventResult = null;
            console.log("Handler removed");
        });
    }).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
    });
}

属性

pageName

获取页面名称,其中包含引发了 SelectionChanged 事件的 ShapeCollection 对象。

shapeNames

获取引发了 SelectionChanged 事件的形状名称数组。

属性详细信息

pageName

获取页面名称,其中包含引发了 SelectionChanged 事件的 ShapeCollection 对象。

pageName: string;

属性值

string

注解

[ API 集: 1.1 ]

shapeNames

获取引发了 SelectionChanged 事件的形状名称数组。

shapeNames: string[];

属性值

string[]

注解

[ API 集: 1.1 ]