FMX.Text._di_ITextActions

From RAD Studio API Documentation
Jump to: navigation, search

C++

typedef System::DelphiInterface<ITextActions> _di_ITextActions;

Properties

Type Visibility Source Unit Parent
typedef public FMX.Text.hpp FMX.Text FMX.Text

Description

Represents the DelphiInterface of ITextActions.

You can use _di_ITextActions to refer to objects that operate with text in C++ code.

The following code snippet shows how to use the FMX.Text.ITextActions.SelectAll method over a TEdit:

 _di_ITextActionsAInterface;
 if (Edit1->GetInterface(AInterface)) {
	 AInterface->SelectAll();
 }

See Also