V Volga_ Member Jul 13, 2023 #1 Hello everyone, I want to create bolder style for EditText, how to do this problem ? Thanks in advances.
Hello everyone, I want to create bolder style for EditText, how to do this problem ? Thanks in advances.
Erel B4X founder Staff member Licensed User Longtime User Jul 13, 2023 #2 The regular B4XView.SetColorAndBorder works with EditText. If you mistakenly declared the view as EditText then cast it first: EditText1.As(B4XView).SetColorAndBorder(...) Upvote 0
The regular B4XView.SetColorAndBorder works with EditText. If you mistakenly declared the view as EditText then cast it first: EditText1.As(B4XView).SetColorAndBorder(...)
V Volga_ Member Jul 14, 2023 #3 Erel said: The regular B4XView.SetColorAndBorder works with EditText. If you mistakenly declared the view as EditText then cast it first: EditText1.As(B4XView).SetColorAndBorder(...) Click to expand... Thanks Erel, I will try testing. Upvote 0
Erel said: The regular B4XView.SetColorAndBorder works with EditText. If you mistakenly declared the view as EditText then cast it first: EditText1.As(B4XView).SetColorAndBorder(...) Click to expand... Thanks Erel, I will try testing.
V Volga_ Member Jul 15, 2023 #4 Volga_ said: Thanks Erel, I will try testing. Click to expand... It works normal. Thanks. Upvote 0