API:Data.Bind.Components.TEvalEnumeratorToEditor.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AUseEvalShortcuts: Boolean;
const ASource: IScopeRecordEnumerator; const ASourceMemberName: string;
const AEditor: IBindListEditor; const AEditorMemberName: string; ACustom: Boolean;
const AOnEvalError: TOnEvalErrorEvent;
const ABindingExpression: TBindingExpression);

C++

__fastcall TEvalEnumeratorToEditor(bool AUseEvalShortcuts, const _di_IScopeRecordEnumerator ASource, const System::UnicodeString ASourceMemberName, const _di_IBindListEditor AEditor, const System::UnicodeString AEditorMemberName, bool ACustom, const TOnEvalErrorEvent AOnEvalError, System::Bindings::Expression::TBindingExpression* const ABindingExpression);

Properties

Type Visibility Source Unit Parent
constructor public
Data.Bind.Components.pas
Data.Bind.Components.hpp
Data.Bind.Components TEvalEnumeratorToEditor

Description

Constructs an object and initializes its data before the object is first used.

Data.Bind.Components.TEvalEnumeratorToEditor.Create inherits from System.TObject.Create. All content below this line refers to System.TObject.Create.

Constructs an object and initializes its data before the object is first used.

Create constructs an object. The purpose, size, and behavior of objects differ greatly. The Create constructor defined by TObject allocates memory but does not initialize data.

Descendant objects usually define a constructor that creates the particular kind of object and initializes its data.

Note: If an exception escapes from a constructor, the object's destructor is called to clean up the failed instance.

See Also