次の方法で共有


Office.DocumentSelectionChangedEventArgs interface

SelectionChanged イベントが発生したドキュメントに関する情報を提供します。

注釈

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

プロパティ

document

SelectionChanged イベントを発生させたドキュメントを表す Office.Document オブジェクトを取得します。

type

発生したイベントの種類を識別する Office.EventType 列挙値を取得します。

プロパティの詳細

document

SelectionChanged イベントを発生させたドキュメントを表す Office.Document オブジェクトを取得します。

document: Document;

プロパティ値

type

発生したイベントの種類を識別する Office.EventType 列挙値を取得します。

type: EventType;

プロパティ値