source: branches/pre_reorg/Components/Tabset2Unit.PAS

Last change on this file was 15, checked in by RBRi, 19 years ago

+ components stuff

  • Property svn:eol-style set to native
File size: 655 bytes
Line 
1Unit Tabset2Unit;
2
3Interface
4
5Uses
6 Classes, Forms, TabCtrls;
7
8{Declare new class}
9Type
10 TTabSet2=Class(TTabSet)
11 Protected
12 Procedure SetupComponent; Override;
13 Public
14 Destructor Destroy; Override;
15 published
16 Property TabOrder; // that's the whole point!
17 End;
18
19{Define components to export}
20{You may define a page of the component palette and a component bitmap file}
21Exports
22 TTabSet2,'User','Tabset2.bmp';
23
24Implementation
25
26Procedure TTabSet2.SetupComponent;
27Begin
28 Inherited SetupComponent;
29End;
30
31Destructor TTabSet2.Destroy;
32Begin
33 Inherited Destroy;
34End;
35
36Initialization
37 {Register classes}
38 RegisterClasses([TTabSet2]);
39End.
40
Note: See TracBrowser for help on using the repository browser.