예제 #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="hvoObj"></param>
 /// <param name="tag"></param>
 /// <param name="ihvo"></param>
 /// <param name="chvo"></param>
 /// <param name="_ss"></param>
 public void InsertNew(int hvoObj, int tag, int ihvo, int chvo, IVwStylesheet _ss)
 {
     VerifyUpdate(hvoObj, tag);
     m_sda.InsertNew(hvoObj, tag, ihvo, chvo, _ss);
 }
예제 #2
0
 /// <summary>
 /// Insert chvo new objects after the one at ihvo, which functions as a pattern.
 /// Typically used when splitting a paragraph at ihvo.
 /// The new objects should generally be similar to the one at ihvo, except that
 /// the main text property that forms the paragraph body should be empty.
 /// If the object has a paragraph style property, the new objects should have
 /// the same style as the one at ihvo, except that, if a stylesheet is passed,
 /// each successive paragraph inserted should have the appropriate next style
 /// for the one named in the previous paragraph.
 /// The caller should also call PropChanged to notify interested parties.
 ///</summary>
 /// <param name='hvoObj'> </param>
 /// <param name='tag'> </param>
 /// <param name='ihvo'> </param>
 /// <param name='chvo'> </param>
 /// <param name='_ss'> </param>
 public virtual void InsertNew(int hvoObj, int tag, int ihvo, int chvo, IVwStylesheet _ss)
 {
     m_baseSda.InsertNew(hvoObj, tag, ihvo, chvo, _ss);
 }