| ||
version 1.5
Property Get/Set BeginInsert (after) Define insertion point. If "after" is True, inserts after the object: ... get "theParagraph" object Set TableObject.BeginInsert (False) = theParagraph Insertion point is before the object. After the object is inserted the insertion point moves after last inserted/appended object.
Dim after objInsertAt Set objInsertAt = tableObject.BeginInsert (after) "after" value may be set to True only in case there have not been any inserts after the insertion point was defined. BeginInsert returns Nothing if EndInsert method has been called.
|