Vcl.Edge.EEdgeError.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(const Message: UnicodeString; ErrorCode: HRESULT);

C++

__fastcall EEdgeError(const System::UnicodeString Message, HRESULT ErrorCode);
__fastcall EEdgeError(System::PResStringRec ResStringRec, HRESULT ErrorCode);
/* Exception.CreateFmt */ inline __fastcall EEdgeError(const System::UnicodeString Msg, const System::TVarRec *Args, const int Args_High) : System::Win::Comobj::EOleSysError(Msg, Args, Args_High) { }
/* Exception.CreateResFmt */ inline __fastcall EEdgeError(NativeUInt Ident, const System::TVarRec *Args, const int Args_High)/* overload */ : System::Win::Comobj::EOleSysError(Ident, Args, Args_High) { }
/* Exception.CreateResFmt */ inline __fastcall EEdgeError(System::PResStringRec ResStringRec, const System::TVarRec *Args, const int Args_High)/* overload */ : System::Win::Comobj::EOleSysError(ResStringRec, Args, Args_High) { }
/* Exception.CreateFmtHelp */ inline __fastcall EEdgeError(const System::UnicodeString Msg, const System::TVarRec *Args, const int Args_High, int AHelpContext) : System::Win::Comobj::EOleSysError(Msg, Args, Args_High, AHelpContext) { }
/* Exception.CreateResHelp */ inline __fastcall EEdgeError(NativeUInt Ident, int AHelpContext)/* overload */ : System::Win::Comobj::EOleSysError(Ident, AHelpContext) { }
/* Exception.CreateResFmtHelp */ inline __fastcall EEdgeError(System::PResStringRec ResStringRec, const System::TVarRec *Args, const int Args_High, int AHelpContext)/* overload */ : System::Win::Comobj::EOleSysError(ResStringRec, Args, Args_High, AHelpContext) { }
/* Exception.CreateResFmtHelp */ inline __fastcall EEdgeError(NativeUInt Ident, const System::TVarRec *Args, const int Args_High, int AHelpContext)/* overload */ : System::Win::Comobj::EOleSysError(Ident, Args, Args_High, AHelpContext) { }

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.Edge.pas
Vcl.Edge.hpp
Vcl.Edge EEdgeError

Description

Creates an EOleSysError object.

Vcl.Edge.EEdgeError.Create inherits from System.Win.ComObj.EOleSysError.Create. All content below this line refers to System.Win.ComObj.EOleSysError.Create.

Creates an EOleSysError object.

Create calls SysErrorMessage to turn the OLE error code, ErrorCode, into a message string that it passes to the inherited constructor. EOleSysError initializes the ErrorCode property to the ErrorCode string.

See Also