SIL.FieldWorks.TE.ImportWizard.PrepareToGetParatextProjectSettings C# (CSharp) Method

PrepareToGetParatextProjectSettings() private method

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
return 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;
		}