ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.CIM Namespace / CIMMosaicRule Class / MosaicMethod Property
Example

In This Topic
    MosaicMethod Property
    In This Topic
    Gets or sets the mosaic method.
    Syntax
    Public Property MosaicMethod As RasterMosaicMethod
    public RasterMosaicMethod MosaicMethod {get; set;}
    Example
    Update the sort order - mosaic method on a mosaic layer
    {
        //Note: needs to be called on the QueuedTask
        // Get the image sub-layer from the mosaic layer.
        ImageServiceLayer mosaicImageSubLayer = mosaicLayer.GetImageLayer();
        // Get the mosaic rule.
        CIMMosaicRule mosaicingRule = mosaicImageSubLayer.GetMosaicRule();
        // Set the Mosaic Method to Center.
        mosaicingRule.MosaicMethod = RasterMosaicMethod.Center;
        // Update the mosaic with the changed mosaic rule.
        mosaicImageSubLayer.SetMosaicRule(mosaicingRule);
    }
    Update the sort order - mosaic method on an image service layer
    {
        // Get the mosaic rule of the image service.
        //Note: needs to be called on the QueuedTask
        CIMMosaicRule mosaicRule = imageServiceLayer.GetMosaicRule();
        // Set the Mosaic Method to Center.
        mosaicRule.MosaicMethod = RasterMosaicMethod.Center;
        // Update the image service with the changed mosaic rule.
        imageServiceLayer.SetMosaicRule(mosaicRule);
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also