[Overview][Constants][Types][Classes][Procedures and functions][Index] Reference for unit 'ComCtrls' (#lcl)

TTabSheet

[Properties (by Name)] [Methods (by Name)] [Events (by Name)]

TTabSheet - individual page of a TPageControl; a more elaborate version of TPage

Declaration

Source position: comctrls.pp line 490

type TTabSheet = class(TCustomPage)

protected

  class procedure WSRegisterClass; override;

  

Registers this component class with the current WidgetSet.

public

  constructor Create(); override;

  

calls inherited Create and zeroes ImageIndex

  destructor Destroy; override;

  

Destroy - destructor for TTabSheet: detaches from the Host Dock Site and calls inherited Destroy

  property PageControl: TPageControl; [rw]

  

The PageControl of which this TabSheet is a member

  property TabIndex: Integer; [r]

  

TabIndex - the Index value or sequence number of this TabSheet

published

  property BorderWidth;

  property BiDiMode;

  property Caption;

  

The text describing the control to the user.

  property ChildSizing;

  

Parameters for child control arrangement and spacing.

  property ClientHeight;

  

The height of the client area of the control.

  property ClientWidth;

  

The width of the client area of the control.

  property Enabled;

  

Determines whether the control reacts on mouse or keyboard input.

  property Font;

  property Height; [s]

  

The vertical size of the control.

  property ImageIndex;

  

  property Left; [s]

  

The client coordinate of the left edge of the control.

  property OnContextPopup;

  

Invoked when a context-sensitive pop-up menu is requested.

  property OnDragDrop;

  

This handler determines the action on an drop onto this control, in a drag-drop operation.

  property OnDragOver;

  

Event handler for a control being dragged over this control.

  property OnEndDrag;

  

Notification handler for the end of a dragging operation.

  property OnEnter;

  

Handler for control receiving the focus.

  property OnExit;

  

Handler for control loosing the focus. This is a good place for checking the finished user input.

  property OnHide;

  

  property OnMouseDown;

  

Event handler for mouse button going down.

  property OnMouseEnter;

  property OnMouseLeave;

  property OnMouseMove;

  

Event handler for mouse movement within the control.

  property OnMouseUp;

  

Event handler for mouse button going up.

  property OnResize;

  

Notification handler for a resize of the control.

  property OnShow;

  

  property OnStartDrag;

  

Event handler for the start of a dragging operation.

  property PageIndex; [s]

  

  property ParentBiDiMode;

  property ParentFont;

  

If true, the Font of the control will be the same as the one from the Parent. Default is true.

  property ParentShowHint;

  

If true, the value of ShowHint for the control will be the same as the one from the Parent. Default is true.

  property PopupMenu;

  

A context-sensitive menu that pops up when the right mouse button is clicked over this control

  property ShowHint;

  

Enables the Hint display.

  property TabVisible;

  

  property Top; [s]

  

The client coordinate of the top edge of the control.

  property Width; [s]

  

The horizontal extent of the control.

end;

Inheritance

TTabSheet

  

TTabSheet - individual page of a TPageControl; a more elaborate version of TPage

|

TCustomPage

  

TCustomPage: The base type for Page

|

TWinControl

  

The base class for controls which can contain other (child) controls.

|

TControl

  

The base class for visible controls.

|

TLCLComponent

  

The base class for LCL components associated with widgets.

|

TComponent

?

TObject

Description

TTabSheet - individual page of a TPageControl; a more elaborate version of TPage

Contains the following features lacked by TPage:

See also

Multi-PageControls

  

Multi-PageControls - controls that offer a selection of alternative pages for display

HowToUseStdCtrls

  

How to use StdCtrls, ComCtrls or ExtCtrls