NodeStyleSpaces.mesa
Doug Wyatt, May 17, 1984 2:16:53 pm PDT
DIRECTORY
NodeStyle USING [Ref];
NodeStyleSpaces: CEDAR DEFINITIONS =
BEGIN
ScreenSpaceWidth:
PROC[style: NodeStyle.Ref]
RETURNS[
REAL];
Returns the width of a space in the screen font for the given style.
PrintSpaceWidth:
PROC[style: NodeStyle.Ref]
RETURNS[
REAL];
Returns the width of a space in the printing font for the given style.
END.