EDITBALLOONTIP (Structures)
Last changed: -4.238.130.236

.
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;
}

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