PowerTools SPREAD for Windows Forms 8.0J
BestFitColumnRule コンストラクタ()


印刷に最も適した列調整ルールを作成します。
構文
'Declaration
 
Public Function New()
'使用法
 
Dim instance As New BestFitColumnRule()
public BestFitColumnRule()
解説
デフォルトのリセットオプションを使用して、BestFitColumnRuleクラスのインスタンスを初期化します。
次のサンプルコードは、PrintInfoオブジェクトを作成して、最適な印刷ルールを設定します。
FarPoint.Win.Spread.SmartPrintRulesCollection rules = new FarPoint.Win.Spread.SmartPrintRulesCollection();
FarPoint.Win.Spread.PrintInfo pi = new FarPoint.Win.Spread.PrintInfo();
rules.Add(new FarPoint.Win.Spread.LandscapeRule());
rules.Add(new FarPoint.Win.Spread.ScaleRule());
rules.Add(new FarPoint.Win.Spread.BestFitColumnRule());
pi.SmartPrintRules = rules;
Dim rules As New FarPoint.Win.Spread.SmartPrintRulesCollection
Dim pi As New FarPoint.Win.Spread.PrintInfo
rules.Add(New FarPoint.Win.Spread.LandscapeRule)
rules.Add(New FarPoint.Win.Spread.ScaleRule)
rules.Add(New FarPoint.Win.Spread.BestFitColumnRule)
pi.SmartPrintRules = rules
参照

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

 

 


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