RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
WebCntxt.TFindPageOption Enumeration

TFindPageOptions indicates the attributes that must be present on a Web page module that is the target of a search.

Pascal
TFindPageOption = (
  fpPublished,
  fpLoginRequired
);
C++
enum TFindPageOption {
  fpPublished,
  fpLoginRequired
};

When searching for Web modules using a given Web context, TFindPageOption values represent attributes of a Web module that must be present before a given Web module is considered. When a TFindPageOption is included in the set of options, only those Web modules that have the corresponding attribute are considered. Note that if an option is not included, Web modules that have the corresponding attribute are still considered in the search operation.

Option 
Meaning 
fpPublished  
Only published Web page modules are considered.  
fpLoginRequired  
Only Web page modules that require the user to log in before they can be accessed are considered.  

Note: These options are added to a Web page module using properties of the Web page information object with which the module is registered. The Web page information object is supplied as a parameter to the corresponding factory object's constructor in code that the Web page module wizard generates.
 

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