public GridTableCellAppearance Appearance
{
get
{
if (appearance == null)
{
appearance = new GridTableCellAppearance(this);
appearance.PropertyFilter = GridTableCellAppearance.ColumnDescriptorPropertyFilter;
}
return appearance;
}
set
{
if (value != null)
Appearance.InitializeFrom(value);
else
ResetAppearance();
}
}
///
/// Maintains a collection of base styles. Users can add BaseStyles to the engine (also in design-time) and
/// then inherit style settings through the GridStyleInfo.BaseStyle property in
/// property of .
///
public GridTableBaseStyleCollection BaseStyles