mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 18:58:04 +02:00
28 lines
816 B
PHP
28 lines
816 B
PHP
{%MainUnit ../stdctrls.pp}
|
|
|
|
{******************************************************************************
|
|
checkbox.inc
|
|
******************************************************************************
|
|
|
|
*****************************************************************************
|
|
This file is part of the Lazarus Component Library (LCL)
|
|
|
|
See the file COPYING.modifiedLGPL.txt, included in this distribution,
|
|
for details about the license.
|
|
*****************************************************************************
|
|
}
|
|
|
|
// included by stdctrls.pp
|
|
|
|
{ TCheckBox }
|
|
|
|
constructor TCheckBox.Create(TheOwner: TComponent);
|
|
begin
|
|
inherited Create(TheOwner);
|
|
fCompStyle := csCheckbox;
|
|
TabStop := True;
|
|
AutoSize := True;
|
|
//FState := cbUnchecked;
|
|
//FAllowGrayed := false;
|
|
end;
|