PowerTools SPREAD for ASP.NET 8.0J
CanSerializeXml プロパティ (StyleInfo)

情報を一切失うことなくオブジェクト全体をXMLでレンダリングできるかどうかを取得します。
構文
'Declaration
 
Public Overridable ReadOnly Property CanSerializeXml As Boolean
public virtual bool CanSerializeXml {get;}

プロパティ値

Boolean:スタイルを永続化できる場合はTrue、それ以外の場合はFalse
解説
このプロパティは実行時のみ使用できます。
この例では、スタイルがXML内で保持されるかどうかを表す値を返します。
FarPoint.Web.Spread.StyleInfo copy = new FarPoint.Web.Spread.StyleInfo("HeaderDefault");
copy.Border = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.DarkBlue);
FarPoint.Web.Spread.StyleInfo si = new FarPoint.Web.Spread.StyleInfo(copy);
bool b;
b = si.CanSerializeXml();
Response.Write("The style can be persisted is " + b.ToString());
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = si; 
Dim copy As New FarPoint.Web.Spread.StyleInfo("HeaderDefault")
copy.Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.DarkBlue)
Dim si As New FarPoint.Web.Spread.StyleInfo(copy)
Dim b As Boolean
b = si.CanSerializeXml()
Response.Write("The style can be persisted is " & b.ToString())
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = si 
参照

StyleInfo クラス
StyleInfo メンバ

 

 


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