1
私は表のフィルタ]ボタン
を削除することができていないのです、
私は以下のコードオフィス2013のJavaScript API - テーブルフィルタのボタンを外し
Office.context.document.setSelectedDataAsync(sampleDataForExcel, { tableOptions: { filterButton: false } },
function (asyncResult) {
if (asyncResult.status === Office.AsyncResultStatus.Failed) {
app.showNotification('Could not insert sample data',
'Please choose a different selection range.');
} else {
Office.context.document.bindings.addFromSelectionAsync(
Office.BindingType.Table, { id: "myBinding" },
function (asyncResult) {
if (asyncResult.status === Office.AsyncResultStatus.Failed) {
app.showNotification('Error binding data');
} else {
window.location.href = '../index.html';
}
}
);
}
}
);
これを試してみましたが、私のために働いていません。 – ozil