public void NotifyLayerDestroyed(ALayer lLayer) { if (this.LayerDestroyed != null) { this.LayerDestroyed(lLayer); } }
public void NotifyObjectDestroyed(ALayer layer, AObject lObject) { if (this.ObjectDestroyed != null) { this.ObjectDestroyed(layer, lObject); } }
public void NotifyLayerCreated(ALayer lLayer) { if (this.LayerCreated != null) { this.LayerCreated(lLayer); } }
public void AddLayer(ALayer layer) { this.layers.Add(layer); this.NotifyLayerCreated(layer); }