ListActns.TCustomListAction.Strings
Contents |
Delphi Information
From ListActns.pas
property Strings: string read GetString write SetString;
Unit: ListActns
Type: property
Visibility: public
Member Of: TCustomListAction
C++ Information
From ListActns.hpp
__property System::UnicodeString Strings = {read=GetString,write=SetString};
Unit: ListActns
Type: property
Visibility: public
Member Of: TCustomListAction
Description
Lists the Strings that are the values of the items this action supplies.
Read Strings to get or set the text value for any of the items this action supplies to clients.
Index is the index of the item. It is a value from 0 to Count – 1.
In TCustomListAction, Strings is not implemented. Reading Strings always returns an empty string, and setting Strings has no effect.
Descendant classes can override the protected GetString and SetString methods to provide an implementation for this property. However, there is no guarantee that Strings is implemented for any particular TCustomListAction descendant.