Share

Autodesk.AutoCAD.Windows.ToolPalette.LoadFlags Enumeration

Description

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

It enumerates options for loading catalog item data.

Visual Basic

Public Enum LoadFlags
  LoadImages = 2
  LoadLinks = 1
End Enum

C#

public enum LoadFlags {
  LoadImages = 2,
  LoadLinks = 1
}

Members

Members Description
LoadImages = 2 Loads images while loading the item. If this option is not set, the images are loaded on demand. Use this option only if it is necessary to load images "up front," because statically loaded images unnecessarily occupy memory while not in use.
LoadLinks = 1 Load linked items also.

Was this information helpful?