Docs: Documentation updates for LCL and LazUtils. Issue #37285, patch from Don Siders.

git-svn-id: trunk@63483 -
This commit is contained in:
juha 2020-07-01 08:08:04 +00:00
parent bfeb99af9e
commit 86d3591678
4 changed files with 6976 additions and 3900 deletions

View File

@ -364,6 +364,9 @@
<element name="TSearchFileInPathFlag.sffExecutable">
<short/>
</element>
<element name="TSearchFileInPathFlag.sffDequoteSearchPath">
<short/>
</element>
<element name="TSearchFileInPathFlags">
<short/>

File diff suppressed because it is too large Load Diff

View File

@ -20,6 +20,7 @@
<element name="Math"/>
<element name="FPCanvas"/>
<element name="HtmlDefs"/>
<element name="StrUtils"/>
<element name="LCLStrConsts"/>
<element name="LCLType"/>
<element name="LCLIntf"/>
@ -13233,7 +13234,25 @@
<element name="TCustomStringGrid.SelectionSetHTML">
<short>Sets the value for the current Selection to the specified HTML content</short>
<descr></descr>
<descr>
<p>
Extracts text for rows and columns in the grid from the tagged content in TheHTML. Recognizes and converts the following HTML tags:
</p>
<ul>
<li>BR</li>
<li>TR</li>
<li>TD</li>
</ul>
<p>
Converts HTML numeric character entities to their UTF-8-encoded equivalent. Unrecognized entities are converted to a Question Mark character (?).
</p>
<p>
Calls DoCellProcess to paste the values extracted from the HTML content. The value in TheText is used when TheHTML does not contain valid HTML that can be handled in the method. Cells and Rows affected in the method are assigned as the current Selection in the grid control prior to exit.
</p>
<p>
Used in the DoPasteFromClipboard method when the clipboard supports the HTML format.
</p>
</descr>
<seealso></seealso>
</element>
<element name="TCustomStringGrid.SelectionSetHTML.TheHTML">

File diff suppressed because it is too large Load Diff