Vcl.TabNotBk.TTabbedNotebook.Pages

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Pages: TStrings read FAccess write SetPages stored False;

C++

__property System::Classes::TStrings* Pages = {read=FAccess, write=SetPages, stored=false};

Properties

Type Visibility Source Unit Parent
property published
Vcl.TabNotBk.pas
Vcl.TabNotBk.hpp
Vcl.TabNotBk TTabbedNotebook

Description

Contains the strings that identify the individual pages of the tabbed notebook control.

Tabbed notebook controls create a separate page for each string in the Pages property. For example, if Pages contains three strings, First, Second, and Third, the control has three separate pages. Each string in Pages corresponds to a TTabPage object whose Caption property is the same as the string.

You can change the active page in a tabbed notebook control with either the ActivePage or PageIndex property.

See Also