NtTimeChartControl.DeleteDataObjects Method

The NtTimeChartControl can contain many data objects. Every data object is an instance of NtDataObject (or derivates). For this reason, every data object is identified by a unique id. Two data objects must not have the same id.
Every data object can reside in the NtTimeChartControl only once.
 
Call this method to remove data objects from the NtTimeChartControl by providing a List of object ids.

Overload List:

Modifier / Return Value Name and Parameters Description

public void

DeleteDataObjects ( List<ulong> objIdList )

Deletes the data objects identified by the object ids contained in objIdList from the NtTimeChartControl.

Return value:

void

Parameters:

ulong objIdList
A List that contains all the object ids you want to remove from the Time Chart.

Remarks:

The list objIdList may be changed by this method. If you need this list unchanged, you should provide a copy of that list instead.

See also:

DeleteDataObject()
InsertDataObject()
InsertDataObjects()