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

テストを終了する倍率を取得または設定します。
構文
'Declaration
 
Public Property EndFactor As Single
public float EndFactor {get; set;}
次のサンプルコードは、印刷を最適化するための拡大/縮小ルールを作成します。
FarPoint.Web.Spread.SmartPrintRulesCollection rules = new FarPoint.Web.Spread.SmartPrintRulesCollection();
FarPoint.Web.Spread.ScaleRule sr = new FarPoint.Web.Spread.ScaleRule();
FarPoint.Web.Spread.PrintInfo pi = new FarPoint.Web.Spread.PrintInfo();
sr.EndFactor = 4;
sr.Interval = 1;
sr.ResetOption = FarPoint.Web.Spread.ResetOption.None;
sr.StartFactor = 1;
rules.Add(sr);
pi.SmartPrintRules = rules;
pi.UseSmartPrint = true;
FpSpread1.ActiveSheetView.PrintInfo = pi;
Dim rules As New FarPoint.Web.Spread.SmartPrintRulesCollection
Dim sr As New FarPoint.Web.Spread.ScaleRule
Dim pi As New FarPoint.Web.Spread.PrintInfo
sr.EndFactor = 4
sr.Interval = 1
sr.ResetOption = FarPoint.Web.Spread.ResetOption.None
sr.StartFactor = 1
rules.Add(sr)
pi.SmartPrintRules = rules
pi.UseSmartPrint = True
FpSpread1.ActiveSheetView.PrintInfo = pi
参照

ScaleRule クラス
ScaleRule メンバ

 

 


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