B4A Question Font size adjusts in Emulator but not on Tablet (solved) - Shelby (first post)    Feb 08, 2024   (4 reactions) In the designer (of the ide), if you click on a displayed element, one of the list elements in properties is padding. Clicking on that gives a potential to change. Padding is the space around an element. Perhaps if you change the top padding, the print will show completely. B4J Library [B4X] [XUI] SD FlexGrid (Table) - dwsands (first post)    Apr 28, 2021 What I am calling padding is the space between the content and the border of the cell so that the content isn't jammed up against the cell border. It could also be called whitespace or a margin. B4A Question Padding doesn't work in B4XFloatTextField - TILogistic (first post)    Aug 07, 2021   (2 reactions) Dim edt As EditText = FloatTextField.TextField
edt.Padding = Array As Int (10dip, 0dip, 0dip, 0dip) 'Left margin 10dip B4J Tutorial [B4x]Padding/depadding PKCS7/5 and other - KMatle    Apr 30, 2021   (5 reactions) EDIT: If the message length is equal to the pad length, you have to pad to the next multiple. E.g. 16 bytes would be padded to 32 because one would not know how long the message was because the last byte defines the number of added (=padded) values. Here's another example to pad/depad data for man Spanish Altura de Label y TextField - TILogistic (first post)    Apr 19, 2024   (1 reaction) padding:
ejemplo:
B4A:
Dim edt As EditText = B4XFloatTextField1.TextField
edt.Padding = Array As Int (0dip, 0dip, 10dip, 0dip) 'Right margin 10dip
B4J
CSSUtils.SetStyleProperty(TextArea1.As(TextArea), "-fx-padding", "0 0 0 0")
buscar ejemplo:
https://www.b4x./?query=padding B4A Question [Solved] Border and corner in CustomlistView.AddTextItem - LucaMs (first post)    Mar 07, 2022   (2 reactions) Add:
bxTextView.As(Label).Padding = Array As Int(10dip, 5dip, 10dip, 5dip)
Height of ? Item? B4J Question [SOLVED] How to use padding with B4XFloatTextField? - TILogistic (first post)    Nov 07, 2021   (2 reactions) ?
Use CSSUtils
#If B4A
SearchText.TextField.As(EditText).Padding = Array As Int (0dip, 0dip, 60dip, 0dip)
#Else
CSSUtils.SetStyleProperty(SearchText.TextField.As(TextField), "-fx-padding", "0 60 0 0")
#End If
121357 B4A Question Int To DIP - LucaMs (first post)    Jun 05, 2019   (4 reactions) LS1.Padding = Array As Int (6.7%x ,0dip,0dip,0dip) B4A Question B4XFloatTextField padding & RTL - klaus (first post)    Sep 12, 2021   (4 reactions) Or with the nee As method:
B4XFloatTextField1.TextField.As(EditText).Padding = Array As Int (0dip, 0dip, 60dip, 0dip) 'Right margin 10dip B4i Question Padding label - Erel (first post)    Jul 15, 2022   (1 reaction) Put the label inside a panel. Page: 1   2   3   4   5   6   7   Powered by ColBERT |