Method Add
Add(object)
Adds an object to the end of the Items collection.
public virtual int Add(object item)
Parameters
Returns
Add(string, object?)
Adds text
with data
to the end of
the Items collection.
public virtual int Add(string text, object? data)
Parameters
Returns
Remarks
This method creates ListControlItem, assigns its properties with
text
and data
. Created object is added to
the Items collection.
Add(string, Action)
Adds text
with action
to the end of
the Items collection.
public virtual int Add(string text, Action action)
Parameters
Returns
Remarks
This method creates ListControlItem, assigns its properties with
text
and action
. Created object is added to
the Items collection.