FMX.Types._di_IGroupName
C++
typedef System::DelphiInterface<IGroupName> _di_IGroupName;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
typedef | public | FMX.ActnList.hpp | FMX.ActnList | FMX.ActnList |
Description
Represents the DelphiInterface of IGroupName.
You can use _di_IGroupName to access the GroupName property of controls that need to provide exclusive checking in C++ code.
The following code snippet shows how to use the FMX.ActnList.IGroupName.GroupName method over a TRadioButton:
_di_IGroupName AInterface;
if(RadioButton1->GetInterface(AInterface))
ShowMessage(AInterface->GroupName);