Bonde78
Mechanical
- Apr 3, 2019
- 20
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?
Best regards
Christian
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