C2025-027-Develop-a-way-to-filter-annotations-so-the-user-can-view-only-the-types-they-want-to-see-EP #544
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -547,6 +547,17 @@ namespace VEPROMS.CSLA.Library
 | 
			
		||||
				return LazyLoad(ref _AdjSectTitleLoc, "@AdjSectTitleLoc");
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		// this will add additional spacing between the Section Numbers and Titles
 | 
			
		||||
		private LazyLoad<float?> _SectTitleOffsetOverride;
 | 
			
		||||
		public float? SectTitleOffsetOverride
 | 
			
		||||
		{
 | 
			
		||||
			get
 | 
			
		||||
			{
 | 
			
		||||
				return LazyLoad(ref _SectTitleOffsetOverride, "@SectTitleOffsetOverride");
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		#endregion AdjSectTitleLoc
 | 
			
		||||
 | 
			
		||||
		#region ShowAlarmPointWindowInfo
 | 
			
		||||
@@ -653,6 +664,21 @@ namespace VEPROMS.CSLA.Library
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		#endregion
 | 
			
		||||
 | 
			
		||||
		#region AltMultiUnitWording
 | 
			
		||||
		[Category("Miscellaneous")]
 | 
			
		||||
		[Description("Alternate Wording for Printing when MultiUnit")]
 | 
			
		||||
 | 
			
		||||
		// this will utilize Alternate Wording for Printing when MultiUnit and PrintCommonForZeroUnit is set
 | 
			
		||||
		private LazyLoad<string> _AltMultiUnitWording;
 | 
			
		||||
		public string AltMultiUnitWording
 | 
			
		||||
		{
 | 
			
		||||
			get
 | 
			
		||||
			{
 | 
			
		||||
				return LazyLoad(ref _AltMultiUnitWording, "@AltMultiUnitWording");
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		#endregion IncludeInTOC
 | 
			
		||||
		public override string ToString()
 | 
			
		||||
		{
 | 
			
		||||
			return String.Format("{0:D2} - {1}", Index, Name);
 | 
			
		||||
 
 | 
			
		||||
@@ -1761,6 +1761,16 @@ i = 0;
 | 
			
		||||
				case "[HEADER4]":
 | 
			
		||||
				case "{HEADER5}":
 | 
			
		||||
				case "[HEADER5]":
 | 
			
		||||
				case "{HEADER6}":
 | 
			
		||||
				case "[HEADER6]":
 | 
			
		||||
				case "{HEADER7}":
 | 
			
		||||
				case "[HEADER7]":
 | 
			
		||||
				case "{HEADER8}":
 | 
			
		||||
				case "[HEADER8]":
 | 
			
		||||
				case "{HEADER9}":
 | 
			
		||||
				case "[HEADER9]":
 | 
			
		||||
				case "{HEADER10}":
 | 
			
		||||
				case "[HEADER10]":
 | 
			
		||||
				case "{BOX1}":
 | 
			
		||||
				case "[BOX1]":
 | 
			
		||||
				case "{BOX2}":
 | 
			
		||||
@@ -2099,7 +2109,12 @@ i = 0;
 | 
			
		||||
				case "[UNITNUMBER]":
 | 
			
		||||
					string unbr = MySection.MyDocVersion.DocVersionConfig.Unit_Number;
 | 
			
		||||
					if (MySection.ActiveFormat.PlantFormat.FormatData.PrintData.PrintCommonForZeroUnit && unbr == "0")
 | 
			
		||||
						plstr = "COMMON"; // for Comanche Peak, replace "Unit 0" with "COMMON"
 | 
			
		||||
					{ 
 | 
			
		||||
						if (String.IsNullOrEmpty(MySection.MyDocStyle.AltMultiUnitWording))
 | 
			
		||||
							plstr = "COMMON"; // for Comanche Peak, replace "Unit 0" with "COMMON"
 | 
			
		||||
						else
 | 
			
		||||
							plstr = MySection.MyDocStyle.AltMultiUnitWording; // for Comanche Peak Abnormal, replace "Unit 0" with "UNIT 1 AND 2"
 | 
			
		||||
					}
 | 
			
		||||
					else
 | 
			
		||||
						plstr = plstr.Replace(token, unbr);
 | 
			
		||||
					break;
 | 
			
		||||
 
 | 
			
		||||
@@ -6199,6 +6199,12 @@ namespace Volian.Print.Library
 | 
			
		||||
							XOffset += (float)formatInfo.PlantFormat.FormatData.SectData.MetaSectionList[level].SecTitlePositionAdj;
 | 
			
		||||
							XOffset -= xMetaAdj;
 | 
			
		||||
						}
 | 
			
		||||
 | 
			
		||||
						if (itemInfo.MyDocStyle.SectTitleOffsetOverride != null)
 | 
			
		||||
                        {
 | 
			
		||||
							XOffset += (float)itemInfo.MyDocStyle.SectTitleOffsetOverride;
 | 
			
		||||
						}
 | 
			
		||||
 | 
			
		||||
					}
 | 
			
		||||
				}
 | 
			
		||||
				else if (formatInfo.PlantFormat.FormatData.SectData.SectionHeader.Just == "PSCenter")
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user