Spread Windows Forms 6.0 Product Documentation
ContainsSelection Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Appearance Class : ContainsSelection Property


Glossary Item Box

Gets or sets whether the rendered item should paint as if it is selected.

Syntax

Visual Basic (Declaration) 
Public Property ContainsSelection As Boolean
Visual Basic (Usage)Copy Code
Dim instance As Appearance
Dim value As Boolean
 
instance.ContainsSelection = value
 
value = instance.ContainsSelection
C# 
public bool ContainsSelection {get; set;}

Property Value

Boolean: true the appearance should look as if it is in a selection; false otherwise

Example

This example creates a new appearance.
C#Copy Code
FarPoint.Win.Spread.Appearance appr = new FarPoint.Win.Spread.Appearance(Color.Beige, Color.Blue, new Font("Comic Sans MS",
10), FarPoint.Win.Spread.CellHorizontalAlignment.Distributed, FarPoint.Win.Spread.CellVerticalAlignment.Distributed, true,
true, Color.Bisque, Color.Brown, Color.Red, 
Color.Yellow, FarPoint.Win.VisualStyles.Off, FarPoint.Win.Spread.SortState.None, FarPoint.Win.Spread.FilterState.None, true,
true, false, false); 
appr.ContainsSelection = false; 
appr.TextIndent = 20; 
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo(); 
si.SetAppearance(appr); 
fpSpread1.ActiveSheet.SetStyleInfo(-1, -1, si);
Visual BasicCopy Code
Dim appr As New FarPoint.Win.Spread.Appearance(Color.Beige, Color.Blue, New Font("Comic Sans MS", 10), FarPoint.Win.Spread.CellHorizontalAlignment.Distributed,
FarPoint.Win.Spread.CellVerticalAlignment.Distributed, True, True, Color.Bisque, Color.Brown, Color.Red, Color.Yellow, FarPoint.Win.VisualStyles.Off,
FarPoint.Win.Spread.SortState.None, FarPoint.Win.Spread.FilterState.None, True, True, False, False)
appr.ContainsSelection = False
appr.TextIndent = 20
Dim si As New FarPoint.Win.Spread.StyleInfo
si.SetAppearance(appr)
FpSpread1.ActiveSheet.SetStyleInfo(-1, -1, si)

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.