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