Share

Autodesk.AutoCAD.Windows.ToolPalette.SaveFlags Enumeration

Description

This .NET enum wraps the AcTc.SaveOption ObjectARX enum.

It enumerates options for saving catalog item data.

Visual Basic

Public Enum SaveFlags
  SaveAnsi = &H20
  SaveAs = 8
  SaveImages = 4
  SaveLinksAsEmbedded = 2
  SaveLinksAsLinks = 1
  SaveOverlayImages = &H10
End Enum

Members

Members Description
SaveImages = 4 Saves all images, including those that have not changed. If this option is not specified, saves only those images that have been modified and those whose destination files differ from their source files. Use this option only to force saving of all the images.
SaveLinksAsEmbedded = 2 Embeds all linked items in this item and save them to the specified archive. Linked items become embedded items. Linked items are saved if either SaveLinksAsLinks or SaveLinksAsEmbedded is specified.
SaveLinksAsLinks = 1 Saves linked items into their own linked files, thus preserving the links. Linked items are saved if either SaveLinksAsLinks or SaveLinksAsEmbedded is specified.

Was this information helpful?