Jump to content

NOTEBOOKBUTTON: Difference between revisions

From EDM2
Created page with "Notebook button data structure for use with the BKM_SETNOTEBOOKBUTTONS message. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _NOTEBOOKBUTTON { PSZ pszText; Button text: ULONG idButton; Button ID: LHANDLE hImage; Handle for button or icon.: LONG flStyle; Button style.: } NOTEBOOKBUTTON; typedef NOTEBOOKBUTTON * PNOTEBOOKBUTTON ; </pre> Category:Data..."
 
(No difference)

Latest revision as of 01:50, 21 April 2025

Notebook button data structure for use with the BKM_SETNOTEBOOKBUTTONS message.

Type

struct

C Declaration Method

typedef

Example Code


typedef struct _NOTEBOOKBUTTON {
  PSZ         pszText;   /*  Button text */
  ULONG       idButton;  /*  Button ID */
  LHANDLE     hImage;    /*  Handle for button or icon. */
  LONG        flStyle;   /*  Button style. */
} NOTEBOOKBUTTON;

typedef   NOTEBOOKBUTTON   * PNOTEBOOKBUTTON ;