PowerTools SPREAD for ASP.NET 8.0J
EncodeValue プロパティ (Cell)

セルのエンコード値を取得または設定します。
構文
'Declaration
 
Public Property EncodeValue As Boolean
public bool EncodeValue {get; set;}
解説

HTMLタグをセルに書き込むには、このプロパティをfalseに設定する必要があります。このプロパティをfalseに設定すると、HTMLタグをセルに埋め込めるようになります。たとえば、<B>タグと</B>タグを追加してテキストの一部を太字にすることが可能です。これはデータ領域のセルだけでなくヘッダのセルにも適用されます。

次のサンプルコードは、EncodeValueプロパティを設定します。
FpSpread1.Sheets[0].RowCount = 4;
FpSpread1.Sheets[0].Cells[1, 1].EncodeValue = false;
FpSpread1.Sheets[0].Cells[1, 1].Value = "Hello<B>World</B>";
FpSpread1.Sheets[0].Rows[2].EncodeValue = false;
FpSpread1.Sheets[0].Cells[2, 1].Value = "<a href='http://www.grapecity.com'>www.grapecity.com</a>";
FpSpread1.Sheets[0].Columns[2].EncodeValue = false;
FpSpread1.Sheets[0].Cells[3, 2].Value = "Break&nbsp;here<BR>to&nbsp;anew&nbsp;line";
FpSpread1.Sheets(0).RowCount = 4
FpSpread1.Sheets(0).Cells(1, 1).EncodeValue = False
FpSpread1.Sheets(0).Cells(1, 1).Value = "Hello<B>World</B>"
FpSpread1.Sheets(0).Rows(2).EncodeValue = False
FpSpread1.Sheets(0).Cells(2, 1).Value = "<a href='http://www.grapecity.com'>www.grapecity.com</a>"
FpSpread1.Sheets(0).Columns(2).EncodeValue = False
FpSpread1.Sheets(0).Cells(3, 2).Value = "Break&nbsp;here<BR>to&nbsp;anew&nbsp;line"
参照

Cell クラス
Cell メンバ

 

 


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