HtmlEditformat()

Escapes the given HTML string, replacing &, <, >, and quotes. For use inside of the HTML form elements

Usage

STRING = HtmlEditformat( string, html )
Argument Summary
string string
html html version - not used [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

HtmlEditformat(
   string=?, 
   html=?
);

Supports passing parameters as a structure using ArgumentCollection:

HtmlEditformat( ArgumentCollection={
   string : ?, 
   html : ?
} );