RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
WebComp.TWebContentFlag Enumeration

TWebContentFlags indicates the type of HTML a Web item can produce.

Pascal
TWebContentFlag = (
  coNoScript,
  coLocalPaths,
  coNoExecuteScript
);
C++
enum TWebContentFlag {
  coNoScript,
  coLocalPaths,
  coNoExecuteScript
};

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.  

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!