指定渐变的起始颜色。 支持的平台:仅窗口 言论没有额外的评论。 例子工 务 局: Sub Example_GradientColor1()
' This example changes the value of the GradientColor1 property.
Dim hatchObj As AcadHatch
Dim patternName As String
Dim PatternType As Long
Dim bAssociativity As Boolean
' Define the hatch
patternName = "CYLINDER"
PatternType = acPreDefinedGradient '0
bAssociativity = True
' Create the associative Hatch object in model space
Set hatchObj = ThisDrawing.ModelSpace.AddHatch(PatternType, patternName, bAssociativity, acGradientObject)
Dim col1 As AcadAcCmColor, col2 As AcadAcCmColor, newColor As AcadAcCmColor
Set col1 = AcadApplication.GetInterfaceObject("AutoCAD.AcCmColor." & Left(AcadApplication.Version, 2))
Set col2 = AcadApplication.GetInterfaceObject("AutoCAD.AcCmColor." & Left(AcadApplication.Version, 2))
Set newColor = AcadApplication.GetInterfaceObject("AutoCAD.AcCmColor." & Left(AcadApplication.Version, 2))
col1.SetRGB 255, 0, 0
col2.SetRGB 0, 255, 0
newColor.SetRGB 0, 100, 0
hatchObj.GradientColor1 = col1
hatchObj.GradientColor2 = col2
' Create the outer boundary for the hatch (a circle)
Dim outerLoop(0 To 0) As AcadEntity
Dim center(0 To 2) As Double
Dim radius As Double
center(0) = 3: center(1) = 3: center(2) = 0
radius = 1
Set outerLoop(0) = ThisDrawing.ModelSpace.AddCircle(center, radius)
' Append the outerboundary to the hatch object, and display the hatch
hatchObj.AppendOuterLoop (outerLoop)
hatchObj.Evaluate
ThisDrawing.Regen True
MsgBox "Initial value of GradientColor1 is :" & vbCrLf & _
"red = " & hatchObj.GradientColor1.Red & vbCrLf & _
"green = " & hatchObj.GradientColor1.Green & vbCrLf & _
"blue = " & hatchObj.GradientColor1.Blue
hatchObj.GradientColor1 = newColor
MsgBox "New value of GradientColor1 is :" & vbCrLf & _
"red = " & hatchObj.GradientColor1.Red & vbCrLf & _
"green = " & hatchObj.GradientColor1.Green & vbCrLf & _
"blue = " & hatchObj.GradientColor1.Blue
End Sub
Visual LISP: (vl-load-com)
(defun c:Example_GradientColor1()
;; This example changes the value of the GradientColor1 property.
(setq acadObj (vlax-get-acad-object))
(setq doc (vla-get-ActiveDocument acadObj))
;; Define the hatch
(setq patternName "CYLINDER")
(setq patternType acPreDefinedGradient)
(setq bAssociativity :vlax-true)
;; Create the associative Hatch object in model space
(setq modelSpace (vla-get-ModelSpace doc))
(setq hatchObj (vla-AddHatch modelSpace patternType patternName bAssociativity acGradientObject))
(setq col1 (vlax-create-object (strcat "AutoCAD.AcCmColor." (substr (getvar "ACADVER") 1 2))))
(setq col2 (vlax-create-object (strcat "AutoCAD.AcCmColor." (substr (getvar "ACADVER") 1 2))))
(setq newColor (vlax-create-object (strcat "AutoCAD.AcCmColor." (substr (getvar "ACADVER") 1 2))))
(vla-SetRGB col1 255 0 0)
(vla-SetRGB col2 0 255 0)
(vla-SetRGB newColor 0 100 0)
(vla-put-GradientColor1 hatchObj col1)
(vla-put-GradientColor2 hatchObj col2)
;; Create the outer boundary for the hatch (a circle)
(setq center (vlax-3d-point 3 3 0)
radius 1)
(setq circle (vla-AddCircle modelSpace center radius))
(setq outerLoop (vlax-make-safearray vlax-vbObject '(0 . 0)))
(vlax-safearray-put-element outerLoop 0 circle)
;; Append the outerboundary to the hatch object, and display the hatch
(vla-AppendOuterLoop hatchObj outerLoop)
(vla-Evaluate hatchObj)
(vla-Regen doc :vlax-true)
(alert (strcat "Initial value of GradientColor1 is :"
"\nred = " (itoa (vla-get-Red (vla-get-GradientColor1 hatchObj)))
"\ngreen = " (itoa (vla-get-Green (vla-get-GradientColor1 hatchObj)))
"\nblue = " (itoa (vla-get-Blue (vla-get-GradientColor1 hatchObj)))))
(vla-put-GradientColor1 hatchObj newColor)
(alert (strcat "New value of GradientColor1 is :"
"\nred = " (itoa (vla-get-Red (vla-get-GradientColor1 hatchObj)))
"\ngreen = " (itoa (vla-get-Green (vla-get-GradientColor1 hatchObj)))
"\nblue = " (itoa (vla-get-Blue (vla-get-GradientColor1 hatchObj)))))
(vlax-release-object col1)
(vlax-release-object col2)
(vlax-release-object newColor)
)
|
|Archiver|CAD开发者社区
( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2025-10-29 06:04
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.