SIL.FieldWorks.TE.ImportWizard.PrepareToGetParatextProjectSettings C# (CSharp) 메소드

PrepareToGetParatextProjectSettings() 개인적인 메소드

This method is called after the user has chosen to import a Paratext project. Prepare to get the settings for that import by first, making sure there are Paratext projects on the system, and if there is, loading misc. information about the projects in order for the user to specify the import settings.
private PrepareToGetParatextProjectSettings ( ) : bool
리턴 bool
		private bool PrepareToGetParatextProjectSettings()
		{
			// Make sure the paratext projects can be found on this computer.
			if (!FindParatextProjects())
			{
				ScriptureText = null;
				return false;
			}

			LoadParatextProjectCombos();
			m_projectType = ProjectTypes.Paratext;
			return true;
		}