CellData
Represents a cell data.
Definition
Namespace:Telerik.Windows.Controls.RichTextBoxUI.RibbonControls.TableStylesGallery.Models
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public class CellData : INotifyPropertyChanged
Inheritance: objectCellData
Implements:
Constructors
Initializes a new instance of the CellData class.
public CellData(Color background, Color foreColor, TableGalleryItemBorders borders, Thickness rightBorderMargin, Thickness bottomBorderMargin)
The background.
foreColorColorColor of the fore.
bordersTableGalleryItemBordersThe borders.
rightBorderMarginThicknessThe right border margin.
bottomBorderMarginThicknessThe bottom border margin.
Initializes a new instance of the CellData class.
public CellData(Color background, Color foreColor, TableGalleryItemBorders borders)
The background.
foreColorColorColor of the fore.
bordersTableGalleryItemBordersThe borders.
Initializes a new instance of the CellData class.
public CellData(Color backgroundColor, Color foreColor)
Color of the background.
foreColorColorColor of the fore.
Properties
Background
Color
Gets or sets the background.
public Color Background { get; set; }
The background.
Gets or sets the borders.
public TableGalleryItemBorders Borders { get; set; }
The borders.
BottomBorderMargin
Thickness
Gets or sets the left border margin.
public Thickness BottomBorderMargin { get; set; }
The left border margin.
ForeColor
Color
Gets or sets the color of the fore.
public Color ForeColor { get; set; }
The color of the fore.
RightBorderMargin
Thickness
Gets or sets the right border margin.
public Thickness RightBorderMargin { get; set; }
The right border margin.
Methods
Events
Occurs when a property value changes.
public event PropertyChangedEventHandler PropertyChanged
Implements: