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

EDITBALLOONTIP (Structures)
 
.
Summary
Contains information about a balloon tip associated with a button control.

C# Definition:

const int TTI_NONE = 0;
const int TTI_INFO = 1;
const int TTI_WARNING = 2;
const int TTI_ERROR = 3;

[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Unicode)]
struct EDITBALLOONTIP
{
     public int cbStruct;
     public string pszTitle;
     public string pszText;
     public int ttiIcon;
struct EDITBALLOONTIP {
   public TODO;
}

VB Definition:

Const TTI_NONE As Integer = 0
Const TTI_INFO As Integer = 1
Const TTI_WARNING As Integer = 2
Const TTI_ERROR As Integer = 3

<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)> _
Structure EDITBALLOONTIP
   Public cbStruct As Integer
   Public pszTitle As String
   Public pszText As String
   Public ttiIcon As Integer
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • alternate definitions?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions