Spread Windows Forms 7.0 Product Documentation
LockForeColor Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : LockForeColor Property


Glossary Item Box

Gets or sets the foreground color of locked cells on this sheet.

Syntax

Visual Basic (Declaration) 
Public Property LockForeColor As Color
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim value As Color
 
instance.LockForeColor = value
 
value = instance.LockForeColor
C# 
public Color LockForeColor {get; set;}

Property Value

Color object containing the text color for locked cells

Example

This example specifies the background color and text color for locked cells.
C#Copy Code
fpSpread1.ActiveSheet.LockBackColor = Color.Red;
fpSpread1.ActiveSheet.LockForeColor = Color.Gray;
fpSpread1.ActiveSheet.Cells[0, 0, 4, 4].Locked = true;
fpSpread1.ActiveSheet.Cells[0, 0, 4, 4].Text = "Locked";
Visual BasicCopy Code
FpSpread1.ActiveSheet.LockBackColor = Color.Red
FpSpread1.ActiveSheet.LockForeColor = Color.Gray
FpSpread1.ActiveSheet.Cells(0, 0, 4, 4).Locked = True
FpSpread1.ActiveSheet.Cells(0, 0, 4, 4).Text = "Locked"

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

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