BookmarkSubscribeRSS Feed
EyalGonen
Barite | Level 11

שלום לכולם,

 

להלן קוד שמדגים כיצד ניתן להפיק דוח בפורמט RTF שמוצג מימין לשמאל:

 

/* The RTLROW option forces tables to be right-to-left */
ods rtf file="test.rtf" trowdata="\rtlrow";
/* Mixed Hebrew and English text */ data heb; text = catt('שלום',' Shalom'); run;
/* The RTLPAR option forces table cell contents to be right-to-left */
title 'Right to left RTF'; proc print data=heb
style (data)=
{
pretext='\rtlpar { '
posttext='} '
protectspecialchars=off
}; run; ods rtf close;

 

ספרו לנו איך זה עובד עבורכם.

 

אייל