Visual Basic (Declaration) | |
---|---|
Public Property HorizontalScrollBarHeight As Integer |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As FpSpread Dim value As Integer instance.HorizontalScrollBarHeight = value value = instance.HorizontalScrollBarHeight |
C# | |
---|---|
public int HorizontalScrollBarHeight {get; set;} |
Property Value
Integer number of pixels in the height of the horizontal scroll barThis property sets the height of the scroll bar for the entire Spread component. To set the scroll bar height for individual viewports, use the SpreadView class HorizontalScrollBarHeight property.
This property changes the height of the sheet name tab strip, the split boxes, and the area where the scroll bars intersect. The VerticalScrollBarWidth property changes the width of split boxes and the area where the scroll bars intersect.
Changing the horizontal scroll bar height is the only way to change the height of the tab strip. You may want to use this property to change the height if you increase the font size in the sheet name tabs larger than the default. Refer to the SheetTab class Font property for more information.
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 Basic | Copy 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 |
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
Reference
FpSpread ClassFpSpread Members
HorizontalScrollBarPolicy Property
VerticalScrollBarWidth Property