1
these instructionsに基づいてYeoman Office generatorを使用して、オフィスアドインを作成しています。Wordアドインフルテキストを取得するには?
デフォルトのアドインには、ワードドキュメントで選択されたテキストを取得する機能があります。私は関数を変更して、代わりにドキュメントのフルテキストを取得しようとしています。次のように
My機能コードは次のとおりです。
function getDataFromDoc(){
Office.context.document.getFileAsync(Office.CoercionType.Text,
function(result){
jQuery('#get-data-from-selection').click(getDataFromSelection);
if (result.status === Office.AsyncResultStatus.Succeeded) {
console.dir(result);
app.showNotification('The selected text is:', '"' + result.value + '"');
} else {
app.showNotification('Error:', result.error.message);
}
}
);
}
オブジェクトが返されますが、私はconsole.dir(result)
を使用してオブジェクトを介して見たとき、私はどこでも、ドキュメントのテキストが表示されません。
この機能を変更して、単語文書の全内容を取り戻すにはどうすればよいですか?あなたは、このためのWord固有のAPIを使用した場合
のタグ 'hackproductivity'は何ですか? – j08691
@ j08691削除しました。ここでの議論はhttp://meta.stackoverflow.com/questions/339308/i-was-told-by-someone-associated-with-microsoft-to-create-a-tag –