Frequently Asked Component Specific Questions
Options |
|
Display all FAQ items |
Displaying items 1 to 1 of 1, page 1 of 1
<< previous next >>

TMS Advanced Poly ListAdd items in C++
To item of a specific class type to the TAdvPolyList, the equivalent C++ code for the following Delphi code is:
var item: THTMLItem; begin item := THTMLItem(AdvVerticalPolyList1.AddItem(THTMLItem)); end;
{
THTMLItem *item;
item = (THTMLItem*)AdvVerticalPolyList1->AddItem(__classid(THTMLItem));
}