Top > BeginText

BeginText      Objects - Text Edit

Declaration:
 
 PROCEDURE BeginText ;

Description:

Procedures BeginText creates a new text object in a Vectorworks document. 
All text specified between calls to BeginText and EndText will be part of
 the new text object.
Text may be specified in single quotes, or variables may be used..

To specify the insertion point of the new text object, use TextOrigin.

説明

文字図形の作成を開始します。BeginTextとEndTextの間に文字列を設定します。

Example:

       { Create a multiple line text object at 0,0 }
       TextFont(GetFontID('Monaco'));
       TextSize(24);
       TextOrigin(0,0);
       BeginText;
       'This multiple line text block 
       is in 24pt Monaco and was created
       by a VectorScript.'
       EndText;

参照
 EndText


リロード   新規 下位ページ作成 編集 凍結 差分 添付 コピー 名前変更   ホーム 一覧 検索 最終更新 バックアップ リンク元   ヘルプ   最終更新のRSS
Last-modified: Wed, 07 Dec 2011 19:46:02 JST (4526d)