I am using SWT grid layout with number of columns=2;
is there an option to add 3 elements to this layout such like:
label checkbox text
where the label is the first element and
the checkbox and the text are the second element
kind of group(with out border) of check box and text in one element in order to work with the grid layout
Thanks in advance.
You can create a
Compositeobject and use it as a parent for your checkbox and text widgets. Then you can add theCompositeto your grid layout as a second element.