Spread Windows Forms 6.0 Product Documentation
HorizontalScrollBarPolicy Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class : HorizontalScrollBarPolicy Property


Glossary Item Box

Gets or sets when to display the horizontal scroll bars in this component.

Syntax

Visual Basic (Declaration) 
Public Property HorizontalScrollBarPolicy As ScrollBarPolicy
Visual Basic (Usage)Copy Code
Dim instance As FpSpread
Dim value As ScrollBarPolicy
 
instance.HorizontalScrollBarPolicy = value
 
value = instance.HorizontalScrollBarPolicy
C# 
public ScrollBarPolicy HorizontalScrollBarPolicy {get; set;}

Property Value

ScrollBarPolicy setting that specifies when the Spread component displays the scroll bars

Remarks

This property sets the policy of whether to display the scroll bar for the entire Spread component. To set the scroll bar policy for individual viewports, use the SpreadView class HorizontalScrollBarPolicy property.

Specify the settings for the vertical scroll bars by setting the VerticalScrollBarPolicy property.

The horizontal width of the scroll bar is directly affected by the tab strip ratio, which is set by the TabStripRatio property. the larger the tab strip ratio, the larger the tab strip width, and thus the smaller the scroll bar width. It is also slightly affected by the width of the vertical scroll bar, which is determined by the VerticalScrollBarWidth property.

Example

This example specifies several aspects of the scroll bars for the Spread component. Scroll bars appear larger than the default size. For scrolling horizontally, the spreadsheet scrolls as you move the scroll box; for scrolling vertically, the scroll bar tip shows the row number, but the spreadsheet does not scroll until you are done.
C#Copy Code
FarPoint.Win.Spread.FpSpread fpSpread1 = new FarPoint.Win.Spread.FpSpread();
FarPoint.Win.Spread.SheetView shv = new FarPoint.Win.Spread.SheetView();
fpSpread1.Location = new Point(10, 10);
fpSpread1.Height = 250;
fpSpread1.Width = 400;
Controls.Add(fpSpread1);
fpSpread1.Sheets.Add(shv);
fpSpread1.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.Always;
fpSpread1.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
fpSpread1.HorizontalScrollBarHeight = 30;
fpSpread1.VerticalScrollBarWidth = 30;
fpSpread1.ScrollBarMaxAlign = true;
fpSpread1.ScrollBarShowMax = true;
fpSpread1.ScrollBarTrackPolicy = FarPoint.Win.Spread.ScrollBarTrackPolicy.Horizontal;
fpSpread1.ScrollTipPolicy = FarPoint.Win.Spread.ScrollTipPolicy.Vertical;
Visual BasicCopy Code
Dim fpSpread1 As New FarPoint.Win.Spread.FpSpread()
Dim shv As New FarPoint.Win.Spread.SheetView()
fpSpread1.Location = New Point(10, 10)
fpSpread1.Height = 250
fpSpread1.Width = 400
Controls.Add(fpSpread1)
fpSpread1.Sheets.Add(shv)
fpSpread1.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.Always
fpSpread1.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded
fpSpread1.HorizontalScrollBarHeight = 30
fpSpread1.VerticalScrollBarWidth = 30
fpSpread1.ScrollBarMaxAlign = True
fpSpread1.ScrollBarShowMax = True
fpSpread1.ScrollBarTrackPolicy = FarPoint.Win.Spread.ScrollBarTrackPolicy.Horizontal
fpSpread1.ScrollTipPolicy = FarPoint.Win.Spread.ScrollTipPolicy.Vertical

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.