FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : MessageRowStyle Property |
'Declaration Public Property MessageRowStyle As Appearance
'Usage Dim instance As SheetView Dim value As Appearance instance.MessageRowStyle = value value = instance.MessageRowStyle
public Appearance MessageRowStyle {get; set;}
Spread displays a message row when there are input errors and the browser is a down-level browser (or the FpSpread EnableClientScript property is set to false).
This property is only used for rendering the message row that gets inserted below the edit row when you are editing in a down-level browser (or the FpSpread's EnableClientScript property is set to false). The text tips for showing the error in a up-level browser (and the cell notes) always use the standard ToolTip colors.
FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView; sv.Cells[0, 0].CellType = new FarPoint.Web.Spread.IntegerCellType("Use Numbers"); FpSpread1.EnableClientScript = false; sv.MessageRowStyle.BackColor = Color.Teal; sv.MessageRowStyle.ForeColor = Color.DarkBlue;
Dim sv As FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView sv.Cells(0, 0).CellType = New FarPoint.Web.Spread.IntegerCellType("Use Numbers") FpSpread1.EnableClientScript = False sv.MessageRowStyle.BackColor = Color.Teal sv.MessageRowStyle.ForeColor = Color.DarkBlue
Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional