WidgetControlObject Property |
Gets the instance of the platform-specific object
Namespace:
Eto
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public Object ControlObject { get; }
Public ReadOnly Property ControlObject As Object
Get
member ControlObject : Object with get
Property Value
Type:
ObjectRemarks
This can sometimes be useful to get the platform-specific object.
Some handlers may not have any backing object for its functionality, so this may be null.
It is more preferred to use the
Handler and cast that to the platform-specific
handler class which can give you additional methods and helpers to do common tasks.
For example, the
Application object's handler for OS X has a AddFullScreenMenuItem
property to specify if you want full screen support in your app.
See Also