09-26-2018, 06:09 PM
(09-26-2018, 11:34 AM)LorenSzendre Wrote:TIWBSRegion on my machine now has bsttSpan in the Object Inspector)))(09-26-2018, 07:46 AM)jeroen.rottink Wrote: Hi LozenSzendre,Thanks for your answer!
The TIWBSRegion only gives an option for div, h1..h6 and p while TIWBSCustomRegion has full options in the form of a string TagName... I don't see the reason for this enumeration either. You can of course create your own component.
Other simple workaround for this moment is using OnHTMLTag event
Code:procedure TFrame2.IWFrameRegionHTMLTag(ASender: TObject; ATag: TIWHTMLTag);
begin
ATag.Tag := 'span';
end;
I guess I'd better push the change to the repository so I don't mess up my project when I upgrade....

