Layer.IsExpanded

264
1
Jump to solution
09-16-2022 06:58 PM
JeromeHaaland
Occasional Contributor

The following error is generated when raster.IsExpanded is tried.

How can raster.IsExpanded be used.

By the way... I found "IsExpanded" with the CIMViewer.  🙂

Picture1.png

 

 

RasterLayer raster = null;
            await QueuedTask.Run(() =>
            {
                raster = LayerFactory.Instance.CreateLayer<RasterLayer>(rasterLayerCreationParams, map);
            });
            await SetToClassifyColorizer(raster);
            raster.IsExpanded

 

 

 

0 Kudos
1 Solution

Accepted Solutions
GKmieliauskas
Esri Regular Contributor

Hi,

If you want to set IsExpanded property then you need to use SetExpanded method.

View solution in original post

0 Kudos
1 Reply
GKmieliauskas
Esri Regular Contributor

Hi,

If you want to set IsExpanded property then you need to use SetExpanded method.

0 Kudos