次の方法で共有


TextFrame.ValidLinkTarget メソッド (Word)

Determines whether the text frame of one shape can be linked to the text frame of another shape. .

構文

ValidLinkTarget( _TargetTextFrame_ )

が必要です。 TextFrame オブジェクトを表す変数です。

パラメーター

名前 必須 / オプション データ型 説明
TargetTextFrame 必須 TextFrame expression に指定したテキスト枠にリンクするテキスト枠を指定します。

戻り値

Boolean

注釈

TargetTextFrame は有効なターゲットであり、TargetTextFrame 既にテキストが含まれています、既にリンクされているか、または図形がサポートされていない場合にテキストが関連付けられている場合は False を返す場合、このメソッドは True を返します。

次の使用例は、作業中の文書の 1 番目および 2 番目の図形のテキスト枠がリンクできるかどうかを調べます。 リンクできる場合、これらの 2 つのテキスト枠をリンクします。

Dim textFrame1 As TextFrame 
Dim textFrame2 As TextFrame 
 
Set textFrame1 = ActiveDocument.Shapes(1).TextFrame 
Set textFrame2 = ActiveDocument.Shapes(2).TextFrame 
If textFrame1.ValidLinkTarget(textFrame2) = True Then 
 textFrame1.Next = textFrame2 
End If

関連項目

TextFrame オブジェクト

サポートとフィードバック

Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。