Aspose::Cells::Drawing::ShapeCollection::AddSpinner method

ShapeCollection::AddSpinner method

Adds a Spinner to the worksheet.

Spinner Aspose::Cells::Drawing::ShapeCollection::AddSpinner(int32_t upperLeftRow, int32_t top, int32_t upperLeftColumn, int32_t left, int32_t height, int32_t width)
ParameterTypeDescription
upperLeftRowint32_tUpper left row index.
topint32_tRepresents the vertical offset of Spinner from its left row, in unit of pixel.
upperLeftColumnint32_tUpper left column index.
leftint32_tRepresents the horizontal offset of Spinner from its left column, in unit of pixel.
heightint32_tRepresents the height of Spinner, in unit of pixel.
widthint32_tRepresents the width of Spinner, in unit of pixel.

ReturnValue

A Spinner object.

Examples

    //add a spinner
Spinner spinner = shapes.AddSpinner(1, 0, 1, 0, 100, 50);

See Also