CellData
Class
Represents a cell data.
Definition
Namespace:Telerik.WinControls.UI.RichTextEditorRibbonUI
Assembly:Telerik.WinControls.RichTextEditor.dll
Syntax:
C#
public class CellData : INotifyPropertyChanged
Inheritance: objectCellData
Implements:
Constructors
Initializes a new instance of the CellData class.
C#
public CellData(Color background, Color foreColor, TableGalleryItemBorders borders, Padding rightBorderMargin, Padding bottomBorderMargin)
The background.
foreColorColorColor of the fore.
bordersTableGalleryItemBordersThe borders.
rightBorderMarginPaddingThe right border margin.
bottomBorderMarginPaddingThe bottom border margin.
Initializes a new instance of the CellData class.
C#
public CellData(Color background, Color foreColor, TableGalleryItemBorders borders)
The background.
foreColorColorColor of the fore.
bordersTableGalleryItemBordersThe borders.
Properties
Gets or sets the background.
C#
public Color Background { get; set; }
The background.
Gets or sets the borders.
C#
public TableGalleryItemBorders Borders { get; set; }
The borders.
Gets or sets the left border margin.
C#
public Padding BottomBorderMargin { get; set; }
The left border margin.
Gets or sets the color of the fore.
C#
public Color ForeColor { get; set; }
The color of the fore.
Gets or sets the right border margin.
C#
public Padding RightBorderMargin { get; set; }
The right border margin.
Methods
Events
Occurs when a property value changes.
C#
public event PropertyChangedEventHandler PropertyChanged
Implements: