XmlMappedRange.Errors 屬性
取得讓您可以存取 XmlMappedRange 控制項錯誤檢查選項的 Errors 物件。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
ReadOnly Property Errors As Errors
Errors Errors { get; }
屬性值
型別:Microsoft.Office.Interop.Excel.Errors
Errors 物件讓您可以存取 XmlMappedRange 控制項的錯誤檢查選項。
備註
參考 Errors 物件來檢視與錯誤檢查選項相關的索引值清單。
範例
下列程式碼範例將寫成文字的數字插入 XmlMappedRange,再使用 Errors 屬性判斷數字是否寫成文字。這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange。
Private Sub CheckForErrors()
Me.CustomerLastNameCell.Formula = "'12"
If Me.CustomerLastNameCell.Errors( _
Excel.XlErrorChecks.xlNumberAsText).Value Then
MsgBox("The number is written as text.")
Else
MsgBox("The number is not written as text.")
End If
End Sub
private void CheckForErrors()
{
this.CustomerLastNameCell.Formula = "'12";
if (this.CustomerLastNameCell.Errors[
Excel.XlErrorChecks.xlNumberAsText].Value)
{
MessageBox.Show("The number is written as text.");
}
else
{
MessageBox.Show("The number is not written as text.");
}
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。