Class GenGridItem
Definition
- Namespace:
- Elm
Sharp
- Assembly:
- ElmSharp.dll
It inherits Gen
C#
Copy
public class GenGridItem : GenItem
- Inheritance
Properties
Column
Gets or sets the gengrid item's column position, relative to the whole gengrid's grid area.
Declaration
C#
Copy
public int Column { get; }
Property Value
Type | Description |
---|---|
int |
IsSelected
Gets or sets whether a given gengrid item is selected. If one gengrid item is selected, any other previously selected items get unselected in favor of this new one.
Declaration
C#
Copy
public override bool IsSelected { get; set; }
Property Value
Type | Description |
---|---|
bool |
Overrides
Remarks
If true, it is selected. If false, it is unselected.
Row
Gets or sets the gengrid item's row position, relative to the whole gengrid's grid area.
Declaration
C#
Copy
public int Row { get; }
Property Value
Type | Description |
---|---|
int |
Declaration
C#
Copy
public override GenItemSelectionMode SelectionMode { get; set; }
Property Value
Type | Description |
---|---|
Gen |
Overrides
Declaration
C#
Copy
public override string TooltipStyle { get; set; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
Declaration
C#
Copy
public override void SetTooltipText(string tooltip)
Parameters
Type | Name | Description |
---|---|---|
string | tooltip | The text to set. |
Overrides
Declaration
C#
Copy
public override void UnsetTooltip()
Overrides
Update()
Updates the content of a given gengrid item. This updates an item by calling all the GenItem class functions again to get the content, text, and states. Use this when the original item data has changed and you want the changes to reflect.
Declaration
C#
Copy
public override void Update()
Overrides
Remarks
Update
Declaration
C#
Copy
protected override void UpdateTooltipDelegate()