MESCIUS SPREAD for ASP.NET 10.0J
WatermarkText プロパティ

ウォーターマーク状態のときにコントロールに配置するテキストを取得または設定します。
構文
'Declaration
 
Public Property WatermarkText As String
public string WatermarkText {get; set;}

プロパティ値

ウォーターマークのテキストを含むString
次のサンプルコードは、ウォーターマークセル型を作成します。
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;
}
参照

TextBoxWatermarkCellType クラス
TextBoxWatermarkCellType メンバ

 

 


© MESCIUS inc. All rights reserved.