Boolean (true/false) and string (text) parameters can be quite handy. What I think would be a real improvement is being able to link them like numerical parameters.
At the moment doing this right for a boolean parameter requires the following steps:
If has_feature_x Then
has_feature_x_num = 1
Else
has_feature_x_num = 0
End IfIf has_feature_x_num = 1 Then
has_feature_x = True
Else
has_feature_x = False
End IfIf has_feature_x Then
Feature.IsActive("feature_x") = True
Else
Feature.IsActive("feature_x") = False
End If
This has a lot of steps that do not add anything directly, and leave room for error.
With the ability to link these parameters, it could work with these steps:
If has_feature_x Then
Feature.IsActive("feature_x") = True
Else
Feature.IsActive("feature_x") = False
End If
This would:
This in turn would make it easier for technical drawers that are a little less tech-savvy to automate different configurations. Since most of our products just have a different configurations this this would improve the speed with which we improve our drawing speed.
Can't find what you're looking for? Ask the community or share your knowledge.