Error.ShortErrorMessage-Eigenschaft
Dient dem Abrufen oder Festlegen der kurzen Fehlermeldung eines ErrorObject-Objekts.
Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in microsoft.office.interop.infopath.dll)
Syntax
'Declaration
<DispIdAttribute(3)> _
Property ShortErrorMessage As String
'Usage
Dim instance As Error
Dim value As String
value = instance.ShortErrorMessage
instance.ShortErrorMessage = value
[DispIdAttribute(3)]
string ShortErrorMessage { get; set; }
Hinweise
Bei der kurzen Fehlermeldung handelt es sich um die QuickInfo, die den Benutzern angezeigt wird, wenn die Datenüberprüfung in einem Formular einen Fehler zurückgibt.
Beispiel
ErrorObject er = thisXDocument.Errors[0];
IXMLDOMNode myNode = er.Node;
thisXDocument.UI.Alert("this is the short: " + er.ShortErrorMessage);
Siehe auch
Referenz
Error-Schnittstelle
Error-Member
Microsoft.Office.Interop.InfoPath-Namespace