civil:style-set-symbolstyle-param
(civil:style-set-symbolstyle-param
nameOrEname property value)
Assigns a new value for the style
parameter property of the nameOrEname
Civil Symbol Style object.
Arguments
|
nameOrEname
(string | ename) specifies the
Symbol Style object, as string name or ename of the style
object
property (string) specifies the Symbol Style parameter
to get the new value
value (integer | double | string | ename) the new
value to be assigned
|
Return
|
T or NIL
|
Example
|
(vl-load-civil)
T
(setq params
(civil:style-get-symbolstyle-params "Default Point3"))
(("SymbolType" . 1) ("CustomSymbol" . 1)
("SquareFrame" . "Off") ("CircleFrame" . "On") ("BlockName" . "")
("Size" . 2.5) ("Rotation" . 0.0) ("ScalingType" . 0) ("FixedScale"
1.0 1.0 1.0) ("OrientationReference" . 2) ("MaximumSize" . 0.0)
("AsPDMODE" . 33))
(civil:style-set-symbolstyle-param "Default
Point3" "SquareFrame" "on") T
: (setq params
(civil:style-get-symbolstyle-params "Default Point3"))
(("SymbolType" . 1) ("CustomSymbol" . 1)
("SquareFrame" . "On") ("CircleFrame" . "On") ("BlockName" . "")
("Size" . 2.5) ("Rotation" . 0.0) ("ScalingType" . 0) ("FixedScale"
1.0 1.0 1.0) ("OrientationReference" . 2) ("MaximumSize" . 0.0)
("AsPDMODE" . 97))
|
Remarks
|
|