Office.DocumentSelectionChangedEventArgs interface
Proporciona información sobre el documento que ha generado el evento SelectionChanged.
Comentarios
Ejemplos
// The following example adds an event handler for the SelectionChanged event of a document.
function addSelectionChangedEventHandler() {
Office.context.document.addHandlerAsync(Office.EventType.DocumentSelectionChanged, MyHandler);
}
// The SelectionChanged event handler.
function MyHandler(eventArgs: Office.DocumentSelectionChangedEventArgs) {
write('Event raised: ' + eventArgs.type);
doSomethingWithDocument(eventArgs.document);
}
// Function that writes to a div with id='message' on the page.
function write(message){
document.getElementById('message').innerText += message;
}
Propiedades
document | Obtiene un objeto Office.Document que representa el documento que generó el evento SelectionChanged. |
type | Obtenga un valor de enumeración Office.EventType que identifique el tipo de evento que se generó. |
Detalles de las propiedades
document
Obtiene un objeto Office.Document que representa el documento que generó el evento SelectionChanged.
document: Document;
Valor de propiedad
type
Obtenga un valor de enumeración Office.EventType que identifique el tipo de evento que se generó.
type: EventType;
Valor de propiedad
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.