Shape.AlignTopRightCorner

Shape.AlignTopRightCorner method

Moves the picture to the top-right corner.

public void AlignTopRightCorner(int topRow, int rightColumn)
ParameterTypeDescription
topRowInt32the row index.
rightColumnInt32the column index.

Examples

using System;
using Aspose.Cells;
using Aspose.Cells.Drawing;

namespace AsposeCellsExamples
{
    public class ShapeMethodAlignTopRightCornerWithInt32Int32Demo
    {
        public static void Run()
        {
            // Create a new workbook
            Workbook workbook = new Workbook();
            Worksheet worksheet = workbook.Worksheets[0];

            // Add a sample shape to align
            Shape shape = worksheet.Shapes.AddRectangle(10, 10, 100, 100, 0, 0);

            // Align the shape's top right corner to row 2, column 5
            shape.AlignTopRightCorner(2, 5);

            // Save the workbook
            workbook.Save("AlignTopRightCornerDemo.xlsx");
        }
    }
}

See Also