home *** CD-ROM | disk | FTP | other *** search
/ An Introduction to Progr…l Basic 6.0 (4th Edition) / An Introduction to Programming using Visual Basic 6.0.iso / COMMON / TOOLS / VB / CABINETS / MSDAO350.CAB / icontrols / RichText / CHARFORMAT.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-01-08  |  951 b   |  16 lines

  1. package icontrols.RichText;
  2.  
  3. import com.ms.dll.DllLib;
  4.  
  5. public class CHARFORMAT {
  6.    public int cbSize = DllLib.sizeOf(this);
  7.    public int dwMask;
  8.    public int dwEffects;
  9.    public int yHeight;
  10.    public int yOffset;
  11.    public int crTextColor;
  12.    public byte bCharSet;
  13.    public byte bPitchAndFamily;
  14.    public char[] szFaceName = new char[32];
  15. }
  16.