Example #1
0
 /// <summary>
 /// Start a paragraph that is intended to be a line in a concordance display.
 ///              A key word is identified, typically the item being concorded on, and its position is
 ///              indicated. Typically, the keyword is bold, and gets aligned with a specified position,
 ///              dmpAlign. Alignment will be left, center, or right, according to the alignment of the
 ///              paragraph as a whole.
 ///              (Nonleft alignment is not yet implemented.)
 /// </summary>
 /// <param name="ichMinItem">Indicate the position of the item being concorded. Depending
 ///              on the flags, this item is typically made bold and aligned with dmpAlign </param><param name="ichLimItem">Indicate the position of the item being concorded. Depending
 ///              on the flags, this item is typically made bold and aligned with dmpAlign </param><param name="cpoFlags">indicates whether to bold the key word, and whether to align it.
 ///              Eventually other flag bits may be supported. </param><param name="dmpAlign">distance from left of paragraph to align keywords. </param>
 public void OpenConcPara(int ichMinItem, int ichLimItem, VwConcParaOpts cpoFlags, int dmpAlign)
 {
     throw new NotImplementedException();
 }
		public void OpenConcPara(int ichMinItem, int ichLimItem, VwConcParaOpts cpoFlags, int dmpAlign)
		{
			throw new NotImplementedException();
		}
Example #3
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Nothing to do here.
		/// </summary>
		/// ------------------------------------------------------------------------------------
		public void OpenConcPara(int ichMinItem, int ichLimItem,
			VwConcParaOpts cpoFlags, int dmpAlign)
		{
			OpenFlowObject();
		}
Example #4
0
		/// <summary>Call virtual OpenParagraph</summary>
		public void OpenConcPara(int ichMinItem, int ichLimItem,
			VwConcParaOpts cpoFlags, int dmpAlign)
		{
			OpenParagraph();
		}