ControlExtensions.AddVScrollBar Method

Definition

Overloads

AddVScrollBar(ControlCollection, Range, String)

Adds a new VScrollBar control to the worksheet at the range specified.

AddVScrollBar(ControlCollection, Double, Double, Double, Double, String)

Adds a new VScrollBar control to the worksheet in the specified size and location.

AddVScrollBar(ControlCollection, Range, String)

Adds a new VScrollBar control to the worksheet at the range specified.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Office::Tools::Excel::Controls::VScrollBar ^ AddVScrollBar(Microsoft::Office::Tools::Excel::ControlCollection ^ controls, Microsoft::Office::Interop::Excel::Range ^ range, System::String ^ name);
public static Microsoft.Office.Tools.Excel.Controls.VScrollBar AddVScrollBar (this Microsoft.Office.Tools.Excel.ControlCollection controls, Microsoft.Office.Interop.Excel.Range range, string name);
static member AddVScrollBar : Microsoft.Office.Tools.Excel.ControlCollection * Microsoft.Office.Interop.Excel.Range * string -> Microsoft.Office.Tools.Excel.Controls.VScrollBar
<Extension()>
Public Function AddVScrollBar (controls As ControlCollection, range As Range, name As String) As VScrollBar

Parameters

controls
ControlCollection

The collection to add the control to. Do not supply this parameter yourself. When you call this method on the collection returned by the Controls property (in an application-level project) or the Controls property (in a document-level project), this parameter is supplied automatically.

range
Range

A Range that provides the bounds for the control.

name
String

The name of the control that can be used to index the control in the ControlCollection instance.

Returns

The VScrollBar control that was added to the ControlCollection instance.

Exceptions

The name or range argument is null, or the name argument has zero length.

A control with the same name is already in the ControlCollection instance.

The range that was specified is not valid. Multi-area ranges cannot be used. The range should be on the same worksheet as the ControlCollection instance.

Examples

The following code example adds a VScrollBar control to cells A1 through A8, and then moves the scroll box to the center of the scroll bar. To use this example, run it from the Sheet1 class in a document-level project.

private void ExcelRangeAddVScrollBar()
{
    Microsoft.Office.Tools.Excel.Controls.VScrollBar
        vScrollBar1 = this.Controls.AddVScrollBar(
        this.Range["A1", "A8"], "vScrollBar1");
    vScrollBar1.Value = 50;
}
Private Sub ExcelRangeAddVScrollBar()
    Dim VScrollBar1 As Microsoft.Office.Tools. _
        Excel.Controls.VScrollBar = Me.Controls. _
        AddVScrollBar(Me.Range("A1", "A8"), _
        "VScrollBar1")

    VScrollBar1.Value = 50

End Sub 

Remarks

The AddVScrollBar method enables you to add VScrollBar objects to the end of the ControlCollection. To remove a VScrollBar control that was previously added programmatically, use the Remove method.

The control automatically resizes when the range is resized.

Applies to

AddVScrollBar(ControlCollection, Double, Double, Double, Double, String)

Adds a new VScrollBar control to the worksheet in the specified size and location.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Office::Tools::Excel::Controls::VScrollBar ^ AddVScrollBar(Microsoft::Office::Tools::Excel::ControlCollection ^ controls, double left, double top, double width, double height, System::String ^ name);
public static Microsoft.Office.Tools.Excel.Controls.VScrollBar AddVScrollBar (this Microsoft.Office.Tools.Excel.ControlCollection controls, double left, double top, double width, double height, string name);
static member AddVScrollBar : Microsoft.Office.Tools.Excel.ControlCollection * double * double * double * double * string -> Microsoft.Office.Tools.Excel.Controls.VScrollBar
<Extension()>
Public Function AddVScrollBar (controls As ControlCollection, left As Double, top As Double, width As Double, height As Double, name As String) As VScrollBar

Parameters

controls
ControlCollection

The collection to add the control to. Do not supply this parameter yourself. When you call this method on the collection returned by the Controls property (in an application-level project) or the Controls property (in a document-level project), this parameter is supplied automatically.

left
Double

The distance in points between the left edge of the control and the left edge of the worksheet.

top
Double

The distance in points between the top edge of the control and the top edge of the worksheet.

width
Double

The width of the control in points.

height
Double

The height of the control in points.

name
String

The name of the control.

Returns

The VScrollBar control that was added to the ControlCollection instance.

Exceptions

The name argument is null or has zero length.

A control with the same name is already in the ControlCollection instance.

Examples

The following code example adds a VScrollBar control to the top of the worksheet, and then moves the scroll box to the center of the scroll bar. To use this example, run it from the Sheet1 class in a document-level project.

private void ExcelAddVScrollBar()
{
    Microsoft.Office.Tools.Excel.Controls.VScrollBar
        vScrollBar1 = this.Controls.AddVScrollBar(
        0, 0, 15, 100, "vScrollBar1");
    vScrollBar1.Value = 50;
}
Private Sub ExcelAddVScrollBar()
    Dim VScrollBar1 As Microsoft.Office.Tools.Excel. _
        Controls.VScrollBar = Me.Controls.AddVScrollBar( _
        0, 0, 15, 100, "VScrollBar1")

    VScrollBar1.Value = 50

End Sub

Remarks

The AddVScrollBar method enables you to add VScrollBar objects to the end of the ControlCollection. To remove a VScrollBar control that was previously added programmatically, use the Remove method.

Applies to