Center Checkbox nested in a GridLayout in App designer
조회 수: 6 (최근 30일)
이전 댓글 표시
Hi,
Is there a way to center the checkbox component which is nested in a gridLayout developed in App Designer. In the attached picture you can see that the checkbox is alligned horizontaly to the left which I want to center.
댓글 수: 0
답변 (1개)
Srijith Kasaragod
2021년 9월 1일
By default, adding a checkbox into grid results in the checkbox being placed towards the left of the grid cell. One of the ways to position it towards the center is by using an additional grid layout of a single row and column inside the parent grid cell and then modifying grid layout to place the child grid accordingly. One possible layout configuration can be:
app.GridLayout2 = uigridlayout(app.GridLayout);
app.GridLayout2.ColumnWidth = {'1x'};
app.GridLayout2.RowHeight = {'1x'};
app.GridLayout2.Padding = [60 10 60 10];
Depending on padding values the single cell grid will be placed, and then adding a checkbox into this grid positions it into the center of parent grid cell. Kindly refer this documetation to understand more about grid layout properties.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!