PPT: Using LeftMargin or FirstMargin Yields Unexpected Results

Last reviewed: February 5, 1998
Article ID: Q173126
The information in this article applies to:
  • Microsoft PowerPoint 98 Macintosh Edition
  • Microsoft PowerPoint 97 for Windows

SYMPTOMS

If you create a Microsoft Visual Basic for Applications macro or procedure to modify the LeftMargin and FirstMargin properties of the RulerLevel class, some values that are assigned to these properties produce unexpected results.

CAUSE

This problem occurs because the LeftMargin and FirstMargin properties allow you to assign invalid values to the properties.

STATUS

Microsoft is researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

There are five RulerLevel classes, each of which corresponds to a possible indent level. The FirstMargin and LeftMargin values of RulerLevel 1 have a valid range of (-9.0 to 4,095.0). The valid range of values for the FirstMargin and LeftMargin properties for RulerLevel classes 2 through 4 are described as follows.

For each RulerLevel L in the set {2, 3, 4, 5}, the following equations describe the minimum value for the FirstMargin and LeftMargin properties:

   Min(RulerLevel(L).FirstMargin) = Max(RulerLevel(L-1).FirstMargin,
                                        RulerLevel(L-1).LeftMargin) + 9

   Min(RulerLevel(L).LeftMargin) = Max(RulerLevel(L-1).FirstMargin,
                                       RulerLevel(L-1).LeftMargin) + 9

If you assign a value that is between 4,096 and 8,182 to the FirstMargin or LeftMargin property, a sign bit is switched. The resulting values range from -4,096 to -10; these values are invalid. Assigning values that range from 8,183 to 8,191 results in values that range from -9 to -1; these values are valid.


Additional query words: 8.00 ppt8 vba vbe macppt
Keywords : kbprg PgmOthr
Version : WINDOWS:97; MACINTOSH:98
Platform : MACINTOSH WINDOWS
Hardware : MAC x86
Issue type : kbprb
Solution Type : kbpending


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 5, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.