Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

UDF name filter

Status
Not open for further replies.

Bonde78

Mechanical
Apr 3, 2019
20
0
0
DK
Hello everyone

I am making a KF checker, which should find specific names, such as finding a UDF with the name 9. The code right now looks like this, does anyone know how to do this?

Code:
 $feats << mqc_askFeaturesByType( "SKETCH" );
        $browseable_features << mqc_askBrowseableFeatures( "include_inactive_features", false, "include_features_unable_to_make_current", true );
 
        $not_udf << Loop 
        {
            For $UDF in $feats;
            If ( Find( $UDF, $browseable_features, "key", Identity ) != NoValue ) 
                collect $UDF;
        };

Best regards
Christian
 
Status
Not open for further replies.
Back
Top