Class WindowPosition

Definition

Namespace:
Tizen.Applications
Assembly:
Tizen.Applications.Common.dll
API Level:
11

Represents the window position of the application.

C#
Copy
public class WindowPosition : object
Inheritance
WindowPosition

Constructors

View Source

WindowPosition(Int32, Int32, Int32, Int32)

Initializes the instance of the WindowPosition class.

Declaration
C#
Copy
public WindowPosition(int x, int y, int w, int h)
Parameters
Type Name Description
Int32 x

The X position.

Int32 y

The Y position.

Int32 w

The width.

Int32 h

The height.

API Level: 11

Properties

View Source

Height

The height.

Declaration
C#
Copy
public int Height { get; set; }
Property Value
Type Description
Int32
API Level: 11
View Source

PositionX

The X position.

Declaration
C#
Copy
public int PositionX { get; set; }
Property Value
Type Description
Int32
API Level: 11
View Source

PositionY

The Y position.

Declaration
C#
Copy
public int PositionY { get; set; }
Property Value
Type Description
Int32
API Level: 11
View Source

Width

The width.

Declaration
C#
Copy
public int Width { get; set; }
Property Value
Type Description
Int32
API Level: 11

Extension Methods