Spread Windows Forms 12.0 Product Documentation
BackColor Property (AutoCompleteHighlightStyle)
Example 


GrapeCity.Win.PluginInputMan Assembly > GrapeCity.Win.Spread.InputMan.CellType Namespace > AutoCompleteHighlightStyle Class : BackColor Property
Gets or sets the background color of the highlighted string.
Syntax
'Declaration
 
Public Property BackColor As Color
'Usage
 
Dim instance As AutoCompleteHighlightStyle
Dim value As Color
 
instance.BackColor = value
 
value = instance.BackColor
public Color BackColor {get; set;}

Property Value

A System.Drawing.Color value that indicates the background color of the highlighted string. Default value is Color.Empty, which means do not paint the background of the highlighted string.
Example
This example uses the BackColor property.
GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType inputcell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
inputcell1.AcceptsArrowKeys = FarPoint.Win.SuperEdit.AcceptsArrowKeys.AllArrows;            
inputcell1.DisplayAlignment = GrapeCity.Win.Spread.InputMan.CellType.DisplayAlignment.Distributed;
AutoCompleteStringCollection acsc = new AutoCompleteStringCollection();
acsc.AddRange(new string[] { "One", "Two", "Three", "Four" });
inputcell1.AutoCompleteCustomSource  = acsc;
inputcell1.AutoCompleteMode = AutoCompleteMode.Suggest;
inputcell1.AutoCompleteSource = AutoCompleteSource.CustomSource;
inputcell1.AutoComplete.HighlightStyle.BackColor = Color.Crimson;
inputcell1.AutoComplete.HighlightMatchedText = true;
fpSpread1.Sheets[0].Cells[1, 1].CellType = inputcell1;
Dim inputcell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType
inputcell1.AcceptsArrowKeys = FarPoint.Win.SuperEdit.AcceptsArrowKeys.AllArrows
inputcell1.DisplayAlignment = GrapeCity.Win.Spread.InputMan.CellType.DisplayAlignment.Distributed
Dim acsc As New AutoCompleteStringCollection
acsc.AddRange(New String() {"One", "Two", "Three", "Four"})
inputcell1.AutoCompleteCustomSource = acsc
inputcell1.AutoCompleteMode = AutoCompleteMode.Suggest
inputcell1.AutoCompleteSource = AutoCompleteSource.CustomSource
inputcell1.AutoComplete.HighlightStyle.BackColor = Color.Crimson
inputcell1.AutoComplete.HighlightMatchedText = True
fpSpread1.Sheets(0).Cells(1, 1).CellType = inputcell1
See Also

Reference

AutoCompleteHighlightStyle Class
AutoCompleteHighlightStyle Members