Vcl.ExtCtrls.TNotebook.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.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TNotebook

Description

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

The Pages property contains the strings that identify the individual pages of the notebook control. Both these 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.

You can access the various pages in a notebook or tabbed notebook control with either the ActivePage or PageIndex property.

See Also