SIL.FieldWorks.IText.InterlinVc.LoadDataFor C# (CSharp) Method

LoadDataFor() public method

public LoadDataFor ( IVwEnv vwenv, int rghvo, int chvo, int hvoParent, int tag, int frag, int ihvoMin ) : void
vwenv IVwEnv
rghvo int
chvo int
hvoParent int
tag int
frag int
ihvoMin int
return void
		public override void LoadDataFor(IVwEnv vwenv, int[] rghvo, int chvo, int hvoParent, int tag, int frag, int ihvoMin)
		{
			CheckDisposed();

			try
			{
#if DEBUG
				//TimeRecorder.Begin("LoadParaData");
#endif
				if (tag == StTxtParaTags.kflidSegments)
				{
					LoadDataForSegments(rghvo, hvoParent);
				}
				if (tag != StTextTags.kflidParagraphs)
					return;
				for (int ihvo = 0; ihvo < chvo; ihvo++)
					LoadParaData(rghvo[ihvo]);
			}
			catch (Exception)
			{
			}
			finally
			{
#if DEBUG
				//TimeRecorder.End("LoadParaData");
#endif
			}
		}