Click or drag to resize

ShapeLayerState Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Used to change the state, and fire any necessary events.

Namespace:  Telogis.GeoBase.ShapeUI
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public IState State { get; set; }

Property Value

Type: IState
Examples
C#
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);
    }
}
See Also