MESCIUS SPREAD for ASP.NET 10.0J
ImageCellType コンストラクタ()

新しいイメージ型セルを作成します。
構文
'Declaration
 
Public Function New()
public ImageCellType()
この例では、イメージ型セルを構築し、プロパティを設定します。
<style>.CssStyle1 
{
    FONT: 700 12pt verdana; COLOR: yellow
}
</style>

FarPoint.Web.Spread.ImageCellType imagecell = New FarPoint.Web.Spread.ImageCellType();
imagecell.ImageUrl = "img\\logo.jpg";
imagecell.ImageAlign=System.Web.UI.WebControls.ImageAlign.Right;
imagecell.TextOnRight = true;
imagecell.CssClass = "CssStyle1";
FpSpread1.Sheets[0].Cells[0, 0].CellType = imagecell;
<style>.CssStyle1 
{
    FONT: 700 12pt verdana; COLOR: yellow
}
</style>

Dim imagecell As New FarPoint.Web.Spread.ImageCellType()
imagecell.ImageUrl = "img\logo.jpg"
imagecell.ImageAlign=System.Web.UI.WebControls.ImageAlign.Right
imagecell.TextOnRight = True
imagecell.CssClass = "CssStyle1"
FpSpread1.Sheets(0).Cells(0, 0).CellType = imagecell
参照

ImageCellType クラス
ImageCellType メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.