Show / Hide Table of Contents

Interface IListViewModel

An interface for implementing an editable list.

Inherited Members
ICanMoveItemsWithin.MoveItemsTo(object, int)
ICanMoveItemsWithin.CopyItemsTo(object, int)
ICanMoveItemsTo.MoveItemsTo(object)
ICanMoveItemsTo.CopyItemsTo(object)
ICanMoveItemsTo.CanAppendItems(object)
Namespace: Phoenix.BotBrain.Controls
Assembly: Phoenix.Plugin.BotBrain.Lists.dll
Syntax
public interface IListViewModel : ICanMoveItemsWithin, ICanMoveItemsTo

Properties

View Source

IsEditable

Gets a value indicating whether or not items can be added, moved, or removed.

Declaration
bool IsEditable { get; }
Property Value
Type Description
bool
View Source

Items

Gets the list of items.

Declaration
IList Items { get; }
Property Value
Type Description
IList
View Source

SelectedItem

Gets the currently selected item.

Declaration
object? SelectedItem { get; }
Property Value
Type Description
object
View Source

SupportsCopy

Gets a value indicating whether or not items can be copied.

Declaration
bool SupportsCopy { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Generated by DocFX