Document Solutions for Word
GrapeCity.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / Shape Class / AddLinkedTextFrame Method / AddLinkedTextFrame(TextFrame,Int32) Method
The main text frame that starts the text frame story.
The 1-based index of the linked text frame in the story.

In This Topic
    AddLinkedTextFrame(TextFrame,Int32) Method
    In This Topic
    Adds a linked text frame that participates in a text frame story.

    Note that some geometries do not allow text frames (see Extensions.TextFrameSupported). If GeometryType of this shape does not support text frames, an exception will be thrown.

    Syntax
    'Declaration
     
    Public Overloads Function AddLinkedTextFrame( _
       ByVal linkTo As TextFrame, _
       ByVal index As System.Integer _
    ) As LinkedTextFrame
    public LinkedTextFrame AddLinkedTextFrame( 
       TextFrame linkTo,
       System.int index
    )

    Parameters

    linkTo
    The main text frame that starts the text frame story.
    index
    The 1-based index of the linked text frame in the story.

    Return Value

    The added LinkedTextFrame.
    See Also