TsgSelectionManager ?
Moderators: SDS, support, admin
TsgSelectionManager ?
The Editor example like the following uses unit fPreview that contains TsgSelectionManager class. I couldn't find the header files for TsgSelectionManager. Where are they? And also it is not documetated. Is there any document on how to use this class?
Thanks
Aby
unit fPreview;
uses
....
type
TfmPreview = class(TForm)
...
private
FSManager: TsgSelectionManager;
public
class TfmPreview : public TForm
{
__published:
....
private:
TsgSelectionManager *FSManager;
....
public:
__fastcall virtual TfmPreview(Classes::TComponent* AOwner);
void __fastcall FillImage(TCadManager* ASManager, Dxfimage::TsgDXFImage* ADXFImage);
public:
};
Thanks
Aby
unit fPreview;
uses
....
type
TfmPreview = class(TForm)
...
private
FSManager: TsgSelectionManager;
public
class TfmPreview : public TForm
{
__published:
....
private:
TsgSelectionManager *FSManager;
....
public:
__fastcall virtual TfmPreview(Classes::TComponent* AOwner);
void __fastcall FillImage(TCadManager* ASManager, Dxfimage::TsgDXFImage* ADXFImage);
public:
};
Hi Aby,
Delphi has no header files by definition. Please do the following to create header file for sgSManager.pas:
<ol type="1"><li>Select "Project > Add to Project..." menu item.</li>
<li>Select sgSManager.pas.</li>
<li>Compile the project.</li></ol id="1">
Sergey.
Please post questions to the forum or write to support@cadsofttools.com
Delphi has no header files by definition. Please do the following to create header file for sgSManager.pas:
<ol type="1"><li>Select "Project > Add to Project..." menu item.</li>
<li>Select sgSManager.pas.</li>
<li>Compile the project.</li></ol id="1">
Sergey.
Please post questions to the forum or write to support@cadsofttools.com