PlatformFeatures Enumeration |
Flags to specify which global features are supported for a platform
Namespace:
Eto
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax [FlagsAttribute]
public enum PlatformFeatures
<FlagsAttribute>
Public Enumeration PlatformFeatures
[<FlagsAttribute>]
type PlatformFeatures
Members
| Member name | Value | Description |
---|
| None | 0 |
No extra features supported.
|
| CustomCellSupportsControlView | 1 |
Specifies that the CustomCell supports creating a Control for each cell.
If not specified, then the CustomCell will paint its content when not in edit mode.
|
| DrawableWithTransparentContent | 2 |
Specifies that the Drawable supports automatic transparent background for its Content.
If not specified, then setting the content may not work as intended
(most often not rendering with transparent background, thus overpainting the drawable).
|
| TabIndexWithCustomContainers | 4 |
Specifies the TabIndex is based on the logical tree, not the visual tree.
Both GTK and WinForms do not support creating a custom tab focus and is based on the direct containers.
For example, setting a TabIndex for controls in DynamicLayout and StackLayout might not behave as expected on platforms
that do not support this.
|
See Also