public static void TriggerUpdateSpectrum(GraphDebugEventArgs eventArgs = null) {
			if (UpdateSpectrum != null)
				UpdateSpectrum (eventArgs);           
		}
예제 #2
0
		// On VALUE update 
		void OnUpdate(GraphDebugEventArgs eventArgs) {
			if (eventArgs.ID == this.ID) {
				//this.value = (int) eventArgs.Value;
				this.values = eventArgs.Values;
			}
		}
		public static void TriggerUpdate(GraphDebugEventArgs eventArgs = null) {
			if (Update != null)
				Update (eventArgs);           
		}