WD: WordBasic Examples: FormatRetAddrFonts

ID: Q105863

The information in this article applies to:

SUMMARY

This article contains a sample macro that demonstrates the use of the following WordBasic statement or function:

   FormatRetAddrFonts

This article supplements the information in online Help. To open this Help topic, 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 the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/supportnet/refguide/ 

FormatRetAddrFonts

Syntax:

FormatRetAddrFonts [.Points - number] [, .Underline - number] [, .Color - number] [, .Strikethrough - number] [, .Superscript - number] [, .Subscript - number] [, .Hidden - number] [, .SmallCaps - number] [, .AllCaps - number] [, .Spacing - number] [, .Position - number or text] [, .Kerning - number] [, .KerningMin - number or text] [, .Default] [, .Tab - number] [, .Font - text] [, .Bold - number] [, .Italic - number]

Example:

The following sample macro allows the user to set selected attributes of the return address font.

   Sub MAIN
      FileNewDefault
      Begin Dialog UserDialog 270, 120, "Microsoft Word"
         OKButton 170, 68, 88, 21
         CancelButton 170, 93, 88, 21
         Text 8, 6, 72, 13, "Font Size", .Text1
         Text 6, 64, 81, 13, "Caps Type", .Text2
         OptionGroup  .Size
            OptionButton 21, 21, 113, 16, "10 Point", .OptionButton1
            OptionButton 21, 39, 107, 16, "12 Point", .OptionButton2
         OptionGroup  .Caps
            OptionButton 21, 79, 81, 16, "Normal", .OptionButton3
            OptionButton 21, 97, 112, 16, "Small Caps", .OptionButton4
      End Dialog
      Dim dlg As UserDialog
      GetCurValues dlg
      n - Dialog(dlg)
      If n - 0 Then Goto Bye
      If dlg.Size - 0 Then
         Size - 10
      Else
         Size - 12
      End If
      If dlg.Caps - 0 Then
         Caps - 0
      Else
         Caps - 1
      End If
      FormatRetAddrFonts .Points - Size, .SmallCaps - Caps
      ToolsCreateEnvelope .EnvReturn - "Microsoft" + Chr$(13) + \ 
      "One Microsoft Way", .AddToDocument
   bye:
   End Sub

Additional query words:
Keywords          : kbmacro kbprg kbdtacode wordnt kbmacroexample ntword macword word6 word7 word95 
Version           : WINDOWS:6.0,6.0a,6.0c,7.0,7.0a; MACINTOSH:6.0,6.0.1,6.0.1a
Platform          : MACINTOSH WINDOWS
Issue type        : kbhowto

Last Reviewed: April 9, 1999