This commit is contained in:
parent
9f0e986c7d
commit
85f6d57d57
@ -778,7 +778,22 @@ namespace fmtxml
|
|||||||
switch (fname.ToUpper())
|
switch (fname.ToUpper())
|
||||||
{
|
{
|
||||||
case "RGESAM1.PAG":
|
case "RGESAM1.PAG":
|
||||||
/* <PageStyle Name="Cover Page" Index="3">
|
/*
|
||||||
|
* <PageStyle Name="Cover Page" Index="3">
|
||||||
|
<Item Token="{DRAFTPAGE}{REFERENCEPAGE}{MASTERPAGE}{SAMPLEPAGE}" Row="12" Col="-2" Justify="PSCenter" />
|
||||||
|
<Item Token="{EOPNUM}" Row="320" Col="262" Justify="PSCenter">
|
||||||
|
<Font Family="Arial" Size="18" CPI="9" />
|
||||||
|
</Item>
|
||||||
|
<Item Token="{COVERTITLE1}" Row="350" Col="282" Justify="PSTop">
|
||||||
|
<Font Family="Arial" Size="18" CPI="9" />
|
||||||
|
</Item>
|
||||||
|
<Item Token="{COVERTITLE2}" Row="366" Col="282" Justify="PSCenter">
|
||||||
|
<Font Family="Arial" Size="18" CPI="9" />
|
||||||
|
</Item>
|
||||||
|
</PageStyle>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <PageStyle Name="Cover Page" Index="3">
|
||||||
<Item Token="{DRAFTPAGE}{REFERENCEPAGE}{MASTERPAGE}{SAMPLEPAGE}" Row="12" Col="-3" Justify="PSCenter" />
|
<Item Token="{DRAFTPAGE}{REFERENCEPAGE}{MASTERPAGE}{SAMPLEPAGE}" Row="12" Col="-3" Justify="PSCenter" />
|
||||||
<Item Token="{COVERTITLE1}" Row="320" Col="282" Justify="PSTop">
|
<Item Token="{COVERTITLE1}" Row="320" Col="282" Justify="PSTop">
|
||||||
<Font Family="Arial" Size="18" CPI="9" />
|
<Font Family="Arial" Size="18" CPI="9" />
|
||||||
@ -787,39 +802,50 @@ namespace fmtxml
|
|||||||
<Font Family="Arial" Size="18" CPI="9" />
|
<Font Family="Arial" Size="18" CPI="9" />
|
||||||
</Item>
|
</Item>
|
||||||
</PageStyle> */
|
</PageStyle> */
|
||||||
|
|
||||||
pg.Index=3;
|
pg.Index=3;
|
||||||
pg.Name = "Cover Page";
|
pg.Name = "Cover Page";
|
||||||
|
|
||||||
PSItem [] psitms = new PSItem[3];
|
PSItem [] psitms = new PSItem[4];
|
||||||
PSItem pi = new PSItem();
|
PSItem pi = new PSItem();
|
||||||
pi.Token = "{DRAFTPAGE}{REFERENCEPAGE}{MASTERPAGE}{SAMPLEPAGE}";
|
pi.Token = "{DRAFTPAGE}{REFERENCEPAGE}{MASTERPAGE}{SAMPLEPAGE}";
|
||||||
pi.Row = 12;
|
pi.Row = 12;
|
||||||
pi.Col = -2;
|
pi.Col = -2;
|
||||||
pi.Justify = "PSCenter";
|
pi.Justify = "PSCenter";
|
||||||
psitms[0] = pi;
|
psitms[0] = pi;
|
||||||
|
|
||||||
|
PSItem pi0 = new PSItem();
|
||||||
|
pi0.Token = "{EOPNUM}";
|
||||||
|
pi0.Row = 320;
|
||||||
|
pi0.Col = 262;
|
||||||
|
pi0.Justify = "PSCenter";
|
||||||
|
pi0.Style = new VE_Font();
|
||||||
|
pi0.Style.FontFamily = "Arial";
|
||||||
|
pi0.Style.FontSize = "18";
|
||||||
|
pi0.Style.CPI = "9";
|
||||||
|
psitms[1] = pi0;
|
||||||
|
|
||||||
PSItem pi1 = new PSItem();
|
PSItem pi1 = new PSItem();
|
||||||
pi1.Token = "{COVERTITLE1}";
|
pi1.Token = "{COVERTITLE1}";
|
||||||
pi1.Row=320;
|
pi1.Row=350;
|
||||||
pi1.Col=282;
|
pi1.Col=282;
|
||||||
pi1.Justify="PSTop";
|
pi1.Justify="PSTop";
|
||||||
pi1.Style = new VE_Font();
|
pi1.Style = new VE_Font();
|
||||||
pi1.Style.FontFamily = "Arial";
|
pi1.Style.FontFamily = "Arial";
|
||||||
pi1.Style.FontSize = "18";
|
pi1.Style.FontSize = "18";
|
||||||
pi1.Style.CPI = "9";
|
pi1.Style.CPI = "9";
|
||||||
psitms[1] = pi1;
|
psitms[2] = pi1;
|
||||||
|
|
||||||
PSItem pi2 = new PSItem();
|
PSItem pi2 = new PSItem();
|
||||||
pi2.Token = "{COVERTITLE2}";
|
pi2.Token = "{COVERTITLE2}";
|
||||||
pi2.Row=336;
|
pi2.Row=366;
|
||||||
pi2.Col=282;
|
pi2.Col=282;
|
||||||
pi2.Justify="PSCenter";
|
pi2.Justify="PSCenter";
|
||||||
pi2.Style = new VE_Font();
|
pi2.Style = new VE_Font();
|
||||||
pi2.Style.FontFamily = "Arial";
|
pi2.Style.FontFamily = "Arial";
|
||||||
pi2.Style.FontSize = "18";
|
pi2.Style.FontSize = "18";
|
||||||
pi2.Style.CPI = "9";
|
pi2.Style.CPI = "9";
|
||||||
psitms[2] = pi2;
|
psitms[3] = pi2;
|
||||||
pg.Items = psitms;
|
pg.Items = psitms;
|
||||||
return pg;
|
return pg;
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user