Compartilhar via


Office.DocumentSelectionChangedEventArgs interface

Fornece informações sobre o documento que gerou o evento SelectionChanged.

Comentários

Exemplos

// 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; 
}

Propriedades

document

Obtém um objeto Office.Document que representa o documento que levantou o evento SelectionChanged.

type

Obtenha um valor de enumeração Office.EventType que identifique o tipo de evento que foi gerado.

Detalhes da propriedade

document

Obtém um objeto Office.Document que representa o documento que levantou o evento SelectionChanged.

document: Document;

Valor da propriedade

type

Obtenha um valor de enumeração Office.EventType que identifique o tipo de evento que foi gerado.

type: EventType;

Valor da propriedade