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.
TableIntent provides hints to the renderer about how a table will be used.
public enum class TableIntent
public enum TableIntent
type TableIntent =
Public Enum TableIntent
- Inheritance
-
TableIntent
Fields
Name | Value | Description |
---|---|---|
Menu | 0 | A table intended to be used as a menu for selections. |
Settings | 1 | A table containing a set of switches, toggles, or other modifiable configuration settings. |
Form | 2 | A table which is used to contain information that would normally be contained in a form. |
Data | 3 | A table intended to contain an arbitrary number of similar data entries. |
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.