<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Change font size of table box in report in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Change-font-size-of-table-box-in-report/m-p/458158#M70332</link>
    <description>&lt;P&gt;You'll need to use the &lt;STRONG&gt;col box&lt;/STRONG&gt; display box inside of a &lt;STRONG&gt;table box&lt;/STRONG&gt; to set the font size.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here( 1 );

New Window( "Col Box Font Size",
	table box(
		scb = Col Box( "Message")
	)
);

tb = {};
text_list = {"Hello, world!", "One Flew Over the Cuckoo's Nest", "Return to sender"};
for (i = 1, i &amp;lt;= nitems(text_list), i++,
	tb[i] = text box(text_list[i]);
	tb[i] &amp;lt;&amp;lt; set font size(12);
	scb &amp;lt;&amp;lt; append(tb[i]);
);

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pmroz_0-1643902190303.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/39698i6855AF07FDB23200/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pmroz_0-1643902190303.png" alt="pmroz_0-1643902190303.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 03 Feb 2022 15:29:58 GMT</pubDate>
    <dc:creator>pmroz</dc:creator>
    <dc:date>2022-02-03T15:29:58Z</dc:date>
    <item>
      <title>Change font size of table box in report</title>
      <link>https://community.jmp.com/t5/Discussions/Change-font-size-of-table-box-in-report/m-p/457989#M70317</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I am trying to change the font size of a table box that I generate inside a report. Is there such a function? I tried&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&amp;lt;&amp;lt; Set Font Size (8)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but that doesn't seem to work...&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 18:10:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-font-size-of-table-box-in-report/m-p/457989#M70317</guid>
      <dc:creator>YannickF</dc:creator>
      <dc:date>2023-06-09T18:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: Change font size of table box in report</title>
      <link>https://community.jmp.com/t5/Discussions/Change-font-size-of-table-box-in-report/m-p/458131#M70328</link>
      <description>&lt;P&gt;You can search (filter) the view in the Scripting Index. This filter shows that the Display Boxes that respond to the &amp;lt;&amp;lt; Set Font Size() message is limited:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2022-02-03 at 9.48.25 AM.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/39696i336C038782F17664/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2022-02-03 at 9.48.25 AM.png" alt="Screen Shot 2022-02-03 at 9.48.25 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A Table Box does not include this message in its protocol. This sample script shows how it works with some of these display boxes:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here( 1 );

New Window( "Font Playground",
	Outline Box( "Text All Over the Place",
		tb = Text Box( "Hello, world!" ),
		teb = Text Edit Box( "Hello, world!" ),
		scb = String Col Box( "Message", { "Hello, world!" } ),
	)
);

Wait( 3 );

{ tb, teb, scb } &amp;lt;&amp;lt; Set Font Size( 18 );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Feb 2022 14:50:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-font-size-of-table-box-in-report/m-p/458131#M70328</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2022-02-03T14:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: Change font size of table box in report</title>
      <link>https://community.jmp.com/t5/Discussions/Change-font-size-of-table-box-in-report/m-p/458158#M70332</link>
      <description>&lt;P&gt;You'll need to use the &lt;STRONG&gt;col box&lt;/STRONG&gt; display box inside of a &lt;STRONG&gt;table box&lt;/STRONG&gt; to set the font size.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here( 1 );

New Window( "Col Box Font Size",
	table box(
		scb = Col Box( "Message")
	)
);

tb = {};
text_list = {"Hello, world!", "One Flew Over the Cuckoo's Nest", "Return to sender"};
for (i = 1, i &amp;lt;= nitems(text_list), i++,
	tb[i] = text box(text_list[i]);
	tb[i] &amp;lt;&amp;lt; set font size(12);
	scb &amp;lt;&amp;lt; append(tb[i]);
);

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pmroz_0-1643902190303.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/39698i6855AF07FDB23200/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pmroz_0-1643902190303.png" alt="pmroz_0-1643902190303.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Feb 2022 15:29:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-font-size-of-table-box-in-report/m-p/458158#M70332</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2022-02-03T15:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Change font size of table box in report</title>
      <link>https://community.jmp.com/t5/Discussions/Change-font-size-of-table-box-in-report/m-p/458819#M70380</link>
      <description>Thank you, I got it to work now!</description>
      <pubDate>Mon, 07 Feb 2022 10:28:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-font-size-of-table-box-in-report/m-p/458819#M70380</guid>
      <dc:creator>YannickF</dc:creator>
      <dc:date>2022-02-07T10:28:27Z</dc:date>
    </item>
  </channel>
</rss>

