Table of Contents

Class ExcelControlScrollBar

Namespace
OfficeOpenXml.Drawing.Controls
Assembly
EPPlus.dll

Represents a scroll bar form control

public class ExcelControlScrollBar : ExcelControl, IDisposable
Inheritance
ExcelControlScrollBar
Implements
Inherited Members

Properties

ControlType

The type of form control

public override eControlType ControlType { get; }

Property Value

eControlType

Horizontal

Gets or sets if scroll bar is horizontal or vertical

public bool Horizontal { get; set; }

Property Value

bool

Increment

How much the scroll bar is incremented for each click

public int Increment { get; set; }

Property Value

int

MaxValue

The value when a scroll bar is at it's maximum

public int MaxValue { get; set; }

Property Value

int

MinValue

The value when a scroll bar is at it's minimum

public int MinValue { get; set; }

Property Value

int

Page

The number of items to move the scroll bar on a page click. Null is default

public int? Page { get; set; }

Property Value

int?

Value

The value of the scroll bar.

public int Value { get; set; }

Property Value

int