Spread for ASP.NET 11 Product Documentation
WatermarkCssClass Property
Example 


FarPoint.Web.Spread.Extender Assembly > FarPoint.Web.Spread.Extender Namespace > TextBoxWatermarkCellType Class : WatermarkCssClass Property
Gets or sets the CSS class to apply to the control when watermarked.
Syntax
'Declaration
 
Public Property WatermarkCssClass As String
'Usage
 
Dim instance As TextBoxWatermarkCellType
Dim value As String
 
instance.WatermarkCssClass = value
 
value = instance.WatermarkCssClass
public string WatermarkCssClass {get; set;}

Property Value

String containing the name of the CSS class
Example
This example creates a watermark cell type.
FarPoint.Web.Spread.Extender.TextBoxWatermarkCellType tb = new FarPoint.Web.Spread.Extender.TextBoxWatermarkCellType();
tb.WatermarkText = "Required";
tb.WatermarkCssClass = "watermarked";
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = tb;

.watermarked {
    height:18px;
    width:150px;
    padding:2px 0 0 2px;
    border:1px solid #BEBEBE;
    background-color:#F0F8FF;
    color:gray;
}
Dim tb As New FarPoint.Web.Spread.Extender.TextBoxWatermarkCellType
tb.WatermarkText = "Required"
tb.WatermarkCssClass = "watermarked"
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = tb

.watermarked {
    height:18px;
    width:150px;
    padding:2px 0 0 2px;
    border:1px solid #BEBEBE;
    background-color:#F0F8FF;
    color:gray;
}
See Also

Reference

TextBoxWatermarkCellType Class
TextBoxWatermarkCellType Members