Message 1 of 5

Not applicable
05-16-2018
10:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is there a possibility to check which type is a current parameter? For example I want to loop through some parameters and perform some actions depending on which types they are - Numerical, Text or Boolean. Below is something what I need to achieve:
If oCurrentParameter.ParamterType = Numerical Than
' perform some actions
ElseIf oCurrentParameter.ParameterType = Boolean Than
' perform some actions
Else ' Text
' perform some actions
End If
This is of course something like dumb-code but I hope that you understand what I am looking for.
Solved! Go to Solution.