More actions
Created page with "=== <span style="color:#DF8621">'''Examples'''</span> === <source lang="javascript">Array image2 = Resource_searchByName("voxmeterlogo",Resource_Type_Attachment,0,NAME_SEARCH..." |
No edit summary |
||
Line 1: | Line 1: | ||
=== <span style="color:#DF8621">'''Examples'''</span> === | === <span style="color:#DF8621">'''Examples'''</span> === | ||
<source lang="javascript">Array image2 = Resource_searchByName("voxmeterlogo",Resource_Type_Attachment,0,NAME_SEARCH_TYPE_ANYWHERE,1,64); | <source lang="javascript"> | ||
Array image2 = Resource_searchByName("voxmeterlogo",Resource_Type_Attachment,0,NAME_SEARCH_TYPE_ANYWHERE,1,64); | |||
Attachment img2 = new Attachment(image2[0][1]); | |||
TabulationImage t2 = new TabulationImage(img2, tps); | |||
//t.Opacity = 0.5; | |||
t2.Height = 20; | |||
Tabulation_addImage(t2); | |||
</source> | </source> |
Revision as of 10:40, 22 June 2016
Examples
Array image2 = Resource_searchByName("voxmeterlogo",Resource_Type_Attachment,0,NAME_SEARCH_TYPE_ANYWHERE,1,64);
Attachment img2 = new Attachment(image2[0][1]);
TabulationImage t2 = new TabulationImage(img2, tps);
//t.Opacity = 0.5;
t2.Height = 20;
Tabulation_addImage(t2);