Class EditorWindow
Definition
- Namespace:
- Tizen.Uix.InputMethod
- Assembly:
- Tizen.Uix.InputMethod.dll
- API Level:
- 4
The editor window class.
public class EditorWindow : Window, IAccessibleObject
- Inheritance
- Implements
Methods
View SourceCreateHandle(EvasObject)
This API creates a handle for the editor window.
Declaration
protected override IntPtr CreateHandle(EvasObject parent)
Parameters
Type | Name | Description |
---|---|---|
EvasObject | parent | Parent EvasObject. |
Returns
Type | Description |
---|---|
IntPtr | Handle IntPtr. |
Overrides
API Level: 4
View SourceGetHandle()
This API gets a handle for the editor window.
Declaration
public IntPtr GetHandle()
Returns
Type | Description |
---|---|
IntPtr | Handle IntPtr. |
API Level: 4
View SourceSetSize(Int32, Int32, Int32, Int32)
This API updates the input panel window's size information.
Declaration
public static void SetSize(int portraitWidth, int portraitHeight, int landscapeWidth, int landscapeHeight)
Parameters
Type | Name | Description |
---|---|---|
Int32 | portraitWidth | The width in the portrait mode. |
Int32 | portraitHeight | The height in the portrait mode. |
Int32 | landscapeWidth | The width in the landscape mode. |
Int32 | landscapeHeight | The height in the landscape mode. |
Exceptions
Type | Condition |
---|---|
InvalidOperationException | This can occur due to the following reasons: 1) The application does not have the privilege to call this function. 2) The IME main loop has not started yet. |