Поделиться через


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

Получает имя страницы, содержащей объект ShapeCollection, который вызвал событие SelectionChanged.

shapeNames

Получает массив имен фигур, который вызвал событие SelectionChanged.

Сведения о свойстве

pageName

Получает имя страницы, содержащей объект ShapeCollection, который вызвал событие SelectionChanged.

pageName: string;

Значение свойства

string

Комментарии

[ Набор API: 1.1 ]

shapeNames

Получает массив имен фигур, который вызвал событие SelectionChanged.

shapeNames: string[];

Значение свойства

string[]

Комментарии

[ Набор API: 1.1 ]