home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 14 / IOPROG_14.ISO / soft / sdkjava / sdkjava.exe / SDKJava.cab / Src / Win32Api / LVCOLUMN_T.java < prev    next >
Encoding:
Java Source  |  1998-03-05  |  777 b   |  26 lines

  1. // Copyright (C) 1998 Microsoft Corporation  All Rights Reserved
  2.  
  3. // These classes provide direct, low-overhead access to commonly used
  4. // Windows api. These classes use the new J/Direct feature.
  5. //
  6. // Information on how to use J/Direct to write your own declarations
  7. // can be found in the Microsoft SDK for Java 2.0.
  8.  
  9. package com.ms.win32;
  10.  
  11. /** @dll.struct(pack=1, auto) */
  12. /**
  13.  * LVCOLUMN_T is useful only for setting column information via Windows
  14.  * messages LVM_SETCOLUMN and LVM_INSERTCOLUMN.
  15.  */
  16. public class LVCOLUMN_T
  17. {
  18.     public int      mask;
  19.     public int      fmt;
  20.     public int      cx;
  21.     public String   pszText;
  22.     public int      cchTextMax;
  23.     public int      iSubItem;
  24.     public int        iImage;
  25.     public int      iOrder;
  26. }