Share

Autodesk.AutoCAD.Windows.ToolPalette.AccessRight Enumeration

Description

This .NET class wraps the AccessRight ObjectARX class. Specifies catalog item access rights.

Visual Basic

Public Enum AccessRight
  Read = 1
  ReadOnlyFile = 4
  ReadWrite = 2
End Enum

C#

public enum AccessRight {
  Read = 1,
  ReadOnlyFile = 4,
  ReadWrite = 2
}

Members

Members Description
Read = 1 Item is read-only. This flag can be combined with AccessReadOnlyFile. This flag is loaded and saved while loading and saving the item.
ReadOnlyFile = 4 Item was loaded from a read-only file. This flag can be combined with AccessRead or AccessReadWrite. This flag will not be loaded and saved while loading and saving the item.
ReadWrite = 2 Item is read-only. This flag can be combined with AccessReadOnlyFile. This flag is loaded and saved while loading and saving the item.

Was this information helpful?