TsgSelectionManager ?

Discuss and ask questions about CAD VCL (Delphi and C++ Builder).

Moderators: SDS, support, admin

Post Reply
aby
Posts: 81
Joined: 21 May 2007, 13:02
Location: Turkey

TsgSelectionManager ?

Post by aby » 14 Jan 2008, 19:50

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:

};

support
Posts: 3272
Joined: 30 Mar 2005, 11:36
Contact:

Post by support » 15 Jan 2008, 13:09

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

Post Reply