techGetLayerAnalysisAttributeLock
techGetLayerAnalysisAttributeLock(
d_techID
s_analysisAttributeLockType
)
=> t / nil
Description
Returns the state of the lock on layer analysis attributes for changes related to addition of new layers or updates of 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
Example
techID = techGetTechFile(geGetEditCellView())
lockType = "lockAddLayers"
when(techGetLayerAnalysisAttributeLock(techID lockType)
print("'Add layers' lock is currently active")
)
Return to top