|
|
|
|
|
HtmlFormat (Property) In french: FormatHtml
The HtmlFormat property is used to: - find out whether an edit control accepts the input in HTML format.
- modify the input format of an edit control.
This property can be used on the edit controls of a window. // If the control is in HTML format IF EDT_MyControl.HtmlFormat = True THEN // Retrieve the rough text sValue = HTMLToText(EDT_MyControl) END
Syntax
Finding out whether an edit control is in HTML format Hide the details
<Result> = <Edit control>.HtmlFormat
<Result>: Boolean - True if the input in the control is performed in HTML format,
- False otherwise.
<Edit control>: Control name Name of edit control to use.
Enabling/Disabling the input in HTML format in an edit control Hide the details
<Edit control>.HtmlFormat = <Value>
<Edit control>: Control name Name of edit control to use. <Value>: Boolean - True if the input in the control must be performed in HTML format,
- False otherwise.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|