Class WindowPosition

Definition

Namespace:
Tizen.Applications
Assembly:
Tizen.Applications.Common.dll

Represents the window position of the application.

C#
Copy
public class WindowPosition
Inheritance
object
WindowPosition

Constructors

View Source

WindowPosition(int, int, int, int)

Initializes the instance of the WindowPosition class.

Declaration
C#
Copy
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 Source

Height

The height.

Declaration
C#
Copy
public int Height { get; set; }
Property Value
Type Description
int
View Source

PositionX

The X position.

Declaration
C#
Copy
public int PositionX { get; set; }
Property Value
Type Description
int
View Source

PositionY

The Y position.

Declaration
C#
Copy
public int PositionY { get; set; }
Property Value
Type Description
int
View Source

Width

The width.

Declaration
C#
Copy
public int Width { get; set; }
Property Value
Type Description
int