Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
TIWEdit and HTML legend property
#2
Legend is a tag itself, not an attribute of the input tag. Legend most of the times is also part of a fieldset tag.

You can tell IWRegion to render itself as a Legend tag using OnHTMLTag event of the IWRegion:

procedure TIWForm1.IWRegion1HTMLTag(ASender: TObject; ATag: TIWHTMLTag);
begin
ATag.Tag := 'legend';
end;

The code in C++ is analogous.
Reply


Messages In This Thread
TIWEdit and HTML legend property - by valmeras - 04-19-2020, 10:59 PM
RE: TIWEdit and HTML legend property - by Alexandre Machado - 04-24-2020, 05:29 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)