mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-07 09:57:57 +02:00
* Paragraph widget
This commit is contained in:
parent
06c02531e0
commit
81e5de31ac
@ -805,6 +805,11 @@ Type
|
||||
Function HTMLTag : String; override;
|
||||
end;
|
||||
|
||||
TParagraphWidget = Class(TWebWidget)
|
||||
Protected
|
||||
Function HTMLTag : String; override;
|
||||
end;
|
||||
|
||||
Function ViewPort : TViewPort;
|
||||
|
||||
Const
|
||||
@ -837,6 +842,13 @@ begin
|
||||
Result:='DIV';
|
||||
end;
|
||||
|
||||
|
||||
function TParagraphWidget.HTMLTag : String;
|
||||
|
||||
begin
|
||||
Result:='P';
|
||||
end;
|
||||
|
||||
{ TSelectWidget.TStringsSelectOptionEnumerator }
|
||||
|
||||
constructor TSelectWidget.TStringsSelectOptionEnumerator.Create(ASelect: TCustomSelectWidget);
|
||||
|
Loading…
Reference in New Issue
Block a user