Sets visibility on/off of cursor
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-adaptor/+/297714/
https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-csharp-binder/+/297715/
[global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_Window_PointerWarp")]
[return: global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.U1)]
public static extern bool PointerWarp(global::System.Runtime.InteropServices.HandleRef window, int x, int y);
+
+ [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_Window_CursorVisibleSet")]
+ public static extern void CursorVisibleSet(global::System.Runtime.InteropServices.HandleRef window, bool visible);
}
}
}
return ret;
}
+ /// <summary>
+ /// Sets visibility on/off of cursor
+ /// </summary>
+ /// <param name="visible">The visibility of cursor.</param>
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public void CursorVisibleSet(bool visible)
+ {
+ Interop.Window.CursorVisibleSet(SwigCPtr, visible);
+ if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
+ }
+
+
/// <summary>
/// Maximizes window's size.
/// If this function is called with true, window will be resized with screen size.