private void Cleanup() { _currentMapLayer = null; }
/// <summary> /// Event fired when a layer was selected in the layers form /// </summary> /// <param name="s"></param> /// <param name="e"></param> private void OnCurrentLayer(MapLayersHandler s, LayerEventArg e) { _currentMapLayer = MapInterActionHandler.MapLayersHandler.CurrentMapLayer; DisplayAttributes(); }
public ShapefileLabelHandler(MapLayer mapLayer) { _mapLayer = mapLayer; _shapeFile = (Shapefile)_mapLayer.LayerObject; }
private void OnCurrentMapLayer(MapLayersHandler s, LayerEventArg e) { _currentMapLayer = _mapLayersHandler.get_MapLayer(e.LayerHandle); }
public PointLayerSymbologyHandler(MapLayer mapLayer) { _mapLayer = mapLayer; _shapeFile = _mapLayer.LayerObject as Shapefile; }