Vcl.Forms.TCustomForm.TileMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property TileMode: TTileMode read FTileMode write FTileMode default tbHorizontal;

C++

__property TTileMode TileMode = {read=FTileMode, write=FTileMode, default=0};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TCustomForm

Description

Represents how MDI child forms are arranged when the Tile method is called.

TileMode can have one of the following TTileMode values:



Value Meaning

tbHorizontal

Each form stretches across the width of the parent form

tbVertical

Each form stretches along the height of the parent form



TileMode is meaningful only if the form is an MDI child (that is, if the form's FormStyle property is set to fsMDIChild).

See Also

Code Examples