Spread WPF 18
GrapeCity.Spreadsheet.FormControls Namespace / ICheckBoxes Interface / Add Method
The initial horizontal position of the shape, in pixels, relative to the upper-left corner of cell A1 on a worksheet.
The initial vertical position of the shape, in pixels, relative to the upper-left corner of cell A1 on a worksheet.
The initial width, in pixels, of the shape.
The initial height, in pixels, of the shape.


In This Topic
    Add Method (ICheckBoxes)
    In This Topic
    Creates a check box control.
    Syntax
    'Declaration
     
    Function Add( _
       ByVal x As Double, _
       ByVal y As Double, _
       ByVal width As Double, _
       ByVal height As Double _
    ) As ICheckBox
    'Usage
     
    Dim instance As ICheckBoxes
    Dim x As Double
    Dim y As Double
    Dim width As Double
    Dim height As Double
    Dim value As ICheckBox
     
    value = instance.Add(x, y, width, height)
    ICheckBox Add( 
       double x,
       double y,
       double width,
       double height
    )

    Parameters

    x
    The initial horizontal position of the shape, in pixels, relative to the upper-left corner of cell A1 on a worksheet.
    y
    The initial vertical position of the shape, in pixels, relative to the upper-left corner of cell A1 on a worksheet.
    width
    The initial width, in pixels, of the shape.
    height
    The initial height, in pixels, of the shape.

    Return Value

    The ICheckBox object represents the new check box control.
    See Also