Home Up BarRecord BendType Length Status StatusMessages SupportsDimension U W X Y Z T1 T2 OnBendChanged
| |
IBend.Status
Get the status of this bend
Syntax
status =
bend.Status
Parameters
None
Returns
StatusType. The current value of the Status property
Example
This example displays the Status property
Dim status as
StatusType
status = bend.Status
Dim msg as String
Select Case status
Case stOK
msg = "Status is OK"
Case stWarning
msg = "Status is Warning"
Case stError
msg = "Status is Error"
End Select
MsgBox msg
|