This commit is contained in:
parent
f91e6ca5a3
commit
bd6fbd70c0
@ -2036,6 +2036,7 @@ namespace VEPROMS.CSLA.Library
|
|||||||
set
|
set
|
||||||
{
|
{
|
||||||
_MyTab = value;
|
_MyTab = value;
|
||||||
|
_TagsSetup = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
[NonSerialized]
|
[NonSerialized]
|
||||||
@ -2069,7 +2070,7 @@ namespace VEPROMS.CSLA.Library
|
|||||||
{
|
{
|
||||||
if (IsStep)
|
if (IsStep)
|
||||||
{
|
{
|
||||||
MyTab = new Tab(AdjustForTextSubFollowsTextStyle(FormatStepData.TabData.Font));
|
_MyTab = new Tab(AdjustForTextSubFollowsTextStyle(FormatStepData.TabData.Font));
|
||||||
_MyHeader = new MetaTag(FormatStepData.TabData.Font);
|
_MyHeader = new MetaTag(FormatStepData.TabData.Font);
|
||||||
_MyFooter = new MetaTag(FormatStepData.TabData.Font);
|
_MyFooter = new MetaTag(FormatStepData.TabData.Font);
|
||||||
SetTabText();
|
SetTabText();
|
||||||
@ -2094,6 +2095,11 @@ namespace VEPROMS.CSLA.Library
|
|||||||
}
|
}
|
||||||
int stepType = (int)(MyContent.Type % 10000);
|
int stepType = (int)(MyContent.Type % 10000);
|
||||||
string tbformat = IsInRNO ? FormatStepData.TabData.RNOIdentPrint : FormatStepData.TabData.IdentPrint;
|
string tbformat = IsInRNO ? FormatStepData.TabData.RNOIdentPrint : FormatStepData.TabData.IdentPrint;
|
||||||
|
if (ActiveFormat.Name == "WCNCKL")
|
||||||
|
{
|
||||||
|
tbformat = FormatStepData.TabData.IdentEdit;
|
||||||
|
if (FormatStepData.StepLayoutData.AlignWithParentTab) tbformat = tbformat.TrimStart(" ".ToCharArray());
|
||||||
|
}
|
||||||
// rno gets parent tab
|
// rno gets parent tab
|
||||||
if (IsRNOPart)
|
if (IsRNOPart)
|
||||||
{
|
{
|
||||||
@ -3411,7 +3417,7 @@ namespace VEPROMS.CSLA.Library
|
|||||||
{
|
{
|
||||||
public override void SetupTags()
|
public override void SetupTags()
|
||||||
{
|
{
|
||||||
MyTab = new Tab(ActiveFormat.PlantFormat.FormatData.SectData.SectionNumber.Font);
|
_MyTab = new Tab(ActiveFormat.PlantFormat.FormatData.SectData.SectionNumber.Font);
|
||||||
string sectTab = GetSectionTab(false);
|
string sectTab = GetSectionTab(false);
|
||||||
_MyTab.Text = sectTab;
|
_MyTab.Text = sectTab;
|
||||||
_MyTab.CleanText = sectTab.PadRight(20);
|
_MyTab.CleanText = sectTab.PadRight(20);
|
||||||
@ -3595,7 +3601,7 @@ namespace VEPROMS.CSLA.Library
|
|||||||
public override void SetupTags()
|
public override void SetupTags()
|
||||||
{
|
{
|
||||||
_TagsSetup = true;
|
_TagsSetup = true;
|
||||||
MyTab = new Tab(AdjustForTextSubFollowsTextStyle(FormatStepData.TabData.Font));
|
_MyTab = new Tab(AdjustForTextSubFollowsTextStyle(FormatStepData.TabData.Font));
|
||||||
MyHeader = new MetaTag(FormatStepData.TabData.Font);
|
MyHeader = new MetaTag(FormatStepData.TabData.Font);
|
||||||
MyFooter = new MetaTag(FormatStepData.TabData.Font);
|
MyFooter = new MetaTag(FormatStepData.TabData.Font);
|
||||||
SetTabText();
|
SetTabText();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user