FMX.ListView.Types.TListItemStyleResources.TButtonStyleObject

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

    TButtonStyleObject = record
      [weak]Normal: TStyleObject;
      [weak]Pressed: TStyleObject;
    end;

C++

struct DECLSPEC_DRECORD TButtonStyleObject
{
public:
    Fmx::Styles::Objects::TStyleObject* Normal;
    Fmx::Styles::Objects::TStyleObject* Pressed;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
FMX.ListView.Types.pas
FMX.ListView.Types.hpp
FMX.ListView.Types TListItemStyleResources

Description

For internal use only.

Record that stores the images for the button associated with the list view item.

TButtonStyleObject maintains the images of the list item button in normal and pressed states.

Note: TButtonStyleObject was refactored from TButtonSubImage.

See Also