Visio.SelectionChangedEventArgs interface
Fornece informações sobre o conjunto de forma que o disparou o evento SelectionChanged.
Comentários
Exemplos
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));
}
});
}
Propriedades
page |
Obtém o nome da página que tem o objeto ShapeCollection que disparou o evento SelectionChanged. |
shape |
Obtém a matriz de nomes de forma que disparou o evento SelectionChanged. |
Detalhes da propriedade
pageName
Obtém o nome da página que tem o objeto ShapeCollection que disparou o evento SelectionChanged.
pageName: string;
Valor da propriedade
string
Comentários
shapeNames
Obtém a matriz de nomes de forma que disparou o evento SelectionChanged.
shapeNames: string[];
Valor da propriedade
string[]
Comentários
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.