Data.Bind.Components.TActivatedContainedBindComponent.BindActivate

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
Data.Bind.Components.pas
Data.Bind.Components.hpp
Unit: Data.Bind.Components
Parent: TActivatedContainedBindComponent

Delphi

procedure BindActivate(Value: Boolean); virtual;

C++

virtual void __fastcall BindActivate(bool Value);

Description

Activates or deactivates the binding expressions.

The BindActivate method attempts to activate or deactivate the binding expressions, based on the given Boolean Value.

If the Value parameter is True, then BindActivate checks whether AutoActivate is True, if CanActivate is also True, and if the component is not in design mode. If all these conditions are met, BindActivate activates the binding expressions through a call to the SetActive method.

See Also