「Vla-settextrotation」の版間の差分
(ページの作成:「{{AutoLISP}} ; 構文 : (vla-settextrotation ''vla-object'' '''' '''' '''') ; 機能 : 指定した行および列の文字の回転角度を設定する。 ; 引数...」) |
細編集の要約なし |
||
(同じ利用者による、間の1版が非表示) | |||
1行目: | 1行目: | ||
{{AutoLISP}} | {{AutoLISP}} | ||
; 構文 | ; 構文 | ||
: (vla-settextrotation ''vla-object'' '''' '''' '''') | : (vla-settextrotation ''vla-object'' ''row'' ''col'' ''TextRotation'') | ||
34行目: | 34行目: | ||
* [[vlax-get-acad-object]] | * [[vlax-get-acad-object]] | ||
* [[vla-get-activedocument]] | * [[vla-get-activedocument]] | ||
* [[vla-settextrotation]] | |||
* [[vla-gettextrotation]] | |||
[[Category:AutoLISP]] | [[Category:AutoLISP]] |
2015年11月22日 (日) 12:41時点における最新版
- 構文
- (vla-settextrotation vla-object row col TextRotation)
- 機能
- 指定した行および列の文字の回転角度を設定する。
- 引数
-
- vla-object … Table の VLAオブジェクト
- row … セルの行番号。
- col … セルの列番号。
- TextRotation … 文字の回転角度。(AcRotationAngle 列挙型)
- acDegrees000
- acDegrees090
- acDegrees180
- acDegrees270
- acDegreesUnknown
- 戻り値
- nil
- サンプル
関連事項