Class GenItem
Definition
- Namespace:
- ElmSharp
- Assembly:
- ElmSharp.dll
It inherits ItemObject. A base class for GenGridItem and GenListItem. It contains the GenItem class and data to display the data.
C#Copy[Obsolete("This has been deprecated in API12")] public abstract class GenItem : ItemObject
- Inheritance
- Derived
Properties
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public abstract string Cursor { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public abstract string CursorStyle { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
View Source
Data
Gets the item data that is added through calling Append(GenItemClass, object), Prepend(GenItemClass, object), or InsertBefore(GenItemClass, object, GenGridItem) methods.
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public object Data { get; protected set; }
Property Value
| Type | Description |
|---|---|
| object |
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public abstract bool IsSelected { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] 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 GenItemClass type.
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public GenItemClass ItemClass { get; protected set; }
Property Value
| Type | Description |
|---|---|
| GenItemClass |
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public abstract GenItemSelectionMode SelectionMode { get; set; }
Property Value
| Type | Description |
|---|---|
| GenItemSelectionMode |
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public GenItem.GetTooltipContentDelegate TooltipContentDelegate { get; set; }
Property Value
| Type | Description |
|---|---|
| GenItem.GetTooltipContentDelegate |
View Source
TooltipStyle
It's an abstract property. It's implemented by TooltipStyle and TooltipStyle.
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] 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[Obsolete("This has been deprecated in API12")] protected override void OnInvalidate()
Overrides
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public abstract void SetTooltipText(string tooltip)
Parameters
| Type | Name | Description |
|---|---|---|
| string | tooltip | The text to set. |
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public abstract void UnsetTooltip()
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] public abstract void Update()
Declaration
C#Copy[Obsolete("This has been deprecated in API12")] protected abstract void UpdateTooltipDelegate()