Get item from table

General TRichView support forum. Please post your questions here
Post Reply
falko
Posts: 1
Joined: Thu Dec 16, 2010 4:08 pm

Get item from table

Post by falko »

Hi,
I would ask how I can get item from a table.
I try so (for example):

Code: Select all

table: TRVTableItemInfo;
tag:= PChar(table.Cells[r,c].GetRVData.GetItem(i));
but it doesn't work, with this method i get only plain text but not the tags
Sergey Tkachenko
Site Admin
Posts: 17559
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Post by Sergey Tkachenko »

tag:= PChar(table.Cells[r,c].GetRVData.GetItemTag(i));
Post Reply