Vcl.Grids.TStringGridStrings.SetUpdateState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetUpdateState(Updating: Boolean); override;

C++

virtual void __fastcall SetUpdateState(bool Updating);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TStringGridStrings

Description

Performs internal adjustments before or after a series of updates.

Vcl.Grids.TStringGridStrings.SetUpdateState inherits from System.Classes.TStrings.SetUpdateState. All content below this line refers to System.Classes.TStrings.SetUpdateState.

Performs internal adjustments before or after a series of updates.

SetUpdateState is called at the beginning or end of a series of updates. When the BeginUpdate method is first called and the TStrings object is not already in the middle of an update, TStrings calls SetUpdateState internally, with Updating set to true. When the EndUpdate method is called and it cancels out the last unmatched call to BeginUpdate, TStrings calls SetUpdateState internally, with Updating set to false.

As implemented in TStrings, SetUpdateState does nothing. Descendant classes can override this method to optimize the response to updates.

See Also