DarkWolfalpha Member Jul 14, 2022 #1 After Add CustomelistView in Designe... I want change Width And Height but not work this: B4x: CustomelistView.AsView.Height CustomelistView.AsView.Width But this worked: B4x: CustomelistView.AsView.Top CustomelistView.AsView.Left
After Add CustomelistView in Designe... I want change Width And Height but not work this: B4x: CustomelistView.AsView.Height CustomelistView.AsView.Width But this worked: B4x: CustomelistView.AsView.Top CustomelistView.AsView.Left
Solution Alexander Stolte Jul 15, 2022 DarkWolfalpha said: CustomelistView.AsView.Height CustomelistView.AsView.Width Click to expand... You need a "Base_Resize" : B4X: xclv.AsView.Width = 200dip xclv.AsView.Height = 200dip xclv.Base_Resize(xclv.AsView.Width,xclv.AsView.Height) 'Add this
DarkWolfalpha said: CustomelistView.AsView.Height CustomelistView.AsView.Width Click to expand... You need a "Base_Resize" : B4X: xclv.AsView.Width = 200dip xclv.AsView.Height = 200dip xclv.Base_Resize(xclv.AsView.Width,xclv.AsView.Height) 'Add this
Erel B4X founder Staff member Licensed User Longtime User Jul 15, 2022 #2 Moved to questions forum. Upvote 0
teddybear Well-Known Member Licensed User Jul 15, 2022 #3 DarkWolfalpha said: After Add CustomelistView in Designe... I want change Width And Height but not work this: B4x: CustomelistView.AsView.Height CustomelistView.AsView.Width But this worked: B4x: CustomelistView.AsView.Top CustomelistView.AsView.Left Click to expand... They work, if backgroud color of CLV is set, you will see the change. Upvote 0
DarkWolfalpha said: After Add CustomelistView in Designe... I want change Width And Height but not work this: B4x: CustomelistView.AsView.Height CustomelistView.AsView.Width But this worked: B4x: CustomelistView.AsView.Top CustomelistView.AsView.Left Click to expand... They work, if backgroud color of CLV is set, you will see the change.
Alexander Stolte Expert Licensed User Longtime User Jul 15, 2022 #4 DarkWolfalpha said: CustomelistView.AsView.Height CustomelistView.AsView.Width Click to expand... You need a "Base_Resize" : B4X: xclv.AsView.Width = 200dip xclv.AsView.Height = 200dip xclv.Base_Resize(xclv.AsView.Width,xclv.AsView.Height) 'Add this Upvote 1 Solution
DarkWolfalpha said: CustomelistView.AsView.Height CustomelistView.AsView.Width Click to expand... You need a "Base_Resize" : B4X: xclv.AsView.Width = 200dip xclv.AsView.Height = 200dip xclv.Base_Resize(xclv.AsView.Width,xclv.AsView.Height) 'Add this
DarkWolfalpha Member Jul 16, 2022 #5 Alexander Stolte said: You need a "Base_Resize" : B4X: xclv.AsView.Width = 200dip xclv.AsView.Height = 200dip xclv.Base_Resize(xclv.AsView.Width,xclv.AsView.Height) 'Add this Click to expand... thank you ^_^ Upvote 0
Alexander Stolte said: You need a "Base_Resize" : B4X: xclv.AsView.Width = 200dip xclv.AsView.Height = 200dip xclv.Base_Resize(xclv.AsView.Width,xclv.AsView.Height) 'Add this Click to expand... thank you ^_^