FMX.Types._di_IIsChecked
C++
typedef System::DelphiInterface<IIsChecked> _di_IIsChecked;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
typedef | public | FMX.ActnList.hpp | FMX.ActnList | FMX.ActnList |
Description
Represents the DelphiInterface of IIsChecked.
You can use _di_IIsChecked to access the IsChecked property of controls that can be checked in C++ code.
The following code snippet shows how to use the FMX.ActnList.IIsChecked.IsChecked method over a TCheckBox:
_di_IIsChecked AInterface;
if(CheckBox1->GetInterface(AInterface))
AInterface->IsChecked = True;