PowerTools SPREAD for ASP.NET 8.0J
CellCssClass プロパティ

このセル型を含むセルのCSSクラス名を取得または設定します。
構文
'Declaration
 
Public Property CellCssClass As String
public string CellCssClass {get; set;}
解説
このプロパティは、ShowEditorプロパティがTrueに設定されている場合にテーブルセルにCSSスタイルを適用します。
次のサンプルコードは、CellCssClassプロパティを設定します。
<head runat="server">
    <title>Untitled Page</title>
    <style type="text/css">
    .TextCellTypeCssClass
    {
    background-color: beige;
    border: solid 5px orange;
    vertical-align:top;
    }
    .TextCellCssClass
    {
    background-color:Black;
    color: Lime;
    border: dotted 5px blue;
    }
    </style>
</head>

FarPoint.Web.Spread.TextCellType test = new FarPoint.Web.Spread.TextCellType();
test.ShowEditor = True;
test.CssClass = "TextCellCssClass";
test.CellCssClass = "TextCellTypeCssClass";
FpSpread1.Sheets[0].Cells[0, 0].CellType = test;
FpSpread1.Sheets[0].Cells[0, 0].Value = "Text Cell Type";
<head runat="server">
    <title>Untitled Page</title>
    <style type="text/css">
    .TextCellTypeCssClass
    {
    background-color: beige;
    border: solid 5px orange;
    vertical-align:top;
    }
    .TextCellCssClass
    {
    background-color:Black;
    color: Lime;
    border: dotted 5px blue;
    }
    </style>
</head>

Dim test As New FarPoint.Web.Spread.TextCellType
test.ShowEditor = True
test.CssClass = "TextCellCssClass"
test.CellCssClass = "TextCellTypeCssClass"
FpSpread1.Sheets(0).Cells(0, 0).CellType = test
FpSpread1.Sheets(0).Cells(0, 0).Value = "Text Cell Type"
参照

TextCellType クラス
TextCellType メンバ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.