SIL.FieldWorks.TE.TeNotesVc.CloseTableRow C# (CSharp) Метод

CloseTableRow() приватный Метод

Closes the table row.
private CloseTableRow ( IVwEnv vwenv, IScrScriptureNote ann ) : void
vwenv IVwEnv The view environment.
ann IScrScriptureNote The annotation being displayed.
Результат void
		private void CloseTableRow(IVwEnv vwenv, IScrScriptureNote ann)
		{
			if (ann.Hvo != SelectedNoteHvo)
			{
				// Display cell used for padding (to right-indent unselected annotations by
				// the width of the frame used to highlight the selected annotation).
				vwenv.OpenTableCell(1, 1);
				vwenv.AddString(m_tssEmpty);
				vwenv.CloseTableCell();
			}

			vwenv.CloseTableRow();
		}