System.Classes.TFilerFlag

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TFilerFlag = (ffInherited, ffChildPos, ffInline);

C++

enum DECLSPEC_DENUM TFilerFlag : unsigned char { ffInherited, ffChildPos, ffInline };

Properties

Type Visibility Source Unit Parent
enum public
System.Classes.pas
System.Classes.hpp
System.Classes System.Classes

Description

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

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.