protected virtual void OnUniqueValueRendererModified(SelectedUniqueValueModificationEventArgs e)
 {
     if (UniqueValueRendererModified != null)
     {
         UniqueValueRendererModified(this, e);
     }
 }
 void symbolsConfigControl_UniqueValueRendererModified(object sender, SelectedUniqueValueModificationEventArgs e)
 {
     if (e.UniqueValueModificationType == UniqueValueModificationType.SymbolChanged)
     {
         if (e.IsSelectedItem)
         {
             // we need to update the symbol config control, if this is the current selected control
             updateSymbolConfigControlIfCurrentSelectedSymbol();
         }
     }
     refreshLayer();
 }
 void symbolsConfigControl_UniqueValueRendererModified(object sender, SelectedUniqueValueModificationEventArgs e)
 {
     if (e.UniqueValueModificationType == UniqueValueModificationType.SymbolChanged)
     {
         if (e.IsSelectedItem)
         {
             // we need to update the symbol config control, if this is the current selected control
             updateSymbolConfigControlIfCurrentSelectedSymbol();
         }
     }
     refreshLayer();
 }
 protected virtual void OnUniqueValueRendererModified(SelectedUniqueValueModificationEventArgs e)
 {
     if (UniqueValueRendererModified != null)
         UniqueValueRendererModified(this, e);
 }