System.Classes.TFilerFlags
Delphi
TFilerFlags = set of TFilerFlag;
C++
typedef System::Set<TFilerFlag, TFilerFlag::ffInherited, TFilerFlag::ffInline> TFilerFlags;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
set typedef |
public | System.Classes.pas System.Classes.hpp |
System.Classes | System.Classes |
Description
TFilerFlags is the set of TFilerFlag values.
TFilerFlags 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 that might pertain to a single component.
The following table lists the set of TFilerFlags 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. |