Spread for ASP.NET 10 Product Documentation
EndFactor Property
Example 


Gets or sets the zoom factor at which to stop testing.
Syntax
'Declaration
 
Public Property EndFactor As Single
'Usage
 
Dim instance As ScaleRule
Dim value As Single
 
instance.EndFactor = value
 
value = instance.EndFactor
public float EndFactor {get; set;}
Example
This example creates a scale rule for optimized printing.
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
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

ScaleRule Class
ScaleRule Members

 

 


Copyright © GrapeCity, inc. All rights reserved.