Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "Escape" in [All]

Structures

.

        /// Virtual keycode used to terminate streaming capture. The default value is VK_ESCAPE.

.

        ''' Virtual keycode used to terminate streaming capture. The default value is VK_ESCAPE.

.

        ESCAPE = 0x1B,

.

        ESCAPE = 1,

.

            public int lfEscapement = 0;

.

            public int lfEscapement;

.

                sb.AppendFormat("   lfEscapement: {0}\n", lfEscapement);

.

    Public lfEscapement As Int32

.

     Public lfEscapement As Integer

.

     sb.AppendFormat("   lfEscapement: {0}" & vbLf, lfEscapement)

kernel32

.
Summary
.

static extern bool EscapeCommFunction(IntPtr hFile, uint dwFunc);

.

static extern bool EscapeCommFunction(IntPtr hFile, ExtendedFunctions dwFunc);

.
Documentation
[EscapeCommFunction] on MSDN

shlwapi

.

      return Uri.UnescapeDataString(relativeUri.OriginalString);

winhttp

.

     ESCAPE_PERCENT = 0x00000004,

.

     ESCAPE_DISABLE = 0x00000040,

.

     ESCAPE_DISABLE_QUERY = 0x00000080,

coredll

.

static extern int ExtEscape (IntPtr hdc, uint nEscape, uint cbInput, byte[] lpszInData, int cbOutput, IntPtr lpszOutData);

.

// GDI Escapes for ExtEscape()

.

    ExtEscapeSet(hdc, SETPOWERMANAGEMENT, size, vpm, 0, IntPtr.Zero);

.
Documentation
ExtEscape @msdn on MSDN
.
Summary
The ExtEscape function enables applications to access capabilities of a particular device that are not available through GDI.
.

static extern int ExtEscape(

.

        uint nEscape,

.

Declare Function ExtEscapeSet Lib "coredll" Alias "ExtEscape" (ByVal hdc As IntPtr, _

.

                          ByVal nEscape As Int32, _

.

    // GDI Escapes for ExtEscape()

.

        ExtEscapeSet(hdc, SETPOWERMANAGEMENT, size, vpm, 0, IntPtr.Zero);

.

    [DllImport("coredll", EntryPoint="ExtEscape")]

.

    private static extern int ExtEscapeSet(

.

        uint nEscape,

.
Documentation
[ExtEscape] on MSDN

user32

.

                VK_ESCAPE = 0x1B,

.

    VK_ESCAPE    = 0x1B,

.

        public int lfEscapement;

.

                  lfHeight = lfWidth = lfEscapement = lfOrientation = lfWeight = 0;

.

        RegisterHotKey(Me.Handle, hotKeyID, 0, Keys.Escape)

.

Public Const VK_ESCAPE = &H1B 'esc

.

    public const uint VK_ESCAPE = 0x1B;

Enums

.

    /// using the EscapeCommFunction function.

.

    /// adjust the line by using the EscapeCommFunction function.

.

        Escape = 0x1B,

.

    VK_ESCAPE = &H1B        ' // [Escape] = 027

17: VK
.

        ESCAPE = 0x1B,

.

    ESCAPE = 27

gdi32

.

    public int lfEscapement;

.

    lf.lfEscapement = 0;

.

            public Int32 lfEscapement;

.

    public int lfEscapement;

.

    lf.lfEscapement = 0;

.

            public Int32 lfEscapement;

20: Escape
.

static extern int Escape(IntPtr hdc, int nEscape, int cbInput,

.
Documentation
[Escape] on MSDN
.
Summary
.

static extern int ExtEscape(IntPtr hdc, int nEscape, int cbInput,

.

    Public Shared Function ExtEscape(ByVal hdc As IntPtr, ByVal nEscape As Integer, ByVal cbInput As Integer, ByVal lpszInData As String, ByVal cbOutput As Integer, ByRef lpszOutData As IntPtr) As Integer

.

                int test=ExtEscape( hDC, QUERYESCSUPPORT, 4, BLOB, 0, IntPtr.Zero);

.

                    test = ExtEscape(hDC,QUERYESCSUPPORT,isz,BLOB,0, IntPtr.Zero);

.
Documentation
[ExtEscape] on MSDN
.

        // Printing related DeviceCaps. These replace the appropriate Escapes

.

    ' Printing related DeviceCaps. These replace the appropriate Escapes


 
Access PInvoke.net directly from VS: