Vcl.OleAuto.EOleException.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(const ExcepInfo: TExcepInfo);

C++

__fastcall EOleException(const tagEXCEPINFO &ExcepInfo);
/* Exception.CreateFmt */ inline __fastcall EOleException(const System::UnicodeString Msg, System::TVarRec const *Args, const int Args_High) : EOleError(Msg, Args, Args_High) { }
/* Exception.CreateRes */ inline __fastcall EOleException(NativeUInt Ident, const double* Dummy)/* overload */ : EOleError(Ident) { }
/* Exception.CreateRes */ inline __fastcall EOleException(System::PResStringRec ResStringRec)/* overload */ : EOleError(ResStringRec) { }
/* Exception.CreateResFmt */ inline __fastcall EOleException(NativeUInt Ident, System::TVarRec const *Args, const int Args_High)/* overload */ : EOleError(Ident, Args, Args_High) { }
/* Exception.CreateResFmt */ inline __fastcall EOleException(System::PResStringRec ResStringRec, System::TVarRec const *Args, const int Args_High)/* overload */ : EOleError(ResStringRec, Args, Args_High) { }
/* Exception.CreateHelp */ inline __fastcall EOleException(const System::UnicodeString Msg, int AHelpContext) : EOleError(Msg, AHelpContext) { }
/* Exception.CreateFmtHelp */ inline __fastcall EOleException(const System::UnicodeString Msg, System::TVarRec const *Args, const int Args_High, int AHelpContext) : EOleError(Msg, Args, Args_High, AHelpContext) { }
/* Exception.CreateResHelp */ inline __fastcall EOleException(NativeUInt Ident, int AHelpContext)/* overload */ : EOleError(Ident, AHelpContext) { }
/* Exception.CreateResHelp */ inline __fastcall EOleException(System::PResStringRec ResStringRec, int AHelpContext)/* overload */ : EOleError(ResStringRec, AHelpContext) { }
/* Exception.CreateResFmtHelp */ inline __fastcall EOleException(System::PResStringRec ResStringRec, System::TVarRec const *Args, const int Args_High, int AHelpContext)/* overload */ : EOleError(ResStringRec, Args, Args_High, AHelpContext) { }
/* Exception.CreateResFmtHelp */ inline __fastcall EOleException(NativeUInt Ident, System::TVarRec const *Args, const int Args_High, int AHelpContext)/* overload */ : EOleError(Ident, Args, Args_High, AHelpContext) { }

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.OleAuto.pas
Vcl.OleAuto.hpp
Vcl.OleAuto EOleException

Description

Creates an instance of an OLE exception.

Call Create to construct an OLE exception object using information passed in the OLE ExcepInfo structure.

See Also