i want to know a way to convert any function to property editor. I have written it once but no one replied. my point is: if we want to do make gui app and i want to make button.
button have many properties like color, on_click, onHover, etc. autocomplete gives us what we need but if we can make gui which gives all button properties and we only need to provide value and it gives us code then it will be fast.
My point is gui designer property like interface.
no i am asking you how to make it. If it works in console then also it is ok. proc add (a,b:int):int = a + b
it should give us to input a, b and return a+b
but automatically as gui designer and for every function.
It is not my point. My point is to get all the items of function and its output. Suppose function is proc add(a,b: int):int = a+b
I should get variables a, b and add(a,b). Its implementation will be We get Input a b Output a+b
It should read variables of function and give input as guidance properties give us.