* Paragraph widget

This commit is contained in:
michael 2020-10-02 21:01:08 +00:00
parent 06c02531e0
commit 81e5de31ac

View File

@ -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);