Ewa.EwaControl.getActiveWorkbook()
**適用対象:**apps for SharePoint | Excel Services | SharePoint Server 2013
この記事の内容
戻り値
注釈
例
対象
指定したEwaControlオブジェクトに関連付けられているブックを取得します。
var value = Ewa.EwaControl.getActiveWorkbook();
戻り値
注釈
各EwaControlは、1 つだけのブックに関連付けられます。EwaControl.getActiveWorkbookメソッドは、指定したEwaControlオブジェクトに関連付けられているブックを返します。
例
次の例では、 applicationReadyイベントが発生し、警告メッセージで、ブックのパスを表示するときに、 EwaControl.getActiveWorkbookメソッドを使用して、ブックのパスを取得する方法を示します。コードの例をExcel Web Access Web パーツでSharePoint Server 2013で作業していることを前提としています。
<script type="text/javascript">
var ewa = null;
// Add event handler for onload event.
if (window.attachEvent)
{
window.attachEvent("onload", ewaOnPageLoad);
}
else
{
window.addEventListener("DOMContentLoaded", ewaOnPageLoad, false);
}
// Add event handler for applicationReady event.
function ewaOnPageLoad()
{
if (typeof (Ewa) != "undefined")
{
Ewa.EwaControl.add_applicationReady(ewaApplicationReady);
}
else
{
alert("Error - the EWA JS is not loaded.");
}
}
function ewaApplicationReady()
{
// Get a reference to the EWA.
ewa = Ewa.EwaControl.getInstances().getItem(0);
// Display the Workbook path.
alert(ewa.getActiveWorkbook().getWorkbookPath());
}
</script>