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

InsertNoteSeparator() защищенный Метод

Insert a bar to separate this note from the following note (unless this is the first note being displayed).
protected InsertNoteSeparator ( IVwEnv vwenv ) : void
vwenv IVwEnv View environment
Результат void
		protected virtual void InsertNoteSeparator(IVwEnv vwenv)
		{
			vwenv.AddSimpleRect((int)FwTextColor.kclrTransparent, -1, 7000, 0);
			vwenv.AddSimpleRect((int)ColorUtil.ConvertColorToBGR(ColorUtil.LightInverse(m_BackColor)), -1, 1000, 0);
			vwenv.AddSimpleRect((int)FwTextColor.kclrTransparent, -1, 4000, 0);
		}