Class WindowPosition
Definition
- Namespace:
- Tizen.Applications
- Assembly:
- Tizen.Applications.Common.dll
Represents the window position of the application.
public class WindowPosition
- Inheritance
-
objectWindowPosition
Constructors
View SourceWindowPosition(int, int, int, int)
Initializes the instance of the WindowPosition class.
Declaration
public WindowPosition(int x, int y, int w, int h)
Parameters
Type | Name | Description |
---|---|---|
int | x | The X position. |
int | y | The Y position. |
int | w | The width. |
int | h | The height. |
Properties
View SourceHeight
The height.
Declaration
public int Height { get; set; }
Property Value
Type | Description |
---|---|
int |
PositionX
The X position.
Declaration
public int PositionX { get; set; }
Property Value
Type | Description |
---|---|
int |
PositionY
The Y position.
Declaration
public int PositionY { get; set; }
Property Value
Type | Description |
---|---|
int |
Width
The width.
Declaration
public int Width { get; set; }
Property Value
Type | Description |
---|---|
int |