How can I get an integer's properties?

I add an integer variable, and set its value ranges and slider ranges. Both of them are 1 to 99.

How can I get those properties from BP? I search ‘range’ and nothing found:

These are editor side only, usable when editable. Can’t be used run-time. If you need extra functionality encapsulated in a single variable, create a struct and include min / max range. So a struct with 3 ints would do the trick here.

To make it clearer, the ranges are only for UI in property editor for that variable. Variables need to be ranged programaticly either by checking value, or processing it with min, max or clamp nodes