The CxFmsHistoryGraphCtrl object contains the following events.
A refresh operation has completed.
CxFmsHistoryGraphCtrlObject_EventEndRefresh(Result As Integer, Status As Integer)
| Parameter | Required | Description |
|---|---|---|
|
Result |
Yes |
An integer specifying whether the refresh succeeded or failed. Possible values for this property are as follows.
|
|
Status |
Yes |
An integer specifying whether or not the refresh was canceled. Possible values for this property are as follows.
|
Example
The following example displays a message box if the refresh was canceled.
|
Sub FmsHistoryGraph_EventEndRefresh(Result, Status) Dim This : Set This = FmsHistoryGraph If Status = 1 Then MsgBox "Refresh canceled" End If End Sub |
The control is initialized.
CxFmsHistoryGraphCtrlObject_EventInitialize()
Example
The following example displays a message box when the control is initialized.
|
Sub FmsHistoryGraph_EventInitialize() Dim This : Set This = FmsHistoryGraph MsgBox "Control initialized" End Sub |
(Obsolete)