Search Results for

    Show / Hide Table of Contents

    TExcelFile.SendBack Method

    Sends the graphical object one layer down. It will show below and will be covered by image at objectIndex-1.

    Remarks

    This will change the order of the array, so after calling SendToBack(i), position i will have a new object. To move an object 2 steps down the correct code is:

      xls.SendBack(i);
      xls.SendBack(i - 1);
    

    and not

      xls.SendBack(i);
      xls.SendBack(i);
    

    The second code would actually leave the array unmodified.

    Syntax

    Unit: FlexCel.Core

    procedure TExcelFile.SendBack(const objectIndex: Integer); virtual; abstract;

    Parameters

    <-> Parameter Type Description
    const objectIndex Integer Index of the object to move. (1 based)

    See also

    • TExcelFile
    • SendToBack
    • SendForward
    • BringToFront
    In This Article
    Back to top FlexCel Studio for VCL and FireMonkey v7.24
    © 2002 - 2025 tmssoftware.com