techSetLayerAnalysisAttributeLock
techSetLayerAnalysisAttributeLock(
d_techID
s_analysisAttributeLockType
g_value
)
=> t / nil
Description
Sets a lock on layer analysis attributes for changes related to addition of new layers or updates to attributes.
The following analysis attribute locks are supported for this function:
-
lockAddLayers: Prevents addition or removal of layers from the stack but their values can be changed. -
lockValuesChange: Prevents change of layer attributes. However, layers can be added or removed.
Arguments
|
The type of analysis attribute lock. Valid values: |
|
Value Returned
|
Lock on layers analysis attributes has been successfully set. |
|
Example
techID = techGetTechFile(geGetEditCellView()) lockType = "lockAddLayers" when(techSetLayerAnalysisAttributeLock(techID lockType t) print("'Add layers' lock activated")
)
Return to top