To be able to read a view's color, like it is possible to read the textcolor.
derez Expert Licensed User Longtime User Jun 7, 2013 #1 To be able to read a view's color, like it is possible to read the textcolor.
thedesolatesoul Expert Licensed User Longtime User Jun 7, 2013 #2 For reference: http://www.b4x.com/forum/bugs-wishlist/13619-wishlist-make-color-attribute-readable.html#post76963
For reference: http://www.b4x.com/forum/bugs-wishlist/13619-wishlist-make-color-attribute-readable.html#post76963
derez Expert Licensed User Longtime User Jun 8, 2013 #3 I found a go around solution to get the color of a label defined in the designer: B4X: Dim cnvs As Canvas cnvs.Initialize(Lbl) Wlblcolor = cnvs.Bitmap.GetPixel(1,1)
I found a go around solution to get the color of a label defined in the designer: B4X: Dim cnvs As Canvas cnvs.Initialize(Lbl) Wlblcolor = cnvs.Bitmap.GetPixel(1,1)
thedesolatesoul Expert Licensed User Longtime User Jun 8, 2013 #4 Nice idea. But remember that is a high-resource workaround.