Hi, A few weeks ago I discussed how to target sublayer Opacity in code behind with Dominique, the following code is the product of that private void toggleSubLayerOpacity() { LayerDrawingOptions layerDrawOptions = new LayerDrawingOptions(); layerDrawOptions.LayerID = 0; (MyMap.Layers["MyLayer"] as ArcGISDynamicMapServiceLayer).LayerDrawingOptions = new LayerDrawingOptionsCollection() { layerDrawOptions }; (MyMap.Layers["MyLayer"] as ArcGISDynamicMapServiceLayer).VisibleLayers = new int[] { 0 }; if (layerDrawOptions.Opacity == 0) { layerDrawOptions.Opacity = 1; } else { layerDrawOptions.Opacity = 0; } }This works, however, toggling sublayer visibility would work considerably better for my project versus opacity, as well as increase app performance. How would I go about doing this?