Class GenGridItem

    Definition

    Namespace:
    ElmSharp
    Assembly:
    ElmSharp.dll

    It inherits GenItem. An instance to the gengrid item is added. It contains the Update() method to update a gengrid item which is given.

    [Obsolete("This has been deprecated in API12")]
    public class GenGridItem : GenItem
    Inheritance
    object
    ItemObject
    GenItem
    GenGridItem

    Properties

    View Source

    Column

    Gets or sets the gengrid item's column position, relative to the whole gengrid's grid area.

    Declaration
    [Obsolete("This has been deprecated in API12")]
    public int Column { get; }
    Property Value
    Type Description
    int
    View Source

    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
    [Obsolete("This has been deprecated in API12")]
    public override bool IsSelected { get; set; }
    Property Value
    Type Description
    bool
    Overrides
    GenItem.IsSelected
    Remarks

    If true, it is selected. If false, it is unselected.

    View Source

    Row

    Gets or sets the gengrid item's row position, relative to the whole gengrid's grid area.

    Declaration
    [Obsolete("This has been deprecated in API12")]
    public int Row { get; }
    Property Value
    Type Description
    int
    View Source

    SelectionMode

    Gets the gengrid item's select mode.

    Declaration
    [Obsolete("This has been deprecated in API12")]
    public override GenItemSelectionMode SelectionMode { get; set; }
    Property Value
    Type Description
    GenItemSelectionMode
    Overrides
    GenItem.SelectionMode
    View Source

    TooltipStyle

    Sets or gets, or sets the style of the given gengrid item's tooltip.

    Declaration
    [Obsolete("This has been deprecated in API12")]
    public override string TooltipStyle { get; set; }
    Property Value
    Type Description
    string
    Overrides
    GenItem.TooltipStyle

    Methods

    View Source

    SetTooltipText(string)

    Sets the text to be shown in the gengrid item.

    Declaration
    [Obsolete("This has been deprecated in API12")]
    public override void SetTooltipText(string tooltip)
    Parameters
    Type Name Description
    string tooltip

    The text to set.

    Overrides
    GenItem.SetTooltipText(string)
    View Source

    UnsetTooltip()

    Unsets the tooltip from item.

    Declaration
    [Obsolete("This has been deprecated in API12")]
    public override void UnsetTooltip()
    Overrides
    GenItem.UnsetTooltip()
    View Source

    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
    [Obsolete("This has been deprecated in API12")]
    public override void Update()
    Overrides
    GenItem.Update()
    Remarks

    UpdateRealizedItems() to update the contents of all the realized items.

    View Source

    UpdateTooltipDelegate()

    Sets the content to be shown in the tooltip item.

    Declaration
    [Obsolete("This has been deprecated in API12")]
    protected override void UpdateTooltipDelegate()
    Overrides
    GenItem.UpdateTooltipDelegate()

    Extension Methods

    ItemObjectExtension.ClearHighlight(ItemObject)
    ItemObjectExtension.GrabHighlight(ItemObject)
    • View Source
    Back to top Copyright © 2016-2024 Samsung
    Generated by DocFX