Chili.Opf3 Send comments on this topic.
Rights Property
See Also 
Chili.Opf3 Namespace > PersistentAttribute Class : Rights Property




Specifies the rights of the persistent object.

Syntax

Visual Basic (Declaration) 
Public Property Rights As PersistentRights
Visual Basic (Usage)Copy Code
Dim instance As PersistentAttribute
Dim value As PersistentRights
 
instance.Rights = value
 
value = instance.Rights
C# 
public PersistentRights Rights {get; set;}
Managed Extensions for C++ 
public: __property PersistentRights get_Rights();
public: __property void set_Rights( 
   PersistentRights value
);
C++/CLI 
public:
property PersistentRights Rights {
   PersistentRights get();
   void set (PersistentRights value);
}

Return Value

The rights of the persistent object.

Remarks

Specifies the rights of the persistent object. Some persistent may only be allowed to be loaded and not saved (aka. read-only persistent objects). This property is used to grant those rights.

By default the persistent object has all rights: see PersistentRights.All.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also