Sdílet prostřednictvím


Error.ErrorCode-Eigenschaft

Dient dem Abrufen oder Festlegen des detaillierten Fehlercodes eines ErrorObject-Objekts.

Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in microsoft.office.interop.infopath.dll)

Syntax

'Declaration
<DispIdAttribute(5)> _
Property ErrorCode As Integer
'Usage
Dim instance As Error
Dim value As Integer

value = instance.ErrorCode

instance.ErrorCode = value
[DispIdAttribute(5)] 
int ErrorCode { get; set; }

Beispiel

Im folgenden Beispiel wird die ErrorCode-Eigenschaft des Error-Objekts verwendet, um die Fehlercodenummer eines Fehlers in einem Meldungsfeld anzuzeigen:

ErrorObject er = thisXDocument.Errors[0];
IXMLDOMNode myNode = er.Node;
thisXDocument.UI.Alert("this is the error code: " + er.ErrorCode);

Siehe auch

Referenz

Error-Schnittstelle
Error-Member
Microsoft.Office.Interop.InfoPath-Namespace