Class TileSelectorItem
Represents the item in the tile selector.
public class TileSelectorItem
- Inheritance
-
objectTileSelectorItem
- Extension Methods
Constructors
TileSelectorItem()
public TileSelectorItem()
Properties
Category
Identifier of the category the item belongs to. Matches the identifier of one of the categories the items can be filtered by. null when the item is not filtered by category.
public string Category { get; set; }
Property Value
- string
Disabled
Indicates if the tile is disabled.
public bool Disabled { get; set; }
Property Value
- bool
Icon
Tile icon name.
public string Icon { get; set; }
Property Value
- string
Identifier
Identifier of the item.
public int Identifier { get; set; }
Property Value
- int
Label
Label of the tile.
public string Label { get; set; }
Property Value
- string
Tooltip
Tooltip of the item.
public string Tooltip { get; set; }
Property Value
- string