Describes service for component which manages plain list of items.
You can find more information in comments below.
class IComponentItemListService: public virtual IComponentService
{
public:
virtual bool MoveItem(IListItem *item, const int before) = 0; // Change item position in list. Index should be in range 0..ItemCount, item should be child and it's index should not be equal to index
};
Namespace: | nitisa |
Include: | Nitisa/Interfaces/IComponentItemListService.h |