Class StyleProperty
- Namespace
- PolarStudio
- Assembly
- PolarStudio.dll
This class contains the specifics of one specific style property
public class StyleProperty
- Inheritance
-
StyleProperty
- Inherited Members
- Extension Methods
Properties
Name
The name of the property, including dashes if applicable, like 'background-color' or 'margin'
public string Name { get; }
Property Value
OverruledValue
This property gets/sets an overruled value. This means a specific value is used now, but will be reverted to the original value once the web request has been fully processed.
public string OverruledValue { get; set; }
Property Value
Value
The string based value of this property. Will automatically switch between the FormView value and ListView value. When setting, both the FormView value and ListView value are set.
public string Value { get; set; }
Property Value
ValueFormView
This property gets/sets the value specific for FormView
public string ValueFormView { get; set; }
Property Value
ValueListView
This property gets/sets the value specific for ListView
public string ValueListView { get; set; }