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 "GetCurrentConsoleFont" in [All]

kernel32

.

    // http://pinvoke.net/default.aspx/kernel32/GetCurrentConsoleFont.html

.

    static extern bool GetCurrentConsoleFont(

.

    // http://pinvoke.net/default.aspx/kernel32/GetCurrentConsoleFontEx.html

.

    static extern bool GetCurrentConsoleFontEx(

.

Here's a method that uses this method in conjunction with GetCurrentConsoleFont to return the size of the currently selected console font.

.

        bool success = GetCurrentConsoleFont(

.

    extern static bool GetCurrentConsoleFontEx(IntPtr hConsoleOutput, bool bMaximumWindow, [In, Out] CONSOLE_FONT_INFOEX lpConsoleCurrentFont);

.

Declare Function GetCurrentConsoleFontEx Lib "kernel32.dll" (TODO) As TODO

.
Documentation
[GetCurrentConsoleFontEx] on MSDN
.

    extern static bool GetCurrentConsoleFontEx(IntPtr hConsoleOutput, bool bMaximumWindow, [In, Out] CONSOLE_FONT_INFOEX lpConsoleCurrentFont);

.

Declare Function GetCurrentConsoleFontEx Lib "kernel32.dll" (TODO) As TODO

.
Documentation
[GetCurrentConsoleFontEx] on MSDN

 
Access PInvoke.net directly from VS: