1 //
2 // Description:
3 //    SWFFont Interface
4 //
5 // Authors:
6 //    Jonathan Shore <jshore@e-shuppan.com>
7 //    Based on php wrapper developed by <dave@opaque.net>
8 //
9 // Copyright:
10 //    Copyright 2001 E-Publishing Group Inc.  Permission is granted to use or
11 //    modify this code provided that the original copyright notice is included.
12 //
13 //    This software is distributed with no warranty of liability, merchantability,
14 //    or fitness for a specific purpose.
15 //
16 
17 
18 
19 
20 
21 
22 
23 //
24 //  SWFFont Interface
25 //	font specification & attributes
26 //
27 //  Notes
28 //    -
29 //
30 public interface SWFFontI extends SWFObjectI {
31 
32     // public SWFont (String font);
33 
getStringWidth(String string)34     public float	getStringWidth (String string);
getAscent()35     public float	getAscent ();
getDescent()36     public float	getDescent ();
getLeading()37     public float	getLeading ();
38 };
39 
40 
41 
42 
43