Specify width of an Inline frame
ArborX


Summary
Specify width of an Inline frame

This sample when placed inline and formatted will create a frame of 80 x 30mm positioned at 50mm down 70mm accross with the frame name "Simple_1".

 <?frame clear> 1
 <?frame width 80mm> 2
 <?frame height 30mm> 3
 <?frame position 50mm, 70mm> 4
 <?frame raw name "Simple_1"> 5
 <?frame add-to-page> 6
4
Always clear any preexisting frame properties that may be in memory, otherwise they could get applied to the frame that you are creating.
6
The width of the frame.
8
The height of the frame.
10
The position of your frame.
12
Give the frame a name. This is because frames are always referred to by name if they require modification (the frame number is never used). This is also useful because of the way auto frames are handled internally - the name is required to uniquely identify a frame. This is particularly important for the autocopy feature, and for killing frames.
14
Always add to page (this actually adds the frame to the page).

Document created on 07-Apr-2003 (revision 001)