MinSubstQualityEnabled - property of the ExtWriteAction object
Description:
Write replacement quality.
Syntax:
Boolean MinSubstQualityEnabled
Note:
Property access
for read and write.
The default value of this property is defined in the "
Use replacement quality" configurator of this object.
If the
MinTestEnabled is enabled then while the value is being written into the variable, it is tested for allowed minimum value
MinValue. If the value is less, then the replacement value
MaxSubstValue is written into the variable and/or the replacement quality
MinSubstQuality.
Example1:
Examples for obtaining this property in the script.
JavaScriptVBScriptSelect and copy to clipboard
bVal = pMe.Pm("/data/#vars/Temperature/#ext/wact").MinSubstQualityEnabled;
// or
bVal = pMe.Pm("/data/#vars/Temperature").Extension("wact").MinSubstQualityEnabled;
// or
bVal = pMe.Pm("/data").Item("Temperature").Extension("wact").MinSubstQualityEnabled;
bVal = pMe.Pm("/data/#vars/Temperature/#ext/wact").MinSubstQualityEnabled
' or
bVal = pMe.Pm("/data/#vars/Temperature").Extension("wact").MinSubstQualityEnabled
' or
bVal = pMe.Pm("/data").Item("Temperature").Extension("wact").MinSubstQualityEnabled
Example2:
The example for obtaining this property by
Macro expression from another data extension via
pVar variable.