Class GenItem
Definition
- Namespace:
- Elm
Sharp
- Assembly:
- ElmSharp.dll
It inherits Item
C#
Copy
public abstract class GenItem : ItemObject
- Inheritance
- Derived
Properties
Declaration
C#
Copy
public abstract string Cursor { get; set; }
Property Value
Type | Description |
---|---|
string |
Declaration
C#
Copy
public abstract string CursorStyle { get; set; }
Property Value
Type | Description |
---|---|
string |
View Source
Data
Gets the item data that is added through calling Append(Gen
Declaration
C#
Copy
public object Data { get; protected set; }
Property Value
Type | Description |
---|---|
object |
Declaration
C#
Copy
public abstract bool IsSelected { get; set; }
Property Value
Type | Description |
---|---|
bool |
Declaration
C#
Copy
public abstract bool IsUseEngineCursor { get; set; }
Property Value
Type | Description |
---|---|
bool |
View Source
ItemClass
Gets the item class that defines how to display data. It returns Gen
Declaration
C#
Copy
public GenItemClass ItemClass { get; protected set; }
Property Value
Type | Description |
---|---|
Gen |
Declaration
C#
Copy
public abstract GenItemSelectionMode SelectionMode { get; set; }
Property Value
Type | Description |
---|---|
Gen |
Declaration
C#
Copy
public GenItem.GetTooltipContentDelegate TooltipContentDelegate { get; set; }
Property Value
Type | Description |
---|---|
Gen |
View Source
TooltipStyle
It's an abstract property. It's implemented by Tooltip
Declaration
C#
Copy
public abstract string TooltipStyle { get; set; }
Property Value
Type | Description |
---|---|
string |
Methods
View Source
OnInvalidate()
The override method for deleting the item class and item data. It's called when the item is deleted.
Declaration
C#
Copy
protected override void OnInvalidate()
Overrides
Declaration
C#
Copy
public abstract void SetTooltipText(string tooltip)
Parameters
Type | Name | Description |
---|---|---|
string | tooltip | The text to set. |
Declaration
C#
Copy
public abstract void UnsetTooltip()
Declaration
C#
Copy
public abstract void Update()
Declaration
C#
Copy
protected abstract void UpdateTooltipDelegate()