Interface IWindowProvider

Definition

Namespace:
Tizen.Common
Assembly:
Tizen.dll

The IWindowProvider interface provides the window handle and information about the window's position, size, etc.

C#
Copy
public interface IWindowProvider

Properties

View Source

Height

Gets the height of the window.

Declaration
C#
Copy
float Height { get; }
Property Value
Type Description
float
View Source

Rotation

Gets the rotation of the window in degrees. The value can only be 0, 90, 180, or 270.

Declaration
C#
Copy
int Rotation { get; }
Property Value
Type Description
int
View Source

Width

Gets the width of the window.

Declaration
C#
Copy
float Width { get; }
Property Value
Type Description
float
View Source

WindowHandle

Gets the window handle

Declaration
C#
Copy
IntPtr WindowHandle { get; }
Property Value
Type Description
System.IntPtr
Remarks

This handle represents Ecore_Wl2_Window on native.

View Source

X

Gets the x-coordinate of the window's position.

Declaration
C#
Copy
float X { get; }
Property Value
Type Description
float
View Source

Y

Gets the y-coordinate of the window's position.

Declaration
C#
Copy
float Y { get; }
Property Value
Type Description
float