FMX.Types._di_ICaret

From RAD Studio API Documentation
Jump to: navigation, search

C++

typedef System::DelphiInterface<ICaret> _di_ICaret;

Properties

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

Description

Represents the DelphiInterface of ICaret.

You can use _di_ICaret to refer to a caret in C++ code.

The following code snippet shows how to use the FMX.Types.ICaret.HideCaret method over a TEdit:

_di_ICaret AInterface;
if(Edit1->GetInterface(AInterface))
	AInterface->HideCaret();

See Also