Class ExcelControlScrollBar
Represents a scroll bar form control
Implements
Inherited Members
Namespace: OfficeOpenXml.Drawing.Controls
Assembly: EPPlus.dll
Syntax
public class ExcelControlScrollBar : ExcelControl, IDisposable
Properties
ControlType
The type of form control
Declaration
public override eControlType ControlType { get; }
Property Value
| Type | Description |
|---|---|
| eControlType |
Overrides
Horizontal
Gets or sets if scroll bar is horizontal or vertical
Declaration
public bool Horizontal { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
Increment
How much the scroll bar is incremented for each click
Declaration
public int Increment { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
MaxValue
The value when a scroll bar is at it's maximum
Declaration
public int MaxValue { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
MinValue
The value when a scroll bar is at it's minimum
Declaration
public int MinValue { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Page
The number of items to move the scroll bar on a page click. Null is default
Declaration
public int? Page { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Value
The value of the scroll bar.
Declaration
public int Value { get; set; }
Property Value
| Type | Description |
|---|---|
| int |