| BeginInsert | |
![]() rtContainer ![]() All As rtCollection BeginInsert containsStyle defineLabel defineLabelAsText docLinks As rtEnumeration hasContent hotspots As rtEnumeration ID ParentObject sections As rtEnumeration Style As rtStyle tables As rtEnumeration textRuns As rtEnumeration
| version 1.5
Property Get/Set BeginInsert (after As Variant) As Variant Define the insertion point. If "after" is True, insertion point is after the object: ' ... get "theParagraph" object Set containerObject.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 = containerObject.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. |