MESCIUS SPREAD for ASP.NET 10.0J
TextOnRight プロパティ (ImageCellType)

画像の右側にテキストを表示するかどうかを表すブール値を取得または設定します。
構文
'Declaration
 
Public Property TextOnRight As Boolean
public bool TextOnRight {get; set;}

プロパティ値

Boolean:テキストが画像の右側に表示される場合はTrue、画像の左側に表示される場合はFalse
解説

テキストを画像の右側に表示する場合はtrue

テキストを画像の左側に表示する場合はfalse

テキストに相対したピクチャの配置を指定するには、ImageAlignプロパティを使用します。

この例では、イメージ型セルを作成し、セルにグラフィック画像を設定します。セル内に画像を配置し、セル内のテキストを画像の右側に配置します。また、このセルを含む列と行のサイズを変更して、画像の表示を見やすくします。
<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 メンバ
ImageAlign プロパティ

 

 


© MESCIUS inc. All rights reserved.