Axiom.Samples.SdkTrayManager.ResourceGroupScriptingStarted C# (CSharp) Méthode

ResourceGroupScriptingStarted() public méthode

This event is fired when a resource group begins parsing scripts.
public ResourceGroupScriptingStarted ( string groupName, int scriptCount ) : void
groupName string The name of the group
scriptCount int The number of scripts which will be parsed
Résultat void
		public void ResourceGroupScriptingStarted( string groupName, int scriptCount )
		{
			loadInc = groupInitProportion / scriptCount;
			LoadBar.Caption = "Parsing...";
			mWindow.Update();
			// allow OS events to process (if the platform requires it
			if ( WindowEventMonitor.Instance.MessagePump != null )
			{
				WindowEventMonitor.Instance.MessagePump();
			}
		}