FMX.ListView.TAppearanceListView.ItemEditAppearanceName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ItemEditAppearanceName: string read GetItemEditAppearanceName write SetItemEditAppearanceName stored False;

C++

__property System::UnicodeString ItemEditAppearanceName = {read=GetItemEditAppearanceName, write=SetItemEditAppearanceName, stored=false};

Properties

Type Visibility Source Unit Parent
property protected
FMX.ListView.pas
FMX.ListView.hpp
FMX.ListView TAppearanceListView

Description

Name of the appearance of regular list view items in edit mode.

When your list view switches between display mode and edit mode, the item appearance switches between the appearance defined in the ItemAppearanceName property (display mode) and the appearance defined in the ItemEditAppearanceName property (edit mode). Items may display an animation as their appearance changes.

You can find the possible values in the table below.

ItemEditAppearance ItemAppearanceName Editing Mode List Item Preview
Not Selected Selected
Custom Custom Custom
ImageListItemBottomDetailShowCheck ImageListItemBottomDetail Select ItemEditAppearance-ImageListItemBottomDetailShowCheck-NotSelected-Android.png
ItemEditAppearance-ImageListItemBottomDetailShowCheck-NotSelected-iOS.png
ItemEditAppearance-ImageListItemBottomDetailShowCheck-Selected-Android.png
ItemEditAppearance-ImageListItemBottomDetailShowCheck-Selected-iOS.png
ImageListItemBottomDetailRightButtonShowCheck ImageListItemBottomDetailRightButton Select ItemEditAppearance-ImageListItemBottomDetailShowCheck-NotSelected-Android.png
ItemEditAppearance-ImageListItemBottomDetailShowCheck-NotSelected-iOS.png
ItemEditAppearance-ImageListItemBottomDetailShowCheck-Selected-Android.png
ItemEditAppearance-ImageListItemBottomDetailShowCheck-Selected-iOS.png
ImageListItemDelete ImageListItem Delete ItemEditAppearance-ImageListItemDelete-NotSelected-Android.png
ItemEditAppearance-ImageListItemDelete-NotSelected-iOS.png
ItemEditAppearance-ImageListItemDelete-Selected-Android.png
ItemEditAppearance-ImageListItemDelete-Selected-iOS.png
ImageListItemRightButtonDelete ImageListItemRightButton Delete ItemEditAppearance-ImageListItemDelete-NotSelected-Android.png
ItemEditAppearance-ImageListItemDelete-NotSelected-iOS.png
ItemEditAppearance-ImageListItemDelete-Selected-Android.png
ItemEditAppearance-ImageListItemDelete-Selected-iOS.png
ImageListItemRightButtonShowCheck ImageListItemRightButton Select ItemEditAppearance-ImageListItemRightButtonShowCheck-NotSelected-Android.png
ItemEditAppearance-ImageListItemRightButtonShowCheck-NotSelected-iOS.png
ItemEditAppearance-ImageListItemRightButtonShowCheck-Selected-Android.png
ItemEditAppearance-ImageListItemRightButtonShowCheck-Selected-iOS.png
ImageListItemShowCheck ImageListItem Select ItemEditAppearance-ImageListItemRightButtonShowCheck-NotSelected-Android.png
ItemEditAppearance-ImageListItemRightButtonShowCheck-NotSelected-iOS.png
ItemEditAppearance-ImageListItemRightButtonShowCheck-Selected-Android.png
ItemEditAppearance-ImageListItemRightButtonShowCheck-Selected-iOS.png
ListItemDelete ListItem Delete ItemEditAppearance-ListItemDelete-NotSelected-Android.png
ItemEditAppearance-ListItemDelete-NotSelected-iOS.png
ItemEditAppearance-ListItemDelete-Selected-Android.png
ItemEditAppearance-ListItemDelete-Selected-iOS.png
ListItemRightDetailDelete ListItemRightDetail Delete ItemEditAppearance-ListItemRightDetailDelete-NotSelected-Android.png
ItemEditAppearance-ListItemRightDetailDelete-NotSelected-iOS.png
ItemEditAppearance-ListItemDelete-Selected-Android.png
ItemEditAppearance-ListItemDelete-Selected-iOS.png
ListItemRightDetailShowCheck ListItemRightDetail Select ItemEditAppearance-ListItemRightDetailShowCheck-NotSelected-Android.png
ItemEditAppearance-ListItemRightDetailShowCheck-NotSelected-iOS.png
ItemEditAppearance-ListItemRightDetailShowCheck-Selected-Android.png
ItemEditAppearance-ListItemRightDetailShowCheck-Selected-iOS.png
ListItemShowCheck ListItem Select ItemEditAppearance-ListItemShowCheck-NotSelected-Android.png
ItemEditAppearance-ListItemShowCheck-NotSelected-iOS.png
ItemEditAppearance-ListItemShowCheck-Selected-Android.png
ItemEditAppearance-ListItemShowCheck-Selected-iOS.png

Each edit mode item appearance matches a display mode item appearance (ItemAppearanceName). The type of editing mode described in the table above determines how list items behave.

Item Behavior
Delete Tap a list item to show a Delete button. Tap Delete to delete the item, tap anywhere else to hide the Delete button.
Select Tap a list item to select it. Tap again to unselect it. You can select more than one item (multiselect).
Custom Your custom implementation of the edit mode item appearance determines the behavior of list items.

See Also