MrKim Well-Known Member Licensed User Longtime User Nov 7, 2018 #1 How do you test an object to see if it has been set to a value? I tried View.tag = Null but that returns false. Thanks
How do you test an object to see if it has been set to a value? I tried View.tag = Null but that returns false. Thanks
LucaMs Expert Licensed User Longtime User Nov 7, 2018 #2 If I'm not mistaken, an object is Null only if you explicitly set it to Null. You can check if it has been initialized (If obj.IsInitialized) Upvote 0
If I'm not mistaken, an object is Null only if you explicitly set it to Null. You can check if it has been initialized (If obj.IsInitialized)
Erel B4X founder Staff member Licensed User Longtime User Nov 7, 2018 #3 The tag of views created with the designer will be an empty string. B4X: If View.Tag = "" Then Upvote 0