WebComp.TWebContentFlag
From RAD Studio VCL Reference
Delphi Information
From WebComp.pas
TWebContentFlag = { coNoScript, coLocalPaths, coNoExecuteScript };
Unit: WebComp
Type: enum
C++ Information
From WebComp.hpp
enum TWebContentFlag{ coNoScript, coLocalPaths, coNoExecuteScript };
Unit: WebComp
Type: enum
Description
TWebContentFlags indicates the type of HTML a Web item can produce.
TWebContentFlags is a set of TWebContentFlag values. It can include zero or more of the following values:
| Value | Meaning |
|---|---|
|
coNoScript |
The generated HTML can't contain any client-side script such as javascript. |
|
coLocalPaths |
The generated HTML can use local paths to included resources rather than requiring URLs. This option is for HTML documents that are only viewed on the same machine as the included resources. |
|
coNoExecuteScript |
The item generates its HTML in a class-specific manner, ignoring any server-side script that may be included in the application. |