Gets or sets the height of current window.
Syntax
| C# | |
|---|
int ScreenSizeHeight {get; set;} |
Property Value
Type: System.Int32
The height of current window.
Example
The following example uses property
ScreenSizeHeight of profile.
| C# | Copy Code |
|---|
// get screen height
int height = project.Profile.ScreenSizeHeight;
// set screen height
project.Profile.ScreenSizeHeight = 600; |
| PHP | Copy Code |
|---|
// get screen height
$height = $project->Profile->ScreenSizeHeight;
// set screen height
$project->Profile->ScreenSizeHeight = 600; |
Requirements
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven
See Also