FMX.MultiView.TCustomMultiView.CustomPresentationClass
Delphi
property CustomPresentationClass: TMultiViewPresentationClass read FCustomPresentationClass write SetCustomPresentationClass;
C++
__property TMultiViewPresentationClass CustomPresentationClass = {read=FCustomPresentationClass, write=SetCustomPresentationClass};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | FMX.MultiView.pas FMX.MultiView.hpp |
FMX.MultiView | TCustomMultiView |
Description
Refers the custom class for presentations of master panes in MultiView controls.
The user can customize the master pane presentation. You need to set the MultiView control to Custom
and declare your own class that descends from TMultiViewPresentation or from other classes declared in the FMX.MultiView.Presentations.pas
unit (such as MyPresentationClass).
The custom presentation class should be set in the CustomPresentationClass property. See the Custom Mode subsection in Mobile Tutorial: Using a MultiView Component to Display Alternate Views of Information (iOS and Android).