オブジェクトの傾斜角度を指定します。
サポートされているプラットフォーム: Windows のみ
VBA:
object.ObliqueAngle
タイプ: Attribute、AttributeReference、Shape、Text、TextStyle
このプロパティが適用されるオブジェクト。
読み込み専用: いいえ
タイプ: 倍精度浮動小数点数型
-85~85 度までのラジアンの角度。正の角度は右への傾きを示します。負の値は 2π を加えて等価な正の角度に変換します。
傾斜角度は、直交軸に対するオブジェクトの「傾斜」角度です。
VBA:
Sub Example_ObliqueAngle() ' This example creates a text object in model space. ' It then changes the ObliqueAngle of the text object. Dim textObj As AcadText Dim textString As String Dim insertionPoint(0 To 2) As Double Dim height As Double ' Define the text object textString = "Hello, World." insertionPoint(0) = 3: insertionPoint(1) = 3: insertionPoint(2) = 0 height = 0.5 ' Create the text object in model space Set textObj = ThisDrawing.ModelSpace.AddText(textString, insertionPoint, height) ZoomAll MsgBox "The ObliqueAngle is " & textObj.ObliqueAngle, vbInformation, "ObliqueAngle Example" ' Change the value of the ObliqueAngle to 45 degrees (.707 radians) textObj.ObliqueAngle = 0.707 ZoomAll MsgBox "The ObliqueAngle is set to " & textObj.ObliqueAngle, vbInformation, "ObliqueAngle Example" End Sub
Visual LISP:
(vl-load-com) (defun c:Example_ObliqueAngle() ;; This example creates a text object in model space. ;; It then changes the ObliqueAngle of the text object. (setq acadObj (vlax-get-acad-object)) (setq doc (vla-get-ActiveDocument acadObj)) ;; Define the text object (setq insertionPoint (vlax-3d-point 3 3 0) textString "Hello, World." height 0.5) ;; Create the text object in model space (setq modelSpace (vla-get-ModelSpace doc)) (setq textObj (vla-AddText modelSpace textString insertionPoint height)) (vla-ZoomAll acadObj) (alert (strcat "The ObliqueAngle is " (rtos (vla-get-ObliqueAngle textObj) 2))) ;; Change the value of the ObliqueAngle to 45 degrees (.707 radians) (vla-put-ObliqueAngle textObj 0.707) (vla-ZoomAll acadObj) (alert (strcat "The ObliqueAngle is set to " (rtos (vla-get-ObliqueAngle textObj) 2))) )