Spread Windows Forms 12.0 Product Documentation
UnknownTextStyle Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.CellType Namespace > ColorPickerCellType Class : UnknownTextStyle Property
Gets or sets the style of text for unknown colors.
Syntax
'Declaration
 
Public Property UnknownTextStyle As UnknownTextStyle
'Usage
 
Dim instance As ColorPickerCellType
Dim value As UnknownTextStyle
 
instance.UnknownTextStyle = value
 
value = instance.UnknownTextStyle
public UnknownTextStyle UnknownTextStyle {get; set;}
Example
This example creates a ColorPicker cell type.
FarPoint.Win.Spread.CellType.ColorPickerCellType cp = new FarPoint.Win.Spread.CellType.ColorPickerCellType();
cp.AllowFullOpen = true;
cp.AnyColor = false;
cp.Caption = "ColorPicker";
cp.CustomColors = new int[] {255, 190, 50};
cp.FullOpen = true;
cp.UnknownText = "Custom Color";
cp.UnknownTextStyle = FarPoint.Win.Spread.CellType.UnknownTextStyle.Custom;
cp.Style = FarPoint.Win.Spread.CellType.ColorPickerStyle.BoxedWithText;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = cp;
Dim cp As New FarPoint.Win.Spread.CellType.ColorPickerCellType
cp.AllowFullOpen = True
cp.AnyColor = True
cp.CustomColors = New Integer() {255, 190, 50}
cp.Caption = "ColorPicker"
cp.FullOpen = True
cp.UnknownText = "FarPoint"
cp.UnknownTextStyle = FarPoint.Win.Spread.CellType.UnknownTextStyle.Custom
cp.Style = FarPoint.Win.Spread.CellType.ColorPickerStyle.BoxedWithText
fpSpread1.ActiveSheet.Cells(0, 0).CellType = cp
See Also

Reference

ColorPickerCellType Class
ColorPickerCellType Members