Vcl.ExtCtrls.TCustomRadioGroup.ReadState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure ReadState(Reader: TReader); override;

C++

virtual void __fastcall ReadState(System::Classes::TReader* Reader);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TCustomRadioGroup

Description

Reads the radio group’s data from a stream.

ReadState is part of a sequence of calls used by the streaming system that loads and saves VCL components. It reads the values of all the radio group's published properties, stored data, and owned components from the reader object passed in Reader. Do not call ReadState directly. ReadState calls the inherited ReadState method to read the radio group’s published properties and other stored data to a reader object. It then initializes and redraws the buttons in the group.

See Also