Microsoft KB Archive/105988: Difference between revisions

From BetaArchive Wiki
(importing KB archive)
 
m (Text replacement - """ to """)
 
Line 31: Line 31:
   LeftPara        LeftPara()
   LeftPara        LeftPara()
   RightPara        RightPara() </pre>
   RightPara        RightPara() </pre>
This article supplements the information in online Help. To open this Help topic in Word for Windows, click Contents on the Help menu and then choose the &quot;Programming with Microsoft Word&quot; topic. In Word for the Macintosh, click the Help icon, select Microsoft Word Help and choose the &quot;Programming with Microsoft Word&quot; topic.
This article supplements the information in online Help. To open this Help topic in Word for Windows, click Contents on the Help menu and then choose the "Programming with Microsoft Word" topic. In Word for the Macintosh, click the Help icon, select Microsoft Word Help and choose the "Programming with Microsoft Word" topic.


<br />
<br />
Line 60: Line 60:
       For paragraph - 1 To 1
       For paragraph - 1 To 1
         For sentence - 1 To 13
         For sentence - 1 To 13
             Insert &quot;This is Paragraph&quot; + Str$(paragraph) + &quot;. &quot;
             Insert "This is Paragraph" + Str$(paragraph) + ". "
         Next sentence
         Next sentence
         InsertPara
         InsertPara
       Next paragraph
       Next paragraph
       Begin Dialog UserDialog 570, 182, &quot;Microsoft Word&quot;
       Begin Dialog UserDialog 570, 182, "Microsoft Word"
         OKButton 243, 144, 88, 21
         OKButton 243, 144, 88, 21
         GroupBox 39, 5, 243, 129, &quot;These Toggle the Values:&quot;
         GroupBox 39, 5, 243, 129, "These Toggle the Values:"
         PushButton 60, 23, 197, 21, &quot;CenterPara&quot;, .Push1
         PushButton 60, 23, 197, 21, "CenterPara", .Push1
         PushButton 60, 47, 197, 21, &quot;JustifyPara&quot;, .Push2
         PushButton 60, 47, 197, 21, "JustifyPara", .Push2
         PushButton 60, 73, 197, 21, &quot;LeftPara&quot;, .Push3
         PushButton 60, 73, 197, 21, "LeftPara", .Push3
         PushButton 60, 99, 197, 21, &quot;RightPara&quot;, .Push4
         PushButton 60, 99, 197, 21, "RightPara", .Push4
         GroupBox 296, 5, 243, 129, &quot;These Return The Current Value:&quot;
         GroupBox 296, 5, 243, 129, "These Return The Current Value:"
         PushButton 306, 23, 202, 21, &quot;CenterPara()&quot;, .Push5
         PushButton 306, 23, 202, 21, "CenterPara()", .Push5
         PushButton 306, 47, 202, 21, &quot;JustifyPara()&quot;, .Push6
         PushButton 306, 47, 202, 21, "JustifyPara()", .Push6
         PushButton 306, 73, 202, 21, &quot;LeftPara()&quot;, .Push7
         PushButton 306, 73, 202, 21, "LeftPara()", .Push7
         PushButton 306, 99, 202, 21, &quot;RightPara()&quot;, .Push8
         PushButton 306, 99, 202, 21, "RightPara()", .Push8
       End Dialog
       End Dialog
   start:
   start:
Line 82: Line 82:
       If choice - - 1 Then Goto bye
       If choice - - 1 Then Goto bye
       StartOfDocument
       StartOfDocument
       a$ - GetBookmark$(&quot;\para&quot;)
       a$ - GetBookmark$("\para")
       Select Case choice
       Select Case choice
         Case 1
         Case 1
             CenterPara
             CenterPara
             MsgBox &quot;CenterPara has been toggled for paragraph one.&quot;
             MsgBox "CenterPara has been toggled for paragraph one."
         Case 2
         Case 2
             JustifyPara
             JustifyPara
             MsgBox(&quot;JustifyPara has been toggled for paragraph one.&quot;)
             MsgBox("JustifyPara has been toggled for paragraph one.")
         Case 3
         Case 3
             LeftPara
             LeftPara
             MsgBox(&quot;LeftPara has been toggled for paragraph one.&quot;)
             MsgBox("LeftPara has been toggled for paragraph one.")
         Case 4
         Case 4
             RightPara
             RightPara
             MsgBox(&quot;RightPara Has been toggled.&quot;)
             MsgBox("RightPara Has been toggled.")
         Case 5
         Case 5
             If CenterPara() - 1 Then
             If CenterPara() - 1 Then
               MsgBox &quot; CenterPara for paragraph one is on.&quot;
               MsgBox " CenterPara for paragraph one is on."
             Else
             Else
               MsgBox &quot; CenterPara for paragraph one is off.&quot;
               MsgBox " CenterPara for paragraph one is off."
             End If
             End If
         Case 6
         Case 6
             If JustifyPara() - 1 Then
             If JustifyPara() - 1 Then
               MsgBox &quot;Justify for paragraph one is on.&quot;
               MsgBox "Justify for paragraph one is on."
             Else
             Else
               MsgBox &quot;Justify for paragraph one is off.&quot;
               MsgBox "Justify for paragraph one is off."
             End If
             End If
         Case 7
         Case 7
             If LeftPara() - 1 Then
             If LeftPara() - 1 Then
               MsgBox &quot;LeftPara for paragraph one is on.&quot;
               MsgBox "LeftPara for paragraph one is on."
             Else
             Else
               MsgBox &quot;LeftPara for paragraph one is off.&quot;
               MsgBox "LeftPara for paragraph one is off."
             End If
             End If
         Case 8
         Case 8
             If RightPara() - 1 Then
             If RightPara() - 1 Then
               MsgBox &quot;RightPara is on.&quot;
               MsgBox "RightPara is on."
             Else
             Else
               MsgBox &quot;RightPara is Off.&quot;
               MsgBox "RightPara is Off."
             End If
             End If
         Case Else
         Case Else

Latest revision as of 10:11, 20 July 2020

WD: WordBasic Examples: CenterPara, JustifyPara, LeftPara

Q105988



The information in this article applies to:


  • Microsoft Word for Windows, versions 6.0, 6.0a, 6.0c
  • Microsoft Word for Windows NT, version 6.0
  • Microsoft Word for Windows 95, versions 7.0, 7.0a
  • Microsoft Word for the Macintosh, versions 6.0, 6.0.1





SUMMARY

This article contains a sample macro that demonstrates the use of the following WordBasic statements or functions:

   CenterPara       CenterPara()
   JustifyPara      JustifyPara()
   LeftPara         LeftPara()
   RightPara        RightPara() 

This article supplements the information in online Help. To open this Help topic in Word for Windows, click Contents on the Help menu and then choose the "Programming with Microsoft Word" topic. In Word for the Macintosh, click the Help icon, select Microsoft Word Help and choose the "Programming with Microsoft Word" topic.



MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact a Microsoft Certified Partner or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Partners, please see the following page on the World Wide Web:

http://www.microsoft.com/partner/referral/

For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

http://support.microsoft.com/directory/overview.asp

Syntax:

CenterPara       CenterPara()
JustifyPara      JustifyPara()
LeftPara         LeftPara()
RightPara        RightPara() 

Example:

This sample macro inserts a paragraph of text and applies the CenterPara, JustifyPara, LeftPara, and RightPara commands and functions to it. The commands, CenterPara for example, modify the paragraph format. The functions, CenterPara() for example, return a value to the message boxes indicating whether the specified formatting has been applied.

   Sub MAIN
      FileNewDefault
      EditSelectAll
      EditClear
      For paragraph - 1 To 1
         For sentence - 1 To 13
            Insert "This is Paragraph" + Str$(paragraph) + ". "
         Next sentence
         InsertPara
      Next paragraph
      Begin Dialog UserDialog 570, 182, "Microsoft Word"
         OKButton 243, 144, 88, 21
         GroupBox 39, 5, 243, 129, "These Toggle the Values:"
         PushButton 60, 23, 197, 21, "CenterPara", .Push1
         PushButton 60, 47, 197, 21, "JustifyPara", .Push2
         PushButton 60, 73, 197, 21, "LeftPara", .Push3
         PushButton 60, 99, 197, 21, "RightPara", .Push4
         GroupBox 296, 5, 243, 129, "These Return The Current Value:"
         PushButton 306, 23, 202, 21, "CenterPara()", .Push5
         PushButton 306, 47, 202, 21, "JustifyPara()", .Push6
         PushButton 306, 73, 202, 21, "LeftPara()", .Push7
         PushButton 306, 99, 202, 21, "RightPara()", .Push8
      End Dialog
   start:
      Dim dlg As UserDialog
      choice - Dialog(dlg)
      If choice - - 1 Then Goto bye
      StartOfDocument
      a$ - GetBookmark$("\para")
      Select Case choice
         Case 1
            CenterPara
            MsgBox "CenterPara has been toggled for paragraph one."
         Case 2
            JustifyPara
            MsgBox("JustifyPara has been toggled for paragraph one.")
         Case 3
            LeftPara
            MsgBox("LeftPara has been toggled for paragraph one.")
         Case 4
            RightPara
            MsgBox("RightPara Has been toggled.")
         Case 5
            If CenterPara() - 1 Then
               MsgBox " CenterPara for paragraph one is on."
            Else
               MsgBox " CenterPara for paragraph one is off."
            End If
         Case 6
            If JustifyPara() - 1 Then
               MsgBox "Justify for paragraph one is on."
            Else
               MsgBox "Justify for paragraph one is off."
            End If
         Case 7
            If LeftPara() - 1 Then
               MsgBox "LeftPara for paragraph one is on."
            Else
               MsgBox "LeftPara for paragraph one is off."
            End If
         Case 8
            If RightPara() - 1 Then
               MsgBox "RightPara is on."
            Else
               MsgBox "RightPara is Off."
            End If
         Case Else
      End Select
   bye:
   End Sub 

Additional query words:

Keywords : kbmacro kbprg kbdtacode wordnt kbmacroexample ntword macword word6 word7 word95
Issue type : kbhowto
Technology : kbWordSearch kbWordWSearch kbWordMSearch


Last Reviewed: December 29, 2000
© 2001 Microsoft Corporation. All rights reserved. Terms of Use.