CsQuery.CQ.InsertAtOffset C# (CSharp) Method

InsertAtOffset() protected method

Inserts an element at the specified offset from a target. Helper method for Before and After.
protected InsertAtOffset ( IEnumerable target, int offset ) : CQ
target IEnumerable /// Target for the. ///
offset int /// The offset. ///
return CQ
        protected CQ InsertAtOffset(IEnumerable<IDomObject> target, int offset)
        {
            CQ ignore;
            return InsertAtOffset(EnsureCsQuery(target), offset, out ignore);
        }

Same methods

CQ::InsertAtOffset ( CQ target, int offset, CQ &insertedElements ) : CQ