Interface IWindowProvider
Definition
- Assembly:
- Tizen.dll
The IWindowProvider interface provides the window handle and information about the window's position, size, etc.
public interface IWindowProvider
Properties
View SourceHeight
Gets the height of the window.
Declaration
float Height { get; }
Property Value
| Type | Description |
|---|---|
| float |
Rotation
Gets the rotation of the window in degrees. The value can only be 0, 90, 180, or 270.
Declaration
int Rotation { get; }
Property Value
| Type | Description |
|---|---|
| int |
Width
Gets the width of the window.
Declaration
float Width { get; }
Property Value
| Type | Description |
|---|---|
| float |
WindowHandle
Gets the window handle
Declaration
IntPtr WindowHandle { get; }
Property Value
| Type | Description |
|---|---|
| System.IntPtr |
Remarks
This handle represents Ecore_Wl2_Window on native.
X
Gets the x-coordinate of the window's position.
Declaration
float X { get; }
Property Value
| Type | Description |
|---|---|
| float |
Y
Gets the y-coordinate of the window's position.
Declaration
float Y { get; }
Property Value
| Type | Description |
|---|---|
| float |