Sends a status message with option detail to screen.
Namespace: ScreenUPG
Assembly: ScreenUPG (in ScreenUPG.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Sub SendStatus( _ ByVal type As Integer, _ Optional ByRef detail As Byte = System.Reflection.Missing _ ) |
C# |
---|
public void SendStatus( int type, [OptionalAttribute] ref byte detail ) |
C++ |
---|
public: void SendStatus( int type, [OptionalAttribute] char% detail ) sealed |
J# |
---|
public void SendStatus( int type, /** @attribute OptionalAttribute() */ byte detail ) |
JScript |
---|
public
function SendStatus( type : int, OptionalAttribute detail : Byte ) |
Parameters
- type
- Status message type to send.
- detail
- null or byte[] of status message detail if required.
Return Value
The status of the operation.
Remarks
.NET applications should call
Example
[VB]
![]() | |
---|---|
Dim detail As Byte() Dim type As Long 'TODO: Fill in type and detail type = 42 ReDim detail(4) detail(0) = 0 detail(1) = 1 detail(2) = 2 detail(3) = 3 m_screen.SendStatus type, detail 'Or if no detail is required m_screen.SendStatus type |