Search Results for

    Show / Hide Table of Contents

    ExcelFile.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

    Namespace: FlexCel.Core

    public abstract void SendBack(Int32 objectIndex)

    Parameters

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

    See also

    • ExcelFile
    • SendToBack
    • SendForward
    • BringToFront
    In This Article
    Back to top FlexCel Studio for the .NET Framework v7.24.0.0
    © 2002 - 2025 tmssoftware.com