Vcl.ValEdit.TValueListEditor.OnStringsChanging

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnStringsChanging: TNotifyEvent read GetOnStringsChanging  write SetOnStringsChanging;

C++

__property System::Classes::TNotifyEvent OnStringsChanging = {read=GetOnStringsChanging, write=SetOnStringsChanging};

Properties

Type Visibility Source Unit Parent
event published
Vcl.ValEdit.pas
Vcl.ValEdit.hpp
Vcl.ValEdit TValueListEditor

Description

Occurs immediately before the names or values in the string list change.

Write an OnStringsChanging event handler to prepare for changes in the list of strings. For example, you can use the OnStringsChanging event to disable repaints until the OnStringsChange event when the list has finished changing..

OnStringsChanging occurs before the change occurs. The properties of the value list editor reflect the old values of the strings.

See Also