PriFormat Property

Visio Save As Web Reference

Specifies the primary output format for the Web page. Read/write.

Syntax

expression.PriFormat

expression   An expression that returns a VisWebPageSettings object.

Return Value
String

Remarks

If you select a primary output format that is not supported by all browsers, you should also select a secondary output format for older browsers. To do this, see the SecFormat property.

For information about which browsers are compatible with selected formats, see the AltFormat property.

Possible values for the PriFormat property are as follows:

  • SVG (Scalable Vector Graphics)
  • JPG (JPEG File Interchage Format)
  • GIF (Graphics Interchange Format)
  • PNG (Portable Network Graphics)
  • VML (Vector Markup Language)

This value corresponds to the value selected in the Output formats list on the Advanced tab of the Save as Web Page dialog box (on the File menu, click Save as Web Page, click Publish, and then click Advanced).

Example

The following macro shows how use the PriFormat property to set the primary output format for the Web page to JPG.

Before running this macro, replace path\filename.htm with a valid target path on your computer and the filename that you want to assign to your Web page.

Visual Basic for Applications
  Public Sub PriFormat_Example()
    Dim vsoSaveAsWeb As VisSaveAsWeb 
    Dim vsowebSettings As VisWebPageSettings
Set vsoSaveAsWeb = Visio.Application.SaveAsWebObject 
Set vsoWebSettings = vsoSaveAsWeb.WebPageSettings

With vsoWebSettings
    .PriFormat = "JPG"
    .TargetPath = "<em>path\filename.htm</em>" 
End With

vsoSaveAsWeb.CreatePages

End Sub

See Also