📄 sgbar_tlb.pas
字号:
unit SgBar_TLB;
// ************************************************************************ //
// WARNING
// -------
// The types declared in this file were generated from data read from a
// Type Library. If this type library is explicitly or indirectly (via
// another type library referring to this type library) re-imported, or the
// 'Refresh' command of the Type Library Editor activated while editing the
// Type Library, the contents of this file will be regenerated and all
// manual modifications will be lost.
// ************************************************************************ //
// PASTLWTR : 1.2
// File generated on 2006-4-19 9:55:55 from Type Library described below.
// ************************************************************************ //
// Type Lib: C:\iebar\SgBar\SoftYesBar.tlb (1)
// LIBID: {6AB9121B-78BD-4124-9B32-40F32B7F5AD5}
// LCID: 0
// Helpfile:
// HelpString: SgBar Library
// DepndLst:
// (1) v2.0 stdole, (C:\WINDOWS\system32\stdole2.tlb)
// ************************************************************************ //
{$TYPEDADDRESS OFF} // Unit must be compiled without type-checked pointers.
{$WARN SYMBOL_PLATFORM OFF}
{$WRITEABLECONST ON}
{$VARPROPSETTER ON}
interface
uses Windows, ActiveX, Classes, Graphics, StdVCL, Variants;
// *********************************************************************//
// GUIDS declared in the TypeLibrary. Following prefixes are used:
// Type Libraries : LIBID_xxxx
// CoClasses : CLASS_xxxx
// DISPInterfaces : DIID_xxxx
// Non-DISP interfaces: IID_xxxx
// *********************************************************************//
const
// TypeLibrary Major and minor versions
SgBarMajorVersion = 1;
SgBarMinorVersion = 0;
LIBID_SgBar: TGUID = '{6AB9121B-78BD-4124-9B32-40F32B7F5AD5}';
IID_IIE_SgBar: TGUID = '{159D626B-8327-419E-9894-7CE0C9A6A401}';
CLASS_IE_SgBar: TGUID = '{B3958764-1E70-4E3B-B3EC-B221E7750FD1}';
type
// *********************************************************************//
// Forward declaration of types defined in TypeLibrary
// *********************************************************************//
IIE_SgBar = interface;
// *********************************************************************//
// Declaration of CoClasses defined in Type Library
// (NOTE: Here we map each CoClass to its Default Interface)
// *********************************************************************//
IE_SgBar = IIE_SgBar;
// *********************************************************************//
// Interface: IIE_SgBar
// Flags: (256) OleAutomation
// GUID: {159D626B-8327-419E-9894-7CE0C9A6A401}
// *********************************************************************//
IIE_SgBar = interface(IUnknown)
['{159D626B-8327-419E-9894-7CE0C9A6A401}']
end;
// *********************************************************************//
// The Class CoIE_SgBar provides a Create and CreateRemote method to
// create instances of the default interface IIE_SgBar exposed by
// the CoClass IE_SgBar. The functions are intended to be used by
// clients wishing to automate the CoClass objects exposed by the
// server of this typelibrary.
// *********************************************************************//
CoIE_SgBar = class
class function Create: IIE_SgBar;
class function CreateRemote(const MachineName: string): IIE_SgBar;
end;
implementation
uses ComObj;
class function CoIE_SgBar.Create: IIE_SgBar;
begin
Result := CreateComObject(CLASS_IE_SgBar) as IIE_SgBar;
end;
class function CoIE_SgBar.CreateRemote(const MachineName: string): IIE_SgBar;
begin
Result := CreateRemoteComObject(MachineName, CLASS_IE_SgBar) as IIE_SgBar;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -