Class Tile
This class used to represent page shortcuts
Inheritance
System.Object
Tile
Namespace: Simplic.Framework.UI
Assembly: Simplic.Framework.dll
Syntax
public class Tile : object
Properties
| Improve this Doc View SourceBackgroundColor
Gets or sets of the tile's background color
Declaration
public Color BackgroundColor { get; set; }
Property Value
| Type | Description |
|---|---|
| Color |
DisplayIndex
Gets or sets the display index
Declaration
public int? DisplayIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
Icon
Gets or sets the Icons icon Id
Declaration
public Guid? Icon { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<Guid> |
Id
Gets or sets the id of a tile
Declaration
public Guid Id { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid |
PageId
Gets or sets the id of the page that should be opened when clicked on this tile
Declaration
public Guid PageId { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid |
Text
Gets or sets the tile text that is shown on the start page
Declaration
public string Text { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
TextColor
Gets or sets of the tile's text color
Declaration
public Color TextColor { get; set; }
Property Value
| Type | Description |
|---|---|
| Color |
TileSize
Gets or sets TileSize of a tile
Declaration
public TileType TileSize { get; set; }
Property Value
| Type | Description |
|---|---|
| TileType |
Methods
| Improve this Doc View SourceDeepCopy()
Creates a clone of this tile
Declaration
public Tile DeepCopy()
Returns
| Type | Description |
|---|---|
| Tile | A clone of this tile |