...
Namespace: JollyGiant.Emulation
Assembly: JGSComdotNet (in JGSComdotNet.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C# |
---|
public StatusCode GetScreenWithAttribs( out byte[] screen ) |
Visual Basic (Declaration) |
---|
Public Function GetScreenWithAttribs ( _ <OutAttribute> ByRef screen As Byte() _ ) As StatusCode |
Visual C++ |
---|
public: virtual StatusCode GetScreenWithAttribs( [OutAttribute] array<unsigned char>^% screen ) sealed |
JavaScript |
---|
function GetScreenWithAttribs(screen); |
Parameters
screen
Type: System.Byte []
Buffer for the screen contents.
...
This can be one of the following values:
Status code | Description |
---|---|
Ok | Session presentation space successfully copied to the buffer; the session is active and the keyboard is unlocked. |
WHLLNOTCONNECTED | Your application is not currently connected to a session (see Connect(Object)). |
WHLLPSBUSY | Session presentation space successfully copied to the screen buffer; the session is waiting for a host response. |
WHLLINHIBITED | Session presentation space successfully copied to the screen buffer; the keyboard is locked. |
WHLLSYSERROR | The method failed due to a system error. |
Implements
IScreen.GetScreenWithAttribs(Byte[])
...