TableIntent Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the visual intent of a TableView, which determines how it is rendered on each platform.
public enum class TableIntent
public enum TableIntent
type TableIntent =
Public Enum TableIntent
- Inheritance
-
TableIntent
Fields
| Name | Value | Description |
|---|---|---|
| Menu | 0 | Indicates the TableView is for displaying a menu. |
| Settings | 1 | Indicates the TableView is for displaying application settings. |
| Form | 2 | Indicates the TableView is for displaying a data entry form. |
| Data | 3 | Indicates the TableView is for displaying tabular data. |
Remarks
Using table intents will not effect the behavior of a table, and will only modify their visual appearance on screen, depending on the platform. Not all intents are unique on all platforms, however it is advisable to pick the intent which most closely represents your use case.