Syntax
Public Function objectFind(chart_Id As Long, name As String) As Integer
Description
This function is used to return object ID by a given object name on the chart.
Parameters
Key | Description |
chart_Id | Chart identifier. 0 mean the current chart, the value of type Long. |
name | The name of the searched object, the value of type String. |
Return value
Returns the object ID.In error casecall GetlastError() function to get the detailed error information.
Sample
Public Sub main () AlertMessage ObjectFind (0,ObjectName) End sub
See Also