ScreenUPG Namespace > ScreenUPG Class > SendStatus Method : SendStatus(Int32,SByte[]) Method |
'Declaration
Public Overloads Function SendStatus( _ ByVal type As Integer, _ ByVal detail() As SByte _ ) As Integer
'Usage
Dim instance As ScreenUPG Dim type As Integer Dim detail() As SByte Dim value As Integer value = instance.SendStatus(type, detail)
public: int SendStatus( int type, array<sbyte>^ detail )
sbyte[] detail = new sbyte[4] {0, 1, 2, 4}; int type = 42; // TODO: Fill in type and data in sbyte array m_screen.SendStatus(type, detail); // Or if no detail is required m_screen.SendStatus(type, null);
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2