ShapeLayerState Property |
Namespace: Telogis.GeoBase.ShapeUI
public MyForm() { // create new shapelayer myLayer = new MyShapeLayer(mapMain); } public class MyShapeLayer : ShapeLayer { public MyShapeLayer(IMap map) : base(map) { } public override IState GetDefaultState() { return new SelectState(this, null); } }