ClassAspectPalette
AspectPalette is an Office2007 color palette. It enables you to get the header Aspect colors, the generated Aspect colors as well as all the colors.
Definition
Namespace:Telerik.Windows.Controls.ColorPicker
Assembly:Telerik.Windows.Controls.Input.dll
Syntax:
public class AspectPalette : OfficeColorPalette
Inheritance: objectColorPaletteBaseOfficeColorPaletteAspectPalette
Inherited Members
Constructors
AspectPalette()
Declaration
public AspectPalette()
Methods
GetColors()
GetColors represent all the colors in the Aspect including header and main palette colors.
Declaration
public override IEnumerable<Color> GetColors()
Returns
IEnumerable<Color>
Returns a collection of all colors: header and main.
Overrides
GetGeneratedColors()
GetGeneratedColors is used when you want to get only the generated(the production from the base colors) colors for the Aspect Office palette.
Declaration
public override IEnumerable<Color> GetGeneratedColors()
Returns
IEnumerable<Color>
Returns a collection of the generated colors.
Overrides
GetHeaderColors()
GetHeaderColors is used when you want to get only the base(header) colors for the Aspect Office palette.
Declaration
public override IEnumerable<Color> GetHeaderColors()
Returns
IEnumerable<Color>
Returns a collection of the header colors.
Overrides