Document Solutions for PDF
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Text Namespace / TextLayout Class / Append Method / Append(InlineObject,Boolean) Method
The inline object to add or copy.
If true, a copy of the inlineObject will be created and added. Otherwise, the passed object itself will be added.

In This Topic
    Append(InlineObject,Boolean) Method
    In This Topic
    Adds an inline object, or a copy of it, to the end of the Inlines collection.

    If adding the same inline object multiple times, make sure to pass true as the addCopy parameter.

    Syntax
    'Declaration
     
    Public Overloads Function Append( _
       ByVal inlineObject As InlineObject, _
       Optional ByVal addCopy As System.Boolean _
    ) As InlineObject
    public InlineObject Append( 
       InlineObject inlineObject,
       System.bool addCopy
    )

    Parameters

    inlineObject
    The inline object to add or copy.
    addCopy
    If true, a copy of the inlineObject will be created and added. Otherwise, the passed object itself will be added.

    Return Value

    The appended inline object.
    See Also