Class ConditionalFormatterProperty
Contains the formatting properties to apply when some condition is met. (Used inside Conditional formatting form)
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class ConditionalFormatterProperty
Constructors
ConditionalFormatterProperty()
Declaration
public ConditionalFormatterProperty()
Properties
ApplyOnSelectedRows
Determines whether to apply this condition on selected rows.
Declaration
public bool ApplyOnSelectedRows { get; set; }
Property Value
System.Boolean
|
CaseSensitive
Determines whether case-sensitive comparisons will be made when evaluating string values.
Declaration
public bool CaseSensitive { get; set; }
Property Value
System.Boolean
|
CellBackColor
Gets or sets the background color to be used for the cell
Declaration
public Color CellBackColor { get; set; }
Property Value
System.Drawing.Color
|
CellFont
Gets or sets the cell font.
Declaration
public Font CellFont { get; set; }
Property Value
System.Drawing.Font
|
CellForeColor
Gets or sets the foreground color to be used for the cell
Declaration
public Color CellForeColor { get; set; }
Property Value
System.Drawing.Color
|
Enabled
Determines whether the condition is enabled (can be evaluated and applied).
Declaration
public bool Enabled { get; set; }
Property Value
System.Boolean
|
RowBackColor
Gets or sets the background color to be used for the entire row
Declaration
public Color RowBackColor { get; set; }
Property Value
System.Drawing.Color
|
RowFont
Gets or sets the font for the entire row.
Declaration
public Font RowFont { get; set; }
Property Value
System.Drawing.Font
|
RowForeColor
Gets or sets the foreground color to be used for the entire row
Declaration
public Color RowForeColor { get; set; }
Property Value
System.Drawing.Color
|
RowTextAlignment
Gets or sets the alignment to be used for the cell values
Declaration
public ContentAlignment RowTextAlignment { get; set; }
Property Value
System.Drawing.ContentAlignment
|
TextAlignment
Gets or sets the alignment to be used for the cell values
Declaration
public ContentAlignment TextAlignment { get; set; }
Property Value
System.Drawing.ContentAlignment
|
Methods
CopyFrom(BaseFormattingObject)
Initializes from the provided conditional format instance.
Declaration
public void CopyFrom(BaseFormattingObject format)
Parameters
BaseFormattingObject
format
|
CopyTo(BaseFormattingObject)
Copies current settings to the provided conditional format instance.
Declaration
public void CopyTo(BaseFormattingObject format)
Parameters
BaseFormattingObject
format
|