:: MVP ::
|
|
:: RSS ::
|
|
|
Как отображать статичный текст в TVirtualTreeView?
// VirtualStringTree1.TreeOptions.StringOptions.toShowStaticText = true
procedure TForm1.VirtualStringTree1GetText(Sender: TBaseVirtualTree;
Node: PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType;
var CellText: string);
begin
case TextType of
ttNormal: CellText := ...;
ttStatic: CellText := 'статичный текст';
end;
end;
|
При использовании материала - ссылка на сайт обязательна
|
|