Syntax
Public Function ObjectDeleteAll(chart_Id As Long) As Boolean
Description
This function removes all objects from the specified chart.
Parameters
Key | Description |
chart_Id | Chart identifier. 0 mean the current chart, the value of type Long. |
Return value
Returns true if successful. Otherwise, it returns false.To get the detailed error information, call GetlastError() function.
Sample
Public Sub main () AlertMessage ObjectDeleteAll (0) End sub
See Also