Added procedure set rev property to docversion properties dialog box
This commit is contained in:
parent
4f9a67464b
commit
1b09d64a7f
File diff suppressed because it is too large
Load Diff
@ -343,6 +343,7 @@ namespace VEPROMS
|
||||
}
|
||||
ppTxtBxPDFLoc.TextChanged += new EventHandler(ppTxtBxPDFLoc_TextChanged);
|
||||
//end add new applicability stuff
|
||||
lblProcSetRev.Visible = ppRTxtProcSetRev.Visible = _DocVersionConfig.MyDocVersion.MyFormat.PlantFormat.FormatData.SectData.StepSectionData.StepSectionPrintData.UseXtraRevNumber;
|
||||
_Initializing = false;
|
||||
}
|
||||
// The following code was added to fix Bug B2013-117
|
||||
|
@ -107,6 +107,21 @@ namespace VEPROMS.CSLA.Library
|
||||
set { if (_DocVersion != null) _DocVersion.Name = value; }
|
||||
}
|
||||
[Category("General")]
|
||||
[DisplayName("Procedure Set Revision")]
|
||||
[Description("Westinghouse Owners Group Revision")]
|
||||
public string ProcedureSetRev
|
||||
{
|
||||
get
|
||||
{
|
||||
return _Xp["ProcedureSet", "Revision"];
|
||||
}
|
||||
set
|
||||
{
|
||||
_Xp["ProcedureSet", "Revision"] = value;
|
||||
OnPropertyChanged("ProcedureSet_Revision");
|
||||
}
|
||||
}
|
||||
[Category("General")]
|
||||
//PROPGRID: Hide Title
|
||||
[Browsable(false)]
|
||||
[DisplayName("Title")]
|
||||
|
Loading…
x
Reference in New Issue
Block a user