RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Classes.TFilerFlag Enumeration

TFilerFlag indicates information about how a filer should read or write a component and TFilerFlags is a set of TFilerFlag values.

Pascal
TFilerFlag = (
  ffInherited,
  ffChildPos,
  ffInline
);
C++
enum TFilerFlag {
  ffInherited,
  ffChildPos,
  ffInline
};

Classes

TFilerFlag values are written to form files as a prefix to saved components. They indicate any special status of the component that the streaming system must take into account. TFilerFlags is a set containing all the flags (if any) that pertain to a single component. 

The following table lists the possible TFilerFlag values:

Value 
Meaning 
ffInherited  
The component is an inherited form.  
ffChildPos  
The order in which this component is created is important.  
ffInline  
The component is a top-level component such as a form or data module.  

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!