dbGetBlockageColor
dbGetBlockageColor(
d_blockageId
)
=> t_maskColor / nil
Description
Returns the color assigned to the given blockage. The default color type is grayColor.
Arguments
|
d_blockageId
|
Specifies the blockage ID
|
Value Returned
|
t_maskColor
|
Returns the color assigned to the blockage. Possible values include: "grayColor", "mask1Color", "mask2Color", "mask3Color", "mask4Color", "mask5Color", "mask6Color", "mask7Color", "mask8Color". "blackColor", or "multiColor"
|
|
nil
|
Returns nil if the function encounters an error during execution
|
Example
dbSetBlockageColor( layerBlockage "multiColor" ) => t
dbGetBlockageColor( layerBlockage ) => "multiColor"
Return to top