![]() |
![]() ![]() ![]() |
acListView and acDBListView components.
|
function FindCaption(const Caption: String): TListItem;
|
The FindCaption function finds the list item, if any, with specified caption. This is another, overloaded variation of standard FindCaption method, but much simplified.
|
![]() |
![]() |
{$IFDEF D4}
|
function TacCustomListView.FindCaption(const Caption: String): TListItem;
|
begin
|
Result := inherited FindCaption(0, Caption, False, True, False);
|
end;
|
{$ENDIF}
|
GetColumnAt method.
|