absSelect
absSelect(
)
=> 0 / 1
Description
Selects cells according to the specified options.
Arguments
None
Value Returned
|
0
|
Indicates an error.
|
|
1
|
Indicates successful operation.
|
Options
|
SelectInvalid { true | false }
|
|
|
Specifies whether or not to select cells with an invalid status. The default setting is false.
|
|
|
|
|
SelectValid { true | false }
|
|
|
Specifies whether or not to select cells with a valid status. The default setting is false.
|
|
SelectPropertyVal property_value
|
|
|
Selects only cells that have a particular property value.
|
|
SelectPropertyName property_name
|
|
|
Selects only cells that have the named property as an attribute.
|
|
SelectHeightTo max_height
|
|
|
Selects only cells that do not exceed the specified height.
|
|
SelectHeightFrom min_height
|
|
|
Selects only cells that exceed the specified height.
|
|
SelectView { All | Layout | Logical | Pins | Extract | Abstract | Verify }
|
|
|
Selects only cells that have the specified view. The default setting is All.
|
|
SelectName regular_expression
|
|
|
Selects only cells with names matching the specified regular expression.
|
|
SelectError { true | false }
|
|
|
Specifies whether or not to select cells with status errors.
|
|
SelectByMsg string
|
|
|
Selects only cells with errors matching the specified string.
|
Examples
Selects all cells with a valid abstract view.
absSetOption( "SelectValid" "true" )
=> 1
absSetOption( "SelectView" "Abstract" )
=> 1
absSelect
=> 1
Related Topics
Selecting Cells Based on a Criteria in Abstract Generator
Return to top