ErrObject.Description 属性

定义

返回或设置 String 表达式,该表达式包含与某个错误关联的描述性字符串。 读/写。

public:
 property System::String ^ Description { System::String ^ get(); void set(System::String ^ value); };
public string Description { get; set; }
member this.Description : string with get, set
Public Property Description As String

属性值

返回或设置 String 表达式,该表达式包含与某个错误关联的描述性字符串。 读/写。

示例

此示例将用户定义的消息分配给 Description 对象的 属性 Err

On Error Resume Next
Err.Raise(60000)
Err.Description = "Your Widget needs a new Frob!"
MsgBox(Err.Description)

注解

属性 Description 设置包含错误的简短说明。 使用此属性可提醒用户出现你无法或不想处理的错误。 生成用户定义的错误时,请将错误的简短说明分配给 Description 属性。 Description如果未填充属性,并且属性的值Number对应于 Visual Basic 运行时错误,则在生成错误时,ErrorToString将在 属性中Description设置函数返回的字符串。

适用于

另请参阅