FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SpreadView クラス : VerticalScrollBarWidth プロパティ |
'Declaration Public Property VerticalScrollBarWidth As Integer
'使用法 Dim instance As SpreadView Dim value As Integer instance.VerticalScrollBarWidth = value value = instance.VerticalScrollBarWidth
public int VerticalScrollBarWidth {get; set;}
このプロパティは、ビューポートのスクロール バーの幅を設定します。SPREAD全体のスクロール バーの幅を設定するには、FpSpread クラスの VerticalScrollBarWidth プロパティを使用します。
このプロパティが使用できるのは実行時のみです。
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook(); sv.HorizontalScrollBarHeight = 10; sv.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.Both sv.ScrollBarMaxAlign = false; sv.ScrollBarShowMax = true; sv.ScrollBarTrackPolicy = FarPoint.Win.Spread.ScrollBarTrackPolicy.Vertical; sv.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded; sv.VerticalScrollBarWidth = 15;
Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook sv.HorizontalScrollBarHeight = 10 sv.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded sv.ScrollBarMaxAlign = False sv.ScrollBarShowMax = True sv.ScrollBarTrackPolicy = FarPoint.Win.Spread.ScrollBarTrackPolicy.Vertical sv.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded sv.VerticalScrollBarWidth = 15