AVEVA OMI Software Developer Kit



PropertyOverrides Property
Gets or sets the property overrides. This is array of key (property name), it's value and is constant or reference.
Syntax
'Declaration
 
<SuppressMessageAttribute("Microsoft.Performance", 
   "CA1819:PropertiesShouldNotReturnArrays", 
   Justification="Life is not easy")>
Public Property PropertyOverrides As PropertyOverride()
'Usage
 
Dim instance As ContentInfo
Dim value() As PropertyOverride
 
instance.PropertyOverrides = value
 
value = instance.PropertyOverrides
[SuppressMessage("Microsoft.Performance", 
   "CA1819:PropertiesShouldNotReturnArrays", 
   Justification="Life is not easy")]
public PropertyOverride[] PropertyOverrides {get; set;}
[SuppressMessage("Microsoft.Performance", 
   "CA1819:PropertiesShouldNotReturnArrays", 
   Justification="Life is not easy")]
public:
property array<PropertyOverride^>^ PropertyOverrides {
   array<PropertyOverride^>^ get();
   void set (    array<PropertyOverride^>^ value);
}

Property Value

The property overrides.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also