Nexus.Client.Games.Morrowind.PluginManagement.Boss.BossSorter.SetPluginLoadOrder C# (CSharp) Метод

SetPluginLoadOrder() публичный Метод

Sets the load order of the specified plugin.
Sets the load order of the specified plugin, removing it from its current position if it has one. The first position in the load order is 0. If the index specified is greater than the number of plugins in the load order, the plugin will be inserted at the end of the load order.
public SetPluginLoadOrder ( string p_strPlugin, Int32 p_intIndex ) : void
p_strPlugin string The plugin whose load order is to be set.
p_intIndex System.Int32 The load index at which to place the specified plugin.
Результат void
		public void SetPluginLoadOrder(string p_strPlugin, Int32 p_intIndex)
		{
			UInt32 uintStatus = m_dlgSetPluginLoadOrder(m_ptrBossDb, StripPluginDirectory(p_strPlugin), Convert.ToUInt32(p_intIndex));
			HandleStatusCode(uintStatus);
		}