Azad
Azad

Reputation: 5272

Maximizing fast report at run time in firemonkey application

How to maximize the fast report at run time in firemonkey application?

Upvotes: 0

Views: 541

Answers (1)

LU RD
LU RD

Reputation: 34939

Try WindowState := wsMaximized;.

Represents how the form appears on the screen. Set WindowState to minimize, maximize, or restore the form window. Read WindowState to determine whether the form is minimized, maximized, or in a normal state. Possible values for the WindowState property are:

  • wsMaximized
  • wsMinimized
  • wsNormal

See also Minimize form in Firemonkey application.

Upvotes: 0

Related Questions