Ewa.AsyncResult.getSucceeded()
**適用対象:**apps for SharePoint | Excel Services | SharePoint Server 2013
この記事の内容
戻り値
注釈
例
非同期操作が正常に終了するかどうかを指定します。
var value = Ewa.AsyncResult.getSucceeded();
戻り値
型: Boolean
true非同期の呼び出しが成功した場合。
注釈
**[AsyncResult]**オブジェクトは、非同期メソッドの呼び出しで指定されたコールバックに引数として渡されます。非同期操作中にエラーが発生した場合、 **[AsyncResult]オブジェクト エラーに関する情報が含まれます。[AsyncResult.getSucceeded]**メソッドは、非同期の操作が成功したかどうかを示す論理値を返します。
例
次の例では、非同期操作が成功したかどうかを確認する方法を示します。コードの例を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()
{
Ewa.EwaControl.add_applicationReady(getEwa);
}
function getEwa()
{
// Get a reference to the Ewa object.
ewa = Ewa.EwaControl.getInstances().getItem(0);
getRangeAsync();
}
function getRangeAsync()
{
// Get a range asynchronously using A1 notation.
ewa.getActiveWorkbook().getRangeA1Async("Sheet3!B2", getRangeComplete, null);
}
function getRangeComplete(asyncResult)
{
// If getRangeA1Async failed, get error code.
if (!asyncResult.getSucceeded())
{
// Get the error code.
var errorCode = asyncResult.getCode();
switch (errorCode)
{
case AsyncErrorCode.InternalError:
alert("An internal error occurred.");
break;
case AsyncErrorCode.TimedOut:
alert("The operation timed out.");
break;
case AsyncErrorCode.InvalidNamedItem:
alert("The named item is undefined or unpublished.");
break;
case AsyncErrorCode.SettingValuesError:
alert("Excel Calculation Services is unable to set the values.");
break;
case AsyncErrorCode.RangeSizeError:
alert("The array indices exceed the range columns and/or rows. Or the range columns and/or rows exceed the array indices.");
break;
} // End switch.
} // End if.
// Get the range object from the getRangeA1Async call.
var range = asyncResult.getReturnValue();
// Display the range address in A1 format.
window.status = range.getAddressA1();
}
</script>