- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How to adjust the width of the left panel and the row number panel and the height of the script panel in the data table with script?
Hello everyone!
How to adjust the width of the left panel and the row number panel and the height of the script panel in the data table with script?
Thanks!
This post originally written in Chinese (Simplified) and has been translated for your convenience. When you reply, it will also be translated back to Chinese (Simplified).
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
回复: 如何用脚本调整数据表中左面板及行号面板的宽度及脚本面板的高度?
I think that SplitterBox doesn't control the height. You can try to test this with
sp << get xml
and maybe see which values to change (if they can be changed)
Row "column" width can be adjusted with
dt << Set Row ID Width(15);
Search scripting index for DataBrowserBox for possibly more suggestions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Reply: How to adjust the width of the left panel and the row number panel and the height of the script panel in the data table with script?
I didn't get an answer in script searches.
This post originally written in Chinese (Simplified) and has been translated for your convenience. When you reply, it will also be translated back to Chinese (Simplified).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Reply: How to adjust the width of the left panel and the row number panel and the height of the script panel in the data table with script?
I searched the community and came across this answer.
But it can only adjust the width of the left panel.
Not sure how to adjust its height.
Using a script to change the width of the line number panel is still unanswered.
This post originally written in Chinese (Simplified) and has been translated for your convenience. When you reply, it will also be translated back to Chinese (Simplified).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
回复: 如何用脚本调整数据表中左面板及行号面板的宽度及脚本面板的高度?
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Wait( 0 );
window = Get Window( dt );
sp = window << Find( SplitterBox( 1 ) );
sp << Set Width( 65 );
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
回复: 如何用脚本调整数据表中左面板及行号面板的宽度及脚本面板的高度?
It no work.
sp << Set height ( 200 );
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
回复: 如何用脚本调整数据表中左面板及行号面板的宽度及脚本面板的高度?
I think that SplitterBox doesn't control the height. You can try to test this with
sp << get xml
and maybe see which values to change (if they can be changed)
Row "column" width can be adjusted with
dt << Set Row ID Width(15);
Search scripting index for DataBrowserBox for possibly more suggestions