PropertyOverrides Property
- Last UpdatedAug 21, 2026
- 1 minute read
Gets or sets the property overrides. This is array of key (property name), it's value and is constant or reference.
'Declaration
<SuppressMessageAttribute("Microsoft.Performance",
"CA1819:PropertiesShouldNotReturnArrays",
Justification="Life is not easy")>
Public Property PropertyOverrides As PropertyOverride()
[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);
}