Syntax
Public Function GetMonth(ByVal ChartID As long, ByVal Record As long)As String
Description
A function that returns’ the month of specific Bar that exists on a spesfic chart.
Parameters
Key | Description |
chart_ID | Chart identifier, 0 is the current chart, the value of type Long |
Record | Bar number that want to get month value for it, the value of type Long. |
Return value
Returns month value for a requested record as value of type String.
Sample
Public Sub main() AlertMessage ("The month of the record 50: " & GetMonth (0, 50))End Sub
See Also