Spread for ASP.NET 9.0 Product Documentation
LandscapeRule Constructor()
Example 


Creates a new rule that determines whether to print in landscape format.
Syntax
'Declaration
 
Public Function New()
'Usage
 
Dim instance As New LandscapeRule()
public LandscapeRule()
Example
This example shows the use of this property when creating a PrintInfo object and setting up the rules for optimum printing.
FarPoint.Web.Spread.SmartPrintRulesCollection rules = new FarPoint.Web.Spread.SmartPrintRulesCollection();
FarPoint.Web.Spread.PrintInfo pi = new FarPoint.Web.Spread.PrintInfo();
FarPoint.Web.Spread.LandscapeRule lr = new FarPoint.Web.Spread.LandscapeRule();
FarPoint.Web.Spread.ScaleRule sr = new FarPoint.Web.Spread.ScaleRule();
FarPoint.Web.Spread.BestFitColumnRule bfcr = new FarPoint.Web.Spread.BestFitColumnRule();
lr.ResetOption = FarPoint.Web.Spread.ResetOption.None;
sr.ResetOption = FarPoint.Web.Spread.ResetOption.None;
sr.StartFactor = 1;
sr.EndFactor = 2;
sr.Interval = 0.5f;
bfcr.ResetOption = FarPoint.Web.Spread.ResetOption.None;
rules.Add(lr);
rules.Add(sr);
rules.Add(bfcr);
pi.SmartPrintRules = rules;
FpSpread1.ActiveSheetView.PrintInfo = pi;
Dim rules As New FarPoint.Web.Spread.SmartPrintRulesCollection
Dim pi As New FarPoint.Web.Spread.PrintInfo
Dim lr As New FarPoint.Web.Spread.LandscapeRule
Dim sr As New FarPoint.Web.Spread.ScaleRule
Dim bfcr As New FarPoint.Web.Spread.BestFitColumnRule
lr.ResetOption = FarPoint.Web.Spread.ResetOption.None
sr.ResetOption = FarPoint.Web.Spread.ResetOption.None
sr.StartFactor = 1
sr.EndFactor = 2
sr.Interval = 0.5
bfcr.ResetOption = FarPoint.Web.Spread.ResetOption.None
rules.Add(lr)
rules.Add(sr)
rules.Add(bfcr)
pi.SmartPrintRules = rules
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

LandscapeRule Class
LandscapeRule Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.