Show / Hide Table of Contents

    Class ListboxItemArgs

    Event arguments for when a selected item changes in a listbox/combobox.

    Inheritance
    System.Object
    ListboxItemArgs
    ListboxItemChangingArgs
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: AGS.API
    Assembly: AGS.API.dll
    Syntax
    public class ListboxItemArgs

    Constructors

    | Improve this Doc View Source

    ListboxItemArgs(IStringItem, Int32)

    Initializes a new instance of the ListboxItemArgs class.

    Declaration
    public ListboxItemArgs(IStringItem item, int index)
    Parameters
    Type Name Description
    IStringItem item

    Item.

    System.Int32 index

    Index.

    Properties

    | Improve this Doc View Source

    Index

    The selected index.

    Declaration
    public int Index { get; }
    Property Value
    Type Description
    System.Int32

    The index.

    | Improve this Doc View Source

    Item

    The newly selected item.

    Declaration
    public IStringItem Item { get; }
    Property Value
    Type Description
    IStringItem

    The item.

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX