|
patrick.sender
|
|
Hi, is it correct, that a shapeLayer doesn't have methods like show() or hide()? The only way is to delete the shapeLayer?
|
|
|
|
Chris Pietschmann
|
|
To Hide and Show specific Shape Layers all you need to do is set it's Visible property. Like the following:
// Hide Layer Map1.Layers[0].Visible = false;
// Show Layer Map1.Layers[0].Visible = true;
|
|
|