Newsgroups: comp.windows.interviews Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!think.com!snorkelwacker.mit.edu!stanford.edu!rigel.csc.ti.com!sung From: sung@rigel.csc.ti.com ("Helen Chang ", sung@csc.ti.com) Subject: fixedspan Message-ID: <9105171958.AA05761@rigel.csc.ti.com> Sender: news@shelby.stanford.edu (USENET News System) Organization: Internet-USENET Gateway at Stanford University Date: Fri, 17 May 1991 19:58:30 GMT Lines: 16 Suppose Glyph* in = ...; y is Dimension, and size is Coord. FixedSpan* out = new FixedSpan( in, y, size); If the natural size of "in" is smaller than the "size" specified, is "in" always lay in the middle of "out"? I have a program in which "in" grew larger, but it only redrew on the lower part of the "out" area. How may I adjust "in" so that it is aligned to to top of "out"? Or should I use something other than FixedSpan in the first place? Thanks in advance.