mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-26 18:43:50 +02:00
36 lines
1.5 KiB
PHP
36 lines
1.5 KiB
PHP
{%MainUnit ../stdctrls.pp}
|
|
{
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.LCL, included in this distribution, *
|
|
* for details about the copyright. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
* *
|
|
*****************************************************************************
|
|
}
|
|
|
|
{------------------------------------------------------------------------------}
|
|
{ function TCustomGroupBox.Create }
|
|
{------------------------------------------------------------------------------}
|
|
constructor TCustomGroupBox.Create(AOwner: TComponent);
|
|
begin
|
|
inherited Create(AOwner);
|
|
fCompStyle := csGroupBox;
|
|
ControlStyle := ControlStyle + [csAcceptsControls];
|
|
Width:= 185;
|
|
Height:= 105;
|
|
end;
|
|
|
|
function TCustomGroupBox.CanTab: boolean;
|
|
begin
|
|
Result:=false;
|
|
end;
|
|
|
|
// included by stdctrls.pp
|
|
|