Errors._Default[Object] 属性

定义

允许用户访问错误检查选项。

public:
 property Microsoft::Office::Interop::Excel::Error ^ default[System::Object ^] { Microsoft::Office::Interop::Excel::Error ^ get(System::Object ^ Index); };
public Microsoft.Office.Interop.Excel.Error this[object Index] { get; }
Default Public ReadOnly Property _Default(Index As Object) As Error

参数

Index
Object

属性值

示例

在本例中,单元格 A1 中放置了文本格式的数字。 然后,Microsoft Excel 判断单元格 A1 中的数字是否为文本格式,并通知用户。

<span class="label">Sub CheckForErrors()































































































































































































































































































































































































































































































































    Range("A1").Formula = "'12"































































































































































































































































































































































































































































































































    If Range("A1").</span>
<i>Errors</i>
<span class="label">.Item(xlNumberAsText).Value = True Then        MsgBox "The number is written as text."    Else        MsgBox "The number is not written as text."    End IfEnd Sub</span>

注解

Errors引用 对象以查看与错误检查选项关联的索引值列表。

适用于