11-28-2023 04:43 PM
Hello
New to sequence files, and I'm looking for some help with a basic expression.
if (myBool == true)
profileX = profileY
I have a bool variable FileGlobals.myBool. so then is this statement correct?? FileGlobals.ProfileLimits = Locals.NewProfile, FileGlobals.myBool. == True
I think it says if (FileGlobals.myBool. == True)
FileGlobals.ProfileLimits = Locals.NewProfile
Thanks
Solved! Go to Solution.
11-29-2023 12:00 AM
@Zman303 wrote:
Hello
New to sequence files, and I'm looking for some help with a basic expression.
if (myBool == true)
profileX = profileY
I have a bool variable FileGlobals.myBool. so then is this statement correct?? FileGlobals.ProfileLimits = Locals.NewProfile, FileGlobals.myBool. == True
I think it says if (FileGlobals.myBool. == True)
FileGlobals.ProfileLimits = Locals.NewProfile
Thanks
I am not entirely sure to understand your question right...
If you want to assign FileGlobals.ProfileLimits the value of Locals.NewProfile if FileGlobals.nyBool is true, the lower expression of your original question is suitable
If this is not what you have been asking for, please re-phrase your question.
Just a hint: you can really conveniently use breakpoints/ singlestepping and variable window in the sequence editor to investigate things like that
12-05-2023 02:24 PM
FileGlobals.myBool == True ? FileGlobals.ProfileLimits = Locals.NewProfile : ""