AutoResave property

Returns or sets whether the specified Web page is automatically updated whenever the map file with which it's associated is modified and saved. The AutoResave property default is False on new SavedWebPage objects. Read/write Boolean.

Applies to

Objects:  SavedWebPage

Syntax

object.AutoResave

Parameters

Part Description
object Required. An expression that returns a SavedWebPage object.

Example

    Sub UseAutoResave()

  Dim objApp As New MapPoint.Application   Dim objMap As MapPoint.Map   Dim objRoute As MapPoint.Route   Dim objSW As MapPoint.SavedWebPage
  'Set up the application   Set objMap = objApp.ActiveMap   Set objRoute = objMap.ActiveRoute   objApp.Visible = True   objApp.UserControl = True
  'Create a route   objRoute.Waypoints.Add objMap.FindResults("Seattle, WA").Item(1)   objRoute.Waypoints.Add objMap.FindResults("Redmond, WA").Item(1)   objRoute.Calculate
  'Create a saved Web page, zoomed in on first waypoint   Set objSW = objMap.SavedWebPages.Add("SavedWeb", _     objRoute.Waypoints.Item(1).Location, "New Title", _     True, False, True, 200, 400, False, True, False, True)   objSW.Save
  'Update Web page when associated map file is modified   objSW.AutoResave = True
  End Sub

Note  This sample code is specific for use in MapPoint North America; it is for illustration purposes only.