FMX.StdCtrls.TCheckBox.TryValueIsChecked

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function TryValueIsChecked(const Value: TValue; out IsChecked: Boolean): Boolean;

C++

bool __fastcall TryValueIsChecked(const System::Rtti::TValue &Value, /* out */ bool &IsChecked);

Properties

Type Visibility Source Unit Parent
function protected
FMX.StdCtrls.pas
FMX.StdCtrls.hpp
FMX.StdCtrls TCheckBox

Description

Checks whether the provided Value is a Boolean or a Boolean String.

TryValueIsChecked returns True if Value is a Boolean or a Boolean String, False otherwise.

The out parameter IsChecked is assigned the the value of Value or False if Value is not a Boolean or a Boolean String.

See Also