From 1aa88aca2b37aa6dc7fc86464ac50e25d4134211 Mon Sep 17 00:00:00 2001 From: Thomas Herrmann Date: Tue, 24 Sep 2024 14:25:17 +0200 Subject: [PATCH] convert PlcAlarmTextListGroup xlsx to csv to avoid git readability and timestamp changes and delete another timestamp in xml --- TiaGitHandler/Program.cs | 73 + TiaGitHandler/TiaGitHandler.csproj | 3 + .../siemens/V19/Schemas/SW.Common_v3.xsd | 568 +- .../V19/Schemas/SW.Interface.Snapshot.xsd | 36 +- .../V19/Schemas/SW.InterfaceSections_v5.xsd | 324 +- .../V19/Schemas/SW.PlcBlocks.Access_v5.xsd | 1190 +- .../SW.PlcBlocks.CompileUnitCommon_v5.xsd | 62 +- .../V19/Schemas/SW.PlcBlocks.Graph_v6.xsd | 698 +- .../SW.PlcBlocks.InstanceSupervisions_v3.xsd | 92 +- .../V19/Schemas/SW.PlcBlocks.LADFBD_v5.xsd | 300 +- .../V19/Schemas/SW.PlcBlocks.SCL_v4.xsd | 40 +- .../V19/Schemas/SW.PlcBlocks.STL_v5.xsd | 964 +- .../SW.PlcBlocks.TypeSupervisions_v3.xsd | 308 +- ...nologicalObjects_AdditionalDataAxis_v1.xsd | 264 +- ...calObjects_AdditionalDataKinematics_v1.xsd | 194 +- ...bjects_AdditionalDataMeasuringInput_v1.xsd | 90 +- ...icalObjects_AdditionalDataOutputCam_v1.xsd | 98 +- ...nologicalObjects_InterpreterProgram_v1.xsd | 24 +- .../SW.TechnologicalObjects_Parameters_v1.xsd | 76 +- ...TechnologicalObjects_ProfileDataCam_v1.xsd | 688 +- .../siemens/V19/Siemens.Engineering.Hmi.xml | 364 +- .../siemens/V19/Siemens.Engineering.xml | 285168 +++++++-------- 22 files changed, 145850 insertions(+), 145774 deletions(-) diff --git a/TiaGitHandler/Program.cs b/TiaGitHandler/Program.cs index e30cf9cb..876d504a 100644 --- a/TiaGitHandler/Program.cs +++ b/TiaGitHandler/Program.cs @@ -14,6 +14,9 @@ using DotNetSiemensPLCToolBoxLibrary.DataTypes.Projectfolders; using DotNetSiemensPLCToolBoxLibrary.General; using DotNetSiemensPLCToolBoxLibrary.Projectfiles; +using ICSharpCode.SharpZipLib.Core; +using OfficeOpenXml; +using OfficeOpenXml.FormulaParsing.Excel.Functions.Text; using TiaGitHandler.Properties; using Application = System.Windows.Application; using MessageBox = System.Windows.Forms.MessageBox; @@ -211,6 +214,26 @@ static void Main(string[] args) ParseFolder(prj.ProjectStructure, exportPath, skippedBlocksList); prj.ExportTextlists(prj.ProjectStructure, exportPath); + var xlsxFiles = Directory.GetFiles(exportPath, "*.xlsx", SearchOption.AllDirectories); + foreach (var xlsxFile in xlsxFiles.Where(x => x.Contains("plcalarmtextlistgroup"))) + { + var fileInfo = new FileInfo(xlsxFile); + using (var package = new ExcelPackage(fileInfo)) + { + var worksheet1 = package.Workbook.Worksheets[1]; + var textlistType = worksheet1.Cells["B2"].Text; // textlist type - decimal, binary, bit + + string targetFile = Path.Combine( + Path.GetDirectoryName(xlsxFile), + $"{Path.GetFileNameWithoutExtension(xlsxFile)}_{textlistType}.csv" + ); + + ConvertPlcAlarmTextListXlsxToCsv(xlsxFile, targetFile, textlistType); + } + + File.Delete(xlsxFile); + } + Console.WriteLine(); Console.WriteLine(); Console.ForegroundColor = ConsoleColor.Red; @@ -221,6 +244,43 @@ static void Main(string[] args) Console.ReadKey(); } + public static void ConvertPlcAlarmTextListXlsxToCsv(string sourceFile, string targetFile, string textlistType) + { + var fileInfo = new FileInfo(sourceFile); + using (var package = new ExcelPackage(fileInfo)) + { + var worksheet = package.Workbook.Worksheets[2]; + + var maxColumnNumber = worksheet.Dimension.End.Column; + var totalRowCount = worksheet.Dimension.End.Row; + + using (var writer = new StreamWriter(targetFile, false, Encoding.UTF8)) + { + for (int row = 1; row <= totalRowCount; row++) + { + var currentRow = new List(maxColumnNumber); + + for (int col = 1; col <= maxColumnNumber; col++) + { + var cellValue = worksheet.Cells[row, col].Text; + + // double quotation marks (") -> ("") + if (cellValue.Contains("\"")) + cellValue = cellValue.Replace("\"", "\"\""); + + // Add quotation marks if cell contains commas or quotation marks + if (cellValue.Contains(",") || cellValue.Contains("\"")) + cellValue = $"\"{cellValue}\""; + + currentRow.Add(cellValue); + } + + writer.WriteLine(string.Join(";", currentRow)); + } + } + } + } + private class EncodingStringWriter : StringWriter { private readonly Encoding _encoding; @@ -340,6 +400,7 @@ private static void ParseFolder(ProjectFolder folder, string dir, List s ns.AddNamespace("smns2", "http://www.siemens.com/automation/Openness/SW/Interface/v3"); ns.AddNamespace("smns3", "http://www.siemens.com/automation/Openness/SW/NetworkSource/StatementList/v3"); ns.AddNamespace("smns4", "http://www.siemens.com/automation/Openness/SW/NetworkSource/StructuredText/v2"); + ns.AddNamespace("smns5", "http://www.siemens.com/automation/Openness/SW/NetworkSource/StructuredText/v4"); try { @@ -479,6 +540,18 @@ private static void ParseFolder(ProjectFolder folder, string dir, List s { } + try + { + var nodes = xmlDoc.SelectNodes("//smns5:DateAttribute[@Name='ParameterModifiedTS']", ns); + foreach (var node in nodes.Cast()) + { + node.ParentNode.RemoveChild(node); + } + } + catch + { + } + //try //{ // var nodes = xmlDoc.SelectNodes("//smns:Address[@Area='None' and @Informative='true']", ns); diff --git a/TiaGitHandler/TiaGitHandler.csproj b/TiaGitHandler/TiaGitHandler.csproj index 21a26e86..d7d5ff04 100644 --- a/TiaGitHandler/TiaGitHandler.csproj +++ b/TiaGitHandler/TiaGitHandler.csproj @@ -11,6 +11,9 @@ false + + + true diff --git a/externalDlls/siemens/V19/Schemas/SW.Common_v3.xsd b/externalDlls/siemens/V19/Schemas/SW.Common_v3.xsd index 9955cd9d..04efbdb2 100644 --- a/externalDlls/siemens/V19/Schemas/SW.Common_v3.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.Common_v3.xsd @@ -1,284 +1,284 @@ - - - - - - - - - - - - - - - - - - - - - - A member attribute with a type restriction of boolean. - - - - - - - - - Exported only with ReadOnly option, ignored during import. - - - - - An attribute of attribute, denotes if it is defined by a user or the system itself. In V14, if exists it is always true. - - - - - - - - - Not allowed in STL - - - - - LAD/FBD: Only for Parts - - - - - - - - - - - - - - - For NumBLs in STL. NumBLs is the count of the blank spaces before the actual text in the Comment. This is informative. - - - - - - - Denotes if the comment is at the end of the line (using /*/) or inside the line (using (/* */) ) - - - - - Exported only with ReadOnly option, ignored during import. - - - - - - - - - - - - Exported only with ReadOnly option, ignored during import. - - - - - An attribute of attribute, denotes if it is defined by a user or the system itself. In V14, if exists it is always true. - - - - - - - - - - - - - - A member attribute with a type restriction of integer. - - - - - Not for LAD/FBD. - - - - - - - Exported only with ReadOnly option, ignored during import. - - - - - An attribute of attribute, denotes if it is defined by a user or the system itself. In V14, if exists it is always true. - - - - - - - - - - - - - - Not for LAD/FBD - - - - - - - For NumBLs in STL. NumBLs is the count of the blank spaces before the actual text in the LineComment. This is informative. - - - - - - - - - - Denotes if the comment is at the end of the line (using //) or inside the line (using /* */) - - - - - - - - - - - - - - - - - - - - - - A member attribute with a type restriction of real. - - - - - - - - - Exported only with ReadOnly option, ignored during import. - - - - - An attribute of attribute, denotes if it is defined by a user or the system itself. In V14, if exists it is always true. - - - - - - - - - - - - - - - - - - - - - - - - - - - - A member attribute with a type restriction of string. - - - - - - - - - Exported only with ReadOnly option, ignored during import. - - - - - An attribute of attribute, denotes if it is defined by a user or the system itself. In V14, if exists it is always true. - - - - - - - - - - - - - - - - - - - - - - - - - - For NumBLs. NumBLs is the count of the blank spaces at the start.This is informative. - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + A member attribute with a type restriction of boolean. + + + + + + + + + Exported only with ReadOnly option, ignored during import. + + + + + An attribute of attribute, denotes if it is defined by a user or the system itself. In V14, if exists it is always true. + + + + + + + + + Not allowed in STL + + + + + LAD/FBD: Only for Parts + + + + + + + + + + + + + + + For NumBLs in STL. NumBLs is the count of the blank spaces before the actual text in the Comment. This is informative. + + + + + + + Denotes if the comment is at the end of the line (using /*/) or inside the line (using (/* */) ) + + + + + Exported only with ReadOnly option, ignored during import. + + + + + + + + + + + + Exported only with ReadOnly option, ignored during import. + + + + + An attribute of attribute, denotes if it is defined by a user or the system itself. In V14, if exists it is always true. + + + + + + + + + + + + + + A member attribute with a type restriction of integer. + + + + + Not for LAD/FBD. + + + + + + + Exported only with ReadOnly option, ignored during import. + + + + + An attribute of attribute, denotes if it is defined by a user or the system itself. In V14, if exists it is always true. + + + + + + + + + + + + + + Not for LAD/FBD + + + + + + + For NumBLs in STL. NumBLs is the count of the blank spaces before the actual text in the LineComment. This is informative. + + + + + + + + + + Denotes if the comment is at the end of the line (using //) or inside the line (using /* */) + + + + + + + + + + + + + + + + + + + + + + A member attribute with a type restriction of real. + + + + + + + + + Exported only with ReadOnly option, ignored during import. + + + + + An attribute of attribute, denotes if it is defined by a user or the system itself. In V14, if exists it is always true. + + + + + + + + + + + + + + + + + + + + + + + + + + + + A member attribute with a type restriction of string. + + + + + + + + + Exported only with ReadOnly option, ignored during import. + + + + + An attribute of attribute, denotes if it is defined by a user or the system itself. In V14, if exists it is always true. + + + + + + + + + + + + + + + + + + + + + + + + + + For NumBLs. NumBLs is the count of the blank spaces at the start.This is informative. + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.Interface.Snapshot.xsd b/externalDlls/siemens/V19/Schemas/SW.Interface.Snapshot.xsd index cb595230..76f78aac 100644 --- a/externalDlls/siemens/V19/Schemas/SW.Interface.Snapshot.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.Interface.Snapshot.xsd @@ -1,19 +1,19 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/externalDlls/siemens/V19/Schemas/SW.InterfaceSections_v5.xsd b/externalDlls/siemens/V19/Schemas/SW.InterfaceSections_v5.xsd index 7f0ba20c..538d4fe8 100644 --- a/externalDlls/siemens/V19/Schemas/SW.InterfaceSections_v5.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.InterfaceSections_v5.xsd @@ -1,162 +1,162 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The version of the library type to use. Previous to this, the version was written inside the Datatype attribute itself, like "dtl:v1.0". Now, this is written in two separate attributes, to mitigate problems with weird names ("dtl:v1.0" could be a UDT name!). - - - - - - - - - - - Write acces only inside function - - - - - string: Member shares offset with another member in this structure - - - - - boolean: Member can be synchronized with work memory - - - - - boolean: Editor does not show the member - - - - - boolean: User cannot change member name - - - - - boolean: Editor does not allow to delete the member - - - - - boolean: No HMI access, no structure item - - - - - boolean: Filter to reduce the number of members shown in the first place - - - - - integer: - - - - - integer: - - - - - boolean: Hide assignement at call if matches with PredefinedAssignment - - - - - string: Input for the paramter used when call is placed - - - - - boolean: The user cannot change the predefined assignement at the call - - - - - - - - - - - - - - - - - Base Class - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The version of the library type to use. Previous to this, the version was written inside the Datatype attribute itself, like "dtl:v1.0". Now, this is written in two separate attributes, to mitigate problems with weird names ("dtl:v1.0" could be a UDT name!). + + + + + + + + + + + Write acces only inside function + + + + + string: Member shares offset with another member in this structure + + + + + boolean: Member can be synchronized with work memory + + + + + boolean: Editor does not show the member + + + + + boolean: User cannot change member name + + + + + boolean: Editor does not allow to delete the member + + + + + boolean: No HMI access, no structure item + + + + + boolean: Filter to reduce the number of members shown in the first place + + + + + integer: + + + + + integer: + + + + + boolean: Hide assignement at call if matches with PredefinedAssignment + + + + + string: Input for the paramter used when call is placed + + + + + boolean: The user cannot change the predefined assignement at the call + + + + + + + + + + + + + + + + + Base Class + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.Access_v5.xsd b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.Access_v5.xsd index 812b8d51..b4aa7b2f 100644 --- a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.Access_v5.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.Access_v5.xsd @@ -1,595 +1,595 @@ - - - - - - - - - - Byte * 8 + Bit - - - - - - - - - - - - - - - - - - - for NumBLs. NumBLs is informative. Not for LAD/FBD. - - - - - - - - call of a user block. Not in Graph ActionList. - - - - - call of an instruction. Not for LAD/FBD, Graph ActionList. - - - - - STL specific - - - - - - Only in SCL - - - - - SCL specific - - - - - - for absolute addresses - - - - - - - - - - - - - - - Not allowed in STL - - - - - - - - - - - - - - - - - - - - - for DB access - - - - - In general it is Byte * 8 + Bit. But if it is used for addressing a DB we will find the number of the DB here (e.g. "DB12" ->12). - - - - - if true, the import unnoted it - - - - - - - - - - - - - - - - - partly qualified access with DB register - - - - - partly qualified access with DI register - - - - - - - Classic Local Stack - - - - - - - - - - - - - - - - - - - Not for LAD/FBD. - - - - - for BlockNumber. BlockNumber is informative. - - - - - for ParameterModifiedTS. ParameterModifiedTS is informative - - - - - - - - - - - - - - - - - SCL - - - - - SCL - - - - - For the indices of an array - - - - - - - - - - If component has child AccessModifier is Array else AccessModifier is None - - - - - - - - - - - - for Format and FormatFlags. They are informative.. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the DOT; only if separated. Not in Graph ActionList, not in LAD/FBD. - - - - - - - - - Not allowed in STL - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SCL only - - - - - - - - - - - - - - for InterfaceFlags. InterfaceFlags is informative - The type of the value should be InterfaceFlags_TP - The default value is "S7_Visible" - - - - - - - - - - - - - for NumBLs. NumBLs is informative - - - - - for InterfaceFlags. InterfaceFlags is informative - The type of the value should be InterfaceFlags_TP - The default value is "S7_Visible" - - - - - - - - - - - - - - - - - - - - - - - - - - - - SCL - - - - - - - - - SCL - - - - - - - - - - - - - - - - - Symbols we do not know what they are - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Only for S7-300/400/WinAC - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SCL. - - - - - - - - Not allowed in STL - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + Byte * 8 + Bit + + + + + + + + + + + + + + + + + + + for NumBLs. NumBLs is informative. Not for LAD/FBD. + + + + + + + + call of a user block. Not in Graph ActionList. + + + + + call of an instruction. Not for LAD/FBD, Graph ActionList. + + + + + STL specific + + + + + + Only in SCL + + + + + SCL specific + + + + + + for absolute addresses + + + + + + + + + + + + + + + Not allowed in STL + + + + + + + + + + + + + + + + + + + + + for DB access + + + + + In general it is Byte * 8 + Bit. But if it is used for addressing a DB we will find the number of the DB here (e.g. "DB12" ->12). + + + + + if true, the import unnoted it + + + + + + + + + + + + + + + + + partly qualified access with DB register + + + + + partly qualified access with DI register + + + + + + + Classic Local Stack + + + + + + + + + + + + + + + + + + + Not for LAD/FBD. + + + + + for BlockNumber. BlockNumber is informative. + + + + + for ParameterModifiedTS. ParameterModifiedTS is informative + + + + + + + + + + + + + + + + + SCL + + + + + SCL + + + + + For the indices of an array + + + + + + + + + + If component has child AccessModifier is Array else AccessModifier is None + + + + + + + + + + + + for Format and FormatFlags. They are informative.. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + the DOT; only if separated. Not in Graph ActionList, not in LAD/FBD. + + + + + + + + + Not allowed in STL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SCL only + + + + + + + + + + + + + + for InterfaceFlags. InterfaceFlags is informative + The type of the value should be InterfaceFlags_TP + The default value is "S7_Visible" + + + + + + + + + + + + + for NumBLs. NumBLs is informative + + + + + for InterfaceFlags. InterfaceFlags is informative + The type of the value should be InterfaceFlags_TP + The default value is "S7_Visible" + + + + + + + + + + + + + + + + + + + + + + + + + + + + SCL + + + + + + + + + SCL + + + + + + + + + + + + + + + + + Symbols we do not know what they are + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Only for S7-300/400/WinAC + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SCL. + + + + + + + + Not allowed in STL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.CompileUnitCommon_v5.xsd b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.CompileUnitCommon_v5.xsd index 4ecce48d..46629add 100644 --- a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.CompileUnitCommon_v5.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.CompileUnitCommon_v5.xsd @@ -1,31 +1,31 @@ - - - - - - - - - - - for NumBLs. NumBLs is informative - - - - - - - - the COLON; only if separated - - - - - - - - Not allowed in STL - - - - + + + + + + + + + + + for NumBLs. NumBLs is informative + + + + + + + + the COLON; only if separated + + + + + + + + Not allowed in STL + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.Graph_v6.xsd b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.Graph_v6.xsd index c8523b62..9bdd921f 100644 --- a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.Graph_v6.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.Graph_v6.xsd @@ -1,349 +1,349 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Temporary change for enable of empty alarm text because of the graph alarm handling reconstruction. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Enabler token - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - For translated transiton names - - - - - - - - - For translated step names - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Temporary change for enable of empty alarm text because of the graph alarm handling reconstruction. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Enabler token + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + For translated transiton names + + + + + + + + + For translated step names + + + + + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.InstanceSupervisions_v3.xsd b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.InstanceSupervisions_v3.xsd index a8371ae5..34055da8 100644 --- a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.InstanceSupervisions_v3.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.InstanceSupervisions_v3.xsd @@ -1,46 +1,46 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.LADFBD_v5.xsd b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.LADFBD_v5.xsd index c99dfddf..e908a902 100644 --- a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.LADFBD_v5.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.LADFBD_v5.xsd @@ -1,150 +1,150 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The invisible pins of this part. - - - - - - The name of the invisible pin. - - - - - - - - - - - - - The name of the negated pin. - - - - - - The negated pins of this part. - - - - - - The name of the automatic chosen template parameter. Not for InstructionRef - - - - - - - - - - - - The equation of this part. This is only used for the Calculate box. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The invisible pins of this part. + + + + + + The name of the invisible pin. + + + + + + + + + + + + + The name of the negated pin. + + + + + + The negated pins of this part. + + + + + + The name of the automatic chosen template parameter. Not for InstructionRef + + + + + + + + + + + + The equation of this part. This is only used for the Calculate box. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.SCL_v4.xsd b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.SCL_v4.xsd index 572b4fa5..8ef89dc4 100644 --- a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.SCL_v4.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.SCL_v4.xsd @@ -1,20 +1,20 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.STL_v5.xsd b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.STL_v5.xsd index 63cec5e5..764e29ad 100644 --- a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.STL_v5.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.STL_v5.xsd @@ -1,482 +1,482 @@ - - - - - - - - - - - - - - missing for empty lines - - - - - - - - - Not allowed in STL - - - - - - - - - for NumBLs. NumBLs is informative - - - - - - - e.g 0 1 for NOP 0, NOP 1; STW for L STW or DILG for L DILG; only if separated by comment - - - - - - - Not allowed in STL - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SE, SV - - - - - - - SF, SA - - - - - SS - - - - - SD, SE - - - - - SP, SI - - - - - - - - - - AUF - - - - - AUF DI - - - - - - - - - - - - - - - - - - - - - - - SPA - - - - - SPB - - - - - SPO - - - - - SPZ - - - - - SPP - - - - - SPM - - - - - SPN - - - - - SPBN - - - - - SPBB - - - - - SPBNB - - - - - SPBI - - - - - SPBNI - - - - - SPS - - - - - SPU - - - - - SPMZ - - - - - SPZ - - - - - - - - - - - - SSD, SVD - - - - - SSW, SVW - - - - - - - - - - - - - - - - - - - - - - - - KEW, INV_F - - - - - KZW, NEG_F - - - - - KED - - - - - KZD - - - - - NEG_G, ND - - - - - ABS_G - - - - - - - - - - - - - - - - - DEF - - - - - DUF - - - - - DED - - - - - DUD - - - - - FDG - - - - - GFDN - - - - - GFDM - - - - - GFDP - - - - - - FD - - - - - TAW - - - - - TAD - - - - - - - +F - - - - - -F - - - - - xF - - - - - :F - - - - - +D - - - - - -D - - - - - xD - - - - - :D - - - - - - - - - - +G - - - - - -G - - - - - xG - - - - - :G - - - - - TAK - - - - - - - - - - - BEB - - - - - ) - - - - - - - - MCR( - - - - - MCR) - - - - - - - - - - - - TAR - - - - - TDB - - - - - - - - - - BEA - - - - - - + + + + + + + + + + + + + + missing for empty lines + + + + + + + + + Not allowed in STL + + + + + + + + + for NumBLs. NumBLs is informative + + + + + + + e.g 0 1 for NOP 0, NOP 1; STW for L STW or DILG for L DILG; only if separated by comment + + + + + + + Not allowed in STL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + SE, SV + + + + + + + SF, SA + + + + + SS + + + + + SD, SE + + + + + SP, SI + + + + + + + + + + AUF + + + + + AUF DI + + + + + + + + + + + + + + + + + + + + + + + SPA + + + + + SPB + + + + + SPO + + + + + SPZ + + + + + SPP + + + + + SPM + + + + + SPN + + + + + SPBN + + + + + SPBB + + + + + SPBNB + + + + + SPBI + + + + + SPBNI + + + + + SPS + + + + + SPU + + + + + SPMZ + + + + + SPZ + + + + + + + + + + + + SSD, SVD + + + + + SSW, SVW + + + + + + + + + + + + + + + + + + + + + + + + KEW, INV_F + + + + + KZW, NEG_F + + + + + KED + + + + + KZD + + + + + NEG_G, ND + + + + + ABS_G + + + + + + + + + + + + + + + + + DEF + + + + + DUF + + + + + DED + + + + + DUD + + + + + FDG + + + + + GFDN + + + + + GFDM + + + + + GFDP + + + + + + FD + + + + + TAW + + + + + TAD + + + + + + + +F + + + + + -F + + + + + xF + + + + + :F + + + + + +D + + + + + -D + + + + + xD + + + + + :D + + + + + + + + + + +G + + + + + -G + + + + + xG + + + + + :G + + + + + TAK + + + + + + + + + + + BEB + + + + + ) + + + + + + + + MCR( + + + + + MCR) + + + + + + + + + + + + TAR + + + + + TDB + + + + + + + + + + BEA + + + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.TypeSupervisions_v3.xsd b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.TypeSupervisions_v3.xsd index 3f9745f5..712d74fb 100644 --- a/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.TypeSupervisions_v3.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.PlcBlocks.TypeSupervisions_v3.xsd @@ -1,154 +1,154 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataAxis_v1.xsd b/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataAxis_v1.xsd index feffa1bb..cf4297ba 100644 --- a/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataAxis_v1.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataAxis_v1.xsd @@ -1,132 +1,132 @@ - - - - - - - - - - Describes additional data, such as Connections, for Axis and ExternalEncoder TOs. - - - - - - - - - - - Describes a connection of a TO interface. - - - - Specifies the Interface of the TO that is connected. - - - - - Input bit address. - - - - - Output bit address. - - - - - Connect option used when the connection has been created. - - - - - Index of sensor in actor telegram if connected to same telegram. - - - - - Path to a DB member. - - - - - Name of a connected tag for analog connection. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Contains a list of master values for TO_SynchronousAxis. - - - - - Describes a reference to a master value TO that is coupled via set points. - - - - - Describes a reference to a master value TO that is coupled via actual values. - - - - - Describes a reference to a master value TO that is coupled via delayed values. - - - - - Describes a reference to a master value TO of type LeadingAxisProxy. - - - - - - - - - Describes a reference to a Technological Object. - - - - Specifies the name of the referenced Technological Object. - - - - - Specifies the type of the referenced Technological Object. - - - - - + + + + + + + + + + Describes additional data, such as Connections, for Axis and ExternalEncoder TOs. + + + + + + + + + + + Describes a connection of a TO interface. + + + + Specifies the Interface of the TO that is connected. + + + + + Input bit address. + + + + + Output bit address. + + + + + Connect option used when the connection has been created. + + + + + Index of sensor in actor telegram if connected to same telegram. + + + + + Path to a DB member. + + + + + Name of a connected tag for analog connection. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Contains a list of master values for TO_SynchronousAxis. + + + + + Describes a reference to a master value TO that is coupled via set points. + + + + + Describes a reference to a master value TO that is coupled via actual values. + + + + + Describes a reference to a master value TO that is coupled via delayed values. + + + + + Describes a reference to a master value TO of type LeadingAxisProxy. + + + + + + + + + Describes a reference to a Technological Object. + + + + Specifies the name of the referenced Technological Object. + + + + + Specifies the type of the referenced Technological Object. + + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataKinematics_v1.xsd b/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataKinematics_v1.xsd index 568f342e..20a00733 100644 --- a/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataKinematics_v1.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataKinematics_v1.xsd @@ -1,97 +1,97 @@ - - - - - - - - - - Describes additional data, such as connected axes, for Kinematics TOs. - - - - - - - - - - - Describes a reference to a Technological Object. - - - - Specifies the name of the referenced Technological Object. - - - - - Specifies the name of the referenced Technological Object. - - - - - Specifies the type of the referenced Technological Object. - - - - - - - - - - - - - - - - Contains a list of leading values for conveyor tracking. - - - - - Describes a reference to a leading value TO that is coupled via set points. - - - - - Describes a reference to a leading value TO that is coupled via actual values. - - - - - Describes a reference to a leading value TO that is coupled via delayed values. - - - - - Describes a reference to a leading value TO of type LeadingAxisProxy. - - - - - - - - - Describes a reference to a Technological Object. - - - - Specifies the name of the referenced Technological Object. - - - - - Specifies the type of the referenced Technological Object. - - - - - + + + + + + + + + + Describes additional data, such as connected axes, for Kinematics TOs. + + + + + + + + + + + Describes a reference to a Technological Object. + + + + Specifies the name of the referenced Technological Object. + + + + + Specifies the name of the referenced Technological Object. + + + + + Specifies the type of the referenced Technological Object. + + + + + + + + + + + + + + + + Contains a list of leading values for conveyor tracking. + + + + + Describes a reference to a leading value TO that is coupled via set points. + + + + + Describes a reference to a leading value TO that is coupled via actual values. + + + + + Describes a reference to a leading value TO that is coupled via delayed values. + + + + + Describes a reference to a leading value TO of type LeadingAxisProxy. + + + + + + + + + Describes a reference to a Technological Object. + + + + Specifies the name of the referenced Technological Object. + + + + + Specifies the type of the referenced Technological Object. + + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataMeasuringInput_v1.xsd b/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataMeasuringInput_v1.xsd index 8d2b2934..aea69540 100644 --- a/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataMeasuringInput_v1.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataMeasuringInput_v1.xsd @@ -1,45 +1,45 @@ - - - - - - - - - - - Describes additional data, such as Connections, for MeasuringInput TOs. - - - - - - - - - - Describes a connection of a TO interface. - - - - Specifies the Interface of the TO that is connected. - - - - - Input bit address. - - - - - - - - - - - - + + + + + + + + + + + Describes additional data, such as Connections, for MeasuringInput TOs. + + + + + + + + + + Describes a connection of a TO interface. + + + + Specifies the Interface of the TO that is connected. + + + + + Input bit address. + + + + + + + + + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataOutputCam_v1.xsd b/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataOutputCam_v1.xsd index 7629aa23..5df6aa84 100644 --- a/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataOutputCam_v1.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_AdditionalDataOutputCam_v1.xsd @@ -1,49 +1,49 @@ - - - - - - - - - - - Describes additional data, such as Connections, for OutputCam and CamTrack TOs. - - - - - - - - - - Describes a connection of a TO interface. - - - - Specifies the Interface of the TO that is connected. - - - - - Output bit address. - - - - - Name of a connected tag. - - - - - - - - - - - + + + + + + + + + + + Describes additional data, such as Connections, for OutputCam and CamTrack TOs. + + + + + + + + + + Describes a connection of a TO interface. + + + + Specifies the Interface of the TO that is connected. + + + + + Output bit address. + + + + + Name of a connected tag. + + + + + + + + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_InterpreterProgram_v1.xsd b/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_InterpreterProgram_v1.xsd index b7110d89..796fc86a 100644 --- a/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_InterpreterProgram_v1.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_InterpreterProgram_v1.xsd @@ -1,13 +1,13 @@ - - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_Parameters_v1.xsd b/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_Parameters_v1.xsd index 17a4f01a..3e2ba829 100644 --- a/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_Parameters_v1.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_Parameters_v1.xsd @@ -1,38 +1,38 @@ - - - - - - - - - - - Describes a list of parameters. - - - - - - - - - - - Describes a single parameter, having Name and Value. If the Value is missing, the default value of the Parameter is used. - - - - Name of the Parameter - - - - - Value of the Parameter - - - - + + + + + + + + + + + Describes a list of parameters. + + + + + + + + + + + Describes a single parameter, having Name and Value. If the Value is missing, the default value of the Parameter is used. + + + + Name of the Parameter + + + + + Value of the Parameter + + + + diff --git a/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_ProfileDataCam_v1.xsd b/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_ProfileDataCam_v1.xsd index 20ee84fa..931fbaef 100644 --- a/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_ProfileDataCam_v1.xsd +++ b/externalDlls/siemens/V19/Schemas/SW.TechnologicalObjects_ProfileDataCam_v1.xsd @@ -1,345 +1,345 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/externalDlls/siemens/V19/Siemens.Engineering.Hmi.xml b/externalDlls/siemens/V19/Siemens.Engineering.Hmi.xml index 65beb66f..519800aa 100644 --- a/externalDlls/siemens/V19/Siemens.Engineering.Hmi.xml +++ b/externalDlls/siemens/V19/Siemens.Engineering.Hmi.xml @@ -1,182 +1,182 @@ - - - - Siemens.Engineering.Hmi - - - - - Represents an constant value. - - - - - Constructor - - Object - - - - Gets or sets the value of the Siemens.Engineering.Hmi.ConstValue. - - - - - Returns a String that represents the current Object. - - A String representing the current Object. - - - - Represents an object which can serve as a limit. - - - - - Represents an instant in time, typically expressed as a date and time - - - - - Constructor - - The System.DateTime to wrap and make nullable. - - - - Constructor - - The System.DateTime to wrap and make nullable. - The granularity of the wrapped System.DateTime. - - - - Constructor - - The NullableDataTime to copy. - - - - Constructor - - The string to be parsed and converted to a System.DateTime. - - - - The granularity of the wrapped System.DateTime. - - - - - Year - - - - - Month - - - - - Day - - - - - Hour - - - - - Minute - - - - - Second - - - - - The convertion operator used to convert a NullableDateTime to a System.DateTime. - - The NullableDateTime to be converted. - A System.DateTime created from the NullableDataTime. - - - - Indicates whether this objects are equal. - - The left value to compare. - The right value to compare. - true if the compared items are equalivalent; otherwise, false>. - - - - Indicates whether this objects are not equal. - - The left value to compare. - The right value to compare. - false if the compared items are equalivalent; otherwise, true>. - - - - Indicates whether this instance and a specified object are equal. - - Another object to compare to. - true if obj and this instance are the same type and represent the same value; otherwise, false. - - - - Returns the hash code for this instance. - - A 32-bit signed integer that is the hash code for this instance. - - - - Converts the value of the current NullableDateTime object to its equivalent string representation. - - A string representation of the value of the current NullableDateTime object. - - - - A value indicating the granularity of the data or time (eg. Year, Month, etc.). - - - - - None - - - - - Year - - - - - Month - - - - - Day - - - - - Hour - - - - - Minute - - - - - Second - - - - + + + + Siemens.Engineering.Hmi + + + + + Represents an constant value. + + + + + Constructor + + Object + + + + Gets or sets the value of the Siemens.Engineering.Hmi.ConstValue. + + + + + Returns a String that represents the current Object. + + A String representing the current Object. + + + + Represents an object which can serve as a limit. + + + + + Represents an instant in time, typically expressed as a date and time + + + + + Constructor + + The System.DateTime to wrap and make nullable. + + + + Constructor + + The System.DateTime to wrap and make nullable. + The granularity of the wrapped System.DateTime. + + + + Constructor + + The NullableDataTime to copy. + + + + Constructor + + The string to be parsed and converted to a System.DateTime. + + + + The granularity of the wrapped System.DateTime. + + + + + Year + + + + + Month + + + + + Day + + + + + Hour + + + + + Minute + + + + + Second + + + + + The convertion operator used to convert a NullableDateTime to a System.DateTime. + + The NullableDateTime to be converted. + A System.DateTime created from the NullableDataTime. + + + + Indicates whether this objects are equal. + + The left value to compare. + The right value to compare. + true if the compared items are equalivalent; otherwise, false>. + + + + Indicates whether this objects are not equal. + + The left value to compare. + The right value to compare. + false if the compared items are equalivalent; otherwise, true>. + + + + Indicates whether this instance and a specified object are equal. + + Another object to compare to. + true if obj and this instance are the same type and represent the same value; otherwise, false. + + + + Returns the hash code for this instance. + + A 32-bit signed integer that is the hash code for this instance. + + + + Converts the value of the current NullableDateTime object to its equivalent string representation. + + A string representation of the value of the current NullableDateTime object. + + + + A value indicating the granularity of the data or time (eg. Year, Month, etc.). + + + + + None + + + + + Year + + + + + Month + + + + + Day + + + + + Hour + + + + + Minute + + + + + Second + + + + diff --git a/externalDlls/siemens/V19/Siemens.Engineering.xml b/externalDlls/siemens/V19/Siemens.Engineering.xml index b230eea4..3f5b39b3 100644 --- a/externalDlls/siemens/V19/Siemens.Engineering.xml +++ b/externalDlls/siemens/V19/Siemens.Engineering.xml @@ -1,142584 +1,142584 @@ - - - - Siemens.Engineering - - - - - Represents TIA Portal. - - - - - IEngineeringRoot - - - - - IEngineeringObject - - - - - IEngineeringCompositionOrObject - - - - - IEngineeringInstance - - - - - Gets the parent of the instance. - - The parent of the instance. - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given name. - - The name of the attribute to get. - The attribute with the given name or a null if not found. - - - - Gets a list of attributes for the given names. - - The names of the attributes to get. - A list of the attributes for the given names with nulls for names not found. - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets an attribute with the given to the given value . - - The name of the attribute to set with the given . - The value to set for the attribute with the given . - - - - Sets the attributes with the given names to the given values as indicated in . - - A KeyValuePair list containing the names and values of attributes to be set. - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - /// A callback handler to decide how to proceed in a case of error - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - - - - - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - IEngineeringServiceProvider - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - Returns a collection of EngineeringServiceInfo objects describing the different services on this object. - - A collection of EngineeringServiceInfo objects describing the different services on this object. - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - Acquire an exclusive access session to the TIA Portal - - Siemens.Engineering.ExclusiveAccess - - - - Acquire an exclusive access session to the TIA Portal - - The text to present to the interactive user while an exclusive access session is active - Siemens.Engineering.ExclusiveAccess - - - - Initializes a new instance of the class. - - TIA Portal will start in this mode. - - - - Finalizer - - - - - Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - - - - - Gets the information of connected TIA Portal. - - The connected TIA Portal. - - - - Gets the information of all running TIA Portal processes. - - The running TIA Portal processes. - - - - Gets the information of the running TIA Portal. - - TIA Portal process ID. - An optional parameter that provides the ability to set a timeout. - The running TIA Portal. - - - - Gets the information of the running TIA Portal. - - TIA Portal process ID. - An optional parameter that provides the ability to set a timeout. - The running TIA Portal. - - - - The Authentication event for protected project.This will be triggerred only when opening the protected project without UmacDelegate - - - - - The confirmation event - - - - - The notification event. - - - - - Composition of global libraries - - - - - - Hardware Catalog - - - - - - Multiuser LocalSessions - - - - - - Multiuser Project Servers - - - - - - Composition of open projects - - - - - - The settings of the TIA portal - - - - - - The disposed event. - - - - - Mode how to start TIA Portal. - - - - - TIA Portal starts without user interface. - - - - - TIA Portal starts with user interface. - - - - - Represents a TIA Portal process. - - - - - Performs a close of the process. - - - - - Gets an additional instance of a TIA Portal that is attached to the TIA Portal process. - - A TIA Portal instance that is attached to the TIA Portal process.> - - - - Gets the time when the TIA Portal process was acquired. - - The time when the TIA Portal process was acquired. - - - - Gets the process ID of TIA Portal. - - The process ID of TIA Portal. - - - - The path to the executable of TIA Portal. - - The path to the project that is currently open in TIA Portal. If no project is open, this property will be null. - - - - Gets the mode of the attached TIA Portal. - - The mode of the attached TIA Portal. - - - - Gets the path of any project currently open in the attached TIA Portal. - - The path of any project currently open in the attached TIA Portal. - - - - Gets a list of other process attached to this same TIA Portal process. - - A list of other process attached to this same TIA Portal process. - - - - Gets a list of installed software of the TIA Portal process. - - A list of installed software of the TIA Portal process. - - - - The event that enables an application to approve any attempts to attach to TIA Portal. - - - - - Represents a TIA Portal session. - - - - - Performs a disconnect of the session. - - - - - Gets the attached session identifier. - - The attached session identifier. - - - - Gets the attached session version. - - The attached session version information. - - - - Gets a boolean value describing whether TIA Portal is in the middle of processing a call from this session. - - Returns true if TIA Portal is currently in the middle of processing a call from this session. - - - - Gets the attached session date and time. - - The attached session date and time. - - - - Gets time the process has spent actively using TIA Portal. - - Time that the process has spent actively using TIA Portal. - - - - Gets the access level of the process. - - The access level of the process. - - - - Indicates if the current session was started by a process that was signed, and if so, if it is an Openness certificate or not. - - A flag enum that represents trust authority. - - - - Gets the path to where the executable of the attached process lives. - - The path to where the executable of the attached process lives. - - - - Gets the attached session process ID. - - The attached session process ID. - - - - Represents a TIA Portal product. - - - - - Gets the product name. - - The product name. - - - - Gets the product version. - - The product version. - - - - Gets a list of installed options of the TIA Portal process. - - A list of installed options of the TIA Portal process. - - - - Attaching event arguments - - - - - Grants permission to the attaching Openness application to attach. - - - - - Gets version argument of the attaching event. - - The attaching event version information. - - - - Gets attaching process ID. - - The attaching process ID. - - - - Gets attaching event process path. - - The attaching event path information. - - - - Gets access level argument of the attaching event. - - The attaching event TIA Portal access level. - - - - Gets TIA Portal trust authority of the attaching event. - - The attaching event TIA Portal trust authority. - - - - Holds the object for the special EnforceClientProcessRequestAuthenticationAttribute attribute used as - marker for remoting service type proxy to request the server-side authentication of the client requests using this service proxy type. - Can be null if the is not found in the present assembly. - That can happen inside e.g. openness process as openness links only the IpcConnectionManager.cs without linking additionally the EnforceClientProcessRequestAuthenticationAttribute.cs. - - - - - The choices of customer to set a given attribute - - - - - Execution stops with recoverable exception. No changes are commited. - - - - - Execution continues. Invalid Attribute is ignored. - - - - - Object that is used to handle invalid attributes. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The currently chosen choice how to proceed with invalid attributes. - - - - - - The display message - - - - - - The name of the attribute - - - - - - Indicates that the given name is unsupported - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Indicates that the attribute is read only - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Indicates that the given value has an unsupported type - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Indicates that the given value unsupported - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - AuthenticationEventArgs to provide AuthenticationTypeProvider and credentials from user - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - AuthenticationTypeProvider provided differrent AuthenticationTypes - - - - - - UmacCredentials - - - - - - Provides different types of AuthenticationType - - - - - This type indicates the Credentials based Authentication type. - - - - - This type indicates the Single sign on based Authentication type. - - - - - This type indicates the Anonymous Authentication type. - - - - - This type indicates the UI based interactive Authentication type. - - - - - The list of possible confirmation choices - - - - - Select None - - - - - Select Ok - - - - - Select Yes - - - - - Select Yes to All - - - - - Abort the operation - - - - - Select Retry - - - - - Select Ignore - - - - - Select No - - - - - Select No to All - - - - - Cancel the operation - - - - - The confirmation result. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Gets the caption of the confirmation. - - The caption. - - - - Gets the choices of the confirmation. - - The choices. - - - - Gets the detail text of the confirmation. - - The detail text. - - - - Gets the icon. - - The icon. - - - - Gets or sets if the confirmation is handled. - - The confirmation. - - - - Gets or sets the result of the confirmation. - - The result. - - - - Gets the text of the confirmation. - - The text. - - - - The list of possible confirmation icons - - - - - Icon is General - - - - - Icon is Critical - - - - - Icon is an Error - - - - - The list of possible confirmation results - - - - - Ok selected - - - - - Yes selected - - - - - Yes to All selected - - - - - Operation aborted - - - - - Retry selected - - - - - Ignore selected - - - - - No selected - - - - - No to All selected - - - - - Operation cancelled - - - - - The list of possible ways to configure document info during export. - - - - - No document info is exported - - - - - ExportSetting part of document info is exported - - - - - InstalledProducts part of document info is exported - - - - - CreatedTimeStamp part of document info is exported - - - - - Whole document info is exported - - - - - Engineering Delegate Invocation Exception - - - - - Engineering Target Invocation Exception - - - - - Engineering exception. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Gets a message that describes the current exception. - - The message. - - - - Gets the stack trace of the current exception. - - The StackTrace. - - - - Gets the message data that describes the current exception. - - The message data. - - - - Gets the detail message data that describes the current exception. - - The list of message details. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Engineering Not Supported Exception - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Engineering Object Disposed Exception - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Engineering Out Of Memory Exception - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - throws when user password violates the security setting password policy - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Engineering Runtime Exception - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Engineering Security Exception - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Engineering User Abort Exception - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - The class representing an exclusive access session to the TIA Portal - - - - - Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Acquires a transaction instance from the active exclusive access session - - The persistence where the transaction is to be created - The description of the undo unit that is created for the open transaction - Siemens.Engineering.Transaction - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Indication if the user has requested a cancellation of the exclusive access session - - - - - - The information to display while an exclusive access session is active - - - - - - The list of possible scenarios supported by export action parameterization - - - - - Export including default values - - - - - Export excluding default and read-only values - - - - - Export including read-only values - - - - - Throws when a user who does not have required function right(s) to invoke an Openness API on a protected project - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Represents a TIAP project history event - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The time when the event occurred - - - - - - The event description - - - - - - Composition of HistoryEntries - - - - - IEngineeringComposition - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The element at the specified . - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is a collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Gets the collection of EngineeringCreateInfo objects describing the different CreateInfos on this object. - - The collection of EngineeringCreationInfo objects - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in . - - The specific type of object to be created. - The initial values for create parameters of the object being created. - An IEngineeringObject of initialized with values as indicated in ; otherwise an informative exception is thrown. - - - - Gets the number of elements contained within this Composition. - - The number of elements contained within this Composition. - - - - Gets a value indicating whether this Composition was instantiated as ReadOnly. - - true if this Composition was instantiated as ReadOnly; otherwise false. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Associated engineering objects - - - - - IEngineeringAssociation - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The element at the specified . - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Gets the number of elements contained within this association. - - The number of elements contained within this association. - - - - Gets a value indicating whether this association was instantiated as ReadOnly. - - true if this association was instantiated as ReadOnly; otherwise false. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The interface representing an engineering service - - - - - Access to Showable attributes - - - - - Flag to indicate to show in the editor - - - - - Access to SystemObject attributes - - - - - Indicates if this instance is a system object - - - - - - An interface indication that the item supports transactions - - - - - The list of possible options for Import - - - - - Throw if exists - - - - - Override existing - - - - - Skip the cultures and texts If the cultures indicated in a SimaticML file are not active in the project where it is being imported. - - - - - Activate the culture and import the text as well, if the cultures indicated in a SimaticML file are valid and supported in the project where it is being imported but are not active. - - - - - Represents a language that can be enabled in this Project - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The culture info object - - - - - - Collection of Languages. - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Adds an . - - The item to be added. - - - - Removes an . - - The item to be removed. - true if the item was removed; otherwise false. - - - - Searches for a language by a given culture. - - Language culture - Siemens.Engineering.Language - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Composition of Languages - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Searches for a language by a given culture. - - Language culture. - Siemens.Engineering.Language - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a language settings object. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - The collection of all supported languages. - - - - - - EOM parent of this object - - - - - - The collection of active languages. - - - - - - Represents an editing language. - - - - - - Represents a reference language. - - - - - - Throws when license not found to execute a TIA portal operation using openness API. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Represents a String in multiple language translations - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Contains a collection of multilingual text items. - - - - - - EOM parent of this object - - - - - - Multilingual text item. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents language of this item. - - - - - - Represents text content. - - - - - - Collection of multilingual text items. - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Searches multilingual text item by language. - - Language to find. - Siemens.Engineering.MultilingualTextItem - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Non Recoverable Exception. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Gets a message that describes the current exception. - - The message. - - - - Gets the stack trace of the current exception. - - The Stacktrace. - - - - Gets the message data that describes the current exception. - - The message data. - - - - Gets the detail message data that describes the current exception. - - The list of message details. - - - - The confirmation result. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Gets the caption of the confirmation. - - The caption. - - - - Gets the detail text of the confirmation. - - The detail text. - - - - Gets the icon. - - The icon. - - - - Gets or sets if the notification is handled. - - The confirmation. - - - - Gets the text of the notification. - - The text. - - - - The list of possible notification icons - - - - - Notification icon is Success - - - - - Notification icon is Information - - - - - Notification icon is a Warning - - - - - Notification icon is an Error - - - - - The modification state of an item being opened. - - - - - The library can only be read from - - - - - The library can be read from and written to - - - - - throws when user try to set or get password policy settings - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Represents a project - - - - - Base Class for Projects - - - - - Target for pasting a library master copy - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Export project text to an xlsx file - - Path to the xlsx file - The source language to use for the export of project texts - The target language to use for the export of project texts - - - - Import project text from an import file - - Path to the xlsx file - True if the source language is to be updated - Siemens.Engineering.ProjectTextResult - - - - Protects the project - - Administrator user name must be provided and it shouldn't be empty - Administrator user password must be added and it shouldn't be null or empty - - - - Show the indicated item in the HW editor of the attached TIA Portal - - Which view of the HW editor to show - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - The project's comment - - - - - - Composition of device user groups - - - - - - Composition of devices - - - - - - Composition of graphics - - - - - - Contains log of project history events - - - - - - Composition of HW extensions - - - - - - Project's language settings. - - - - - - EOM parent of this object - - - - - - Plant views - - - - - - Gets the project library - - - - - - Composition of Subnets - - - - - - Gets the devices system group - - - - - - Composition of used products in the project - - - - - - Author of the project - - - - - - Project copyright information - - - - - - The creation time of the project - - - - - - The project family - - - - - - True if there are unsaved changes to the project - - - - - - Indicates whether the project is the primary project - - - - - - To indicate whether Support for Simulation during block compilation is enabled for the project - - - - - - To indicate whether Support for Virtual PLC during block compilation is enabled for the project - - - - - - The time of the last modification of the project - - - - - - The project was last modified by this user. - - - - - - The name of the Project - - - - - - The path to this project - - - - - - The size of the project in KB - - - - - - The version of this project - - - - - - Archives the current project - - Directory where the project to be archived - File name for the archived file - Archivation mode - - - - Closes the project - - - - - Saves all changes of the project - - - - - Saves all changes of the project to a new location. - - Target location for newly SavedAs project - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Archivation mode - - - - - None - - - - - Compressed - - - - - Discards Restorable Data - - - - - Discards Restorable Data and compresses - - - - - Composition of Projects - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Open Action - - Path to the Tia Portal project file - Siemens.Engineering.Project - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project - - - - Open project and authenticate with UMAC if necessary. - - Path to the Tia Portal project file. - Delegate that will be called if user authentication with UMAC is required. - Siemens.Engineering.Project - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. - - - - Open project and authenticate with UMAC if necessary. - - Path to the Tia Portal project file. - Delegate that will be called if user authentication with UMAC is required. - Open mode. - Siemens.Engineering.Project - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. - - - - Open Action with project update is necessary - - Path to the Tia Portal project file - Siemens.Engineering.Project - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. - - - - Open Action with project update and authenticate with UMAC if necessary. - - Path to the Tia Portal project file. - Delegate that will be called if user authentication with UMAC is required. - Siemens.Engineering.Project - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. - - - - Open Action with project update and authenticate with UMAC if necessary. - - Path to the Tia Portal project file. - Delegate that will be called if user authentication with UMAC is required. - Open mode. - Siemens.Engineering.Project - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. - - - - Retrieves an archived project - - The path of the archived project file - The path to the folder where project would be retrieved. - Siemens.Engineering.Project - - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. - - - - Retrieves an archived project with UMAC - - The path of the archived project file - The path to the folder where project would be retrieved. - Delegate will be called if the project is protected and user authentication is required. If the project is not protected, then null can be passed as parameter - Siemens.Engineering.Project - - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. - - - - Retrieves an archived project with UMAC and opens the project as Primary or Secorndary - - The path of the archived project file - The path to the folder where project would be retrieved. - Delegate will be called if the project is protected and user authentication is required.If the project is not protected, then null can be passed as parameter - Project Open Mode - Siemens.Engineering.Project - - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. - - - - Retrieves a project from an archive and upgrades it to the current version - - The path of the archived project file - The path to the folder where project would be retrieved. - Siemens.Engineering.Project - - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. - - - - Retrieves a project from an archive and upgrades it to the current version with umac - - The path of the archived project file - The path to the folder where project would be retrieved. - Delegate will be called if the project is protected and user authentication is required.If the project is not protected, then null can be passed as parameter - Siemens.Engineering.Project - - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. - - - - Retrieves a project from an archive and upgrades it to the current version - - The path of the archived project file - The path to the folder where project would be retrieved. - Delegate will be called if the project is protected and user authentication is required.If the project is not protected, then null can be passed as parameter - Project Open Mode - Siemens.Engineering.Project - - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. - - - - Create Action - - Directory that will contain project's folder. - The name of a project to be created. - Siemens.Engineering.Project - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Project open mode - - - - - Opens file as the primary project. - - - - - Opens file as a secondary project. - - - - - Represents a project text result - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Path to a text result - - - - - - Final state of the project text result - - - - - - The state of project text result - - - - - Info state - - - - - Warning state - - - - - Error state - - - - - Throws when simaticML version provided for an export API does not support in current TiaPortal - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - The access level of the associated TIA Portal - - - - - No access level - - - - - Internal use only. - - - - - Internal use only. - - - - - Modify access - - - - - Access to published features - - - - - Internal use only. - - - - - Internal use only. - - - - - The trust authority of the associated TIA Portal - - - - - No trust authority - - - - - Signed - - - - - Certified - - - - - Certified with expiration - - - - - Feature tokens - - - - - Represents an open transaction in a persistence (i.e. single unit of work) - - - - - Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Commit transaction when disposed - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Indicates if the transaction can be committed. - - - - - - Indicates if a commit has been requested. - - - - - - Object that is used to authenticate user. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Set password. - - Password - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - User name. - - - - - - User Type - - - - - - The delegate that will called back for user credetials if project is protected. - - UmacCredetials instance - - - - User type. - - - - - Project user. - - - - - Global user. - - - - - Represents a product used by a project - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the used product - - - - - - The product version - - - - - - Composition of UsedProducts - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Defines the contract of a Protection Provider, should be used as the base class for client-specific ProtectionProviders - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets the invalid characters from the user password input - - System.Collections.Generic.IEnumerable<System.Char> - - - - Sets protection for the underlying object - - the password to protect the object with - - - - Removes protection from the underlying object - - the password the underlying object is currently protected with - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Cax Import Merge options - - - - - Move to ParkingLot folder - - - - - Overwrites existing items - - - - - Retain existing items - - - - - Service Provider for CAx Export/Import operations - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Command to CAx Export at Device level - - Device to Export - Export file path - Siemens.Engineering.Cax.TransferResult - - - - Command to CAx Export at Single/Multi user Project level - - Project to Export. Project can be single user or Multi-user. - Export file Path - Siemens.Engineering.Cax.TransferResult - - - - Command to CAx Export at Device level - - Device to Export - Export file path - Log file path - System.Boolean - - - - Command to CAx Export at Project level - - Project to Export - Export file Path - Log file Path - System.Boolean - - - - Command to CAx Export at Single/Multi user Project level - - Project to Export. Project can be single user or Multi-user. - Export file Path - Log file Path - System.Boolean - - - - Command to CAx Import - - Import file path - Cax Import Merge options - Siemens.Engineering.Cax.TransferResult - - - - Command to CAx Import - - Import file path - Log file path - Cax Import Merge options - System.Boolean - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The results of a CAx transfer - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Collection of output messages for the result of a given transfer scenario - - - - - - EOM parent of this object - - - - - - Number of errors in a given CAx transfer scenario - - - - - - Final state of a given transfer scenario - - - - - - Number of warnings in a given CAx transfer scenario - - - - - - Transfer result message - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Access to the transfer result messages for a given transfer scenario - - - - - - EOM parent of this object - - - - - - Date and time in a transfer result message - - - - - - Number of errors in a transfer result message - - - - - - Description or content of a transfer result message - - - - - - Final state in a transfer result message - - - - - - Number of warnings in a transfer result message - - - - - - Composition of transfer result message - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The list of possible transfer result states - - - - - Transfer finished successfully - - - - - Transfer finished with information - - - - - Transfer finished with warnings - - - - - Transfer finished with errors - - - - - Summary object that contains the result of a comparison - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Browse to the element containing the result of a given compare scenario - - - - - - Compare results on an element - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Browse to the collection of compare scenarios on a single element - - - - - - EOM parent of this object - - - - - - The result of a comparison - - - - - - Information on the result of a given compare scenario - - - - - - Left side name of a compare scenario on a single element - - - - - - Right side name of a compare scenario on a single element - - - - - - Composition of CompareResultElements - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The list of possible states of a compare result - - - - - Folder contents has one or more differences - - - - - Folder content is identical - - - - - Folder contents have one or more differences, folder's own state different - - - - - Folder content is the same, folder's own state is different - - - - - Objects are different - - - - - Left object is missing - - - - - Right object is missing - - - - - These 2 objects are identical - - - - - Comparison of these 2 objects is irrelevant - - - - - The class that provides compilation of an item - - - - - An interface indication that the item supports compilation - - - - - Compiles the item - - Siemens.Engineering.Compiler.CompilerResult - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Compiles the item - - Siemens.Engineering.Compiler.CompilerResult - - - - EOM parent of this object - - - - - - The results of a compilation - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Collection of output messages for the result of a given compile scenario - - - - - - EOM parent of this object - - - - - - Number of errors in a given compile scenario - - - - - - Final state of a given compile scenario - - - - - - Number of warnings in a given compile scenario - - - - - - Compilation results message - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Access to the compiler messages for a given compile scenario - - - - - - EOM parent of this object - - - - - - Date and time in a compiler message - - - - - - Description or content of a compiler message - - - - - - Number of errors in a compiler message - - - - - - Path to a compiler message - - - - - - Final state in a compiler message - - - - - - Number of warnings in a compiler message - - - - - - Composition of CompareResultMessages - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The list of possible compiler result options - - - - - Compile finished successfully - - - - - Compile finished with information - - - - - Compile finished with warnings - - - - - Compile finished with errors - - - - - Online accessible device - - - - - Connection cofiguration path to a device. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The subnet-address of the accessible device - - - - - - The accessible device series e.g. 'S7-1500' - - - - - - The MAC address of the accessible device - - - - - - Name of the accessible device - - - - - - The connection configuration address - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The nodeaddress as string - - - - - - The name of the configuration address - - - - - - Composition of ConfigurationAddresses - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create an address - - Address of node - Siemens.Engineering.Connection.ConfigurationAddress - - - - Finds a given configuration address - - Name to find - Siemens.Engineering.Connection.ConfigurationAddress - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The connection configuration gateway - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of configuration addresses - - - - - - EOM parent of this object - - - - - - The name of the configuration gateway - - - - - - Composition of ConfigurationGateways - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a given configuration gateway - - Name to find - Siemens.Engineering.Connection.ConfigurationGateway - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The connection configuration mode - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Composition of Pc interfaces - - - - - - The name of the configuration mode - - - - - - Composition of ConfigurationModes - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a given configuration mode - - Name to find - Siemens.Engineering.Connection.ConfigurationMode - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The connection configuration pc interface - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Delivers a list of accessible devices - - System.Collections.Generic.IList<Siemens.Engineering.Connection.ConfigurationAccessibleDevice> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of configurationAddress - - - - - - EOM parent of this object - - - - - - Composition of configuration Subnets - - - - - - Composition of configuration target interfaces - - - - - - The name of the configuration Pc interface - - - - - - Number identifying PcInterface - - - - - - Composition of ConfigurationPcInterfaces - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a given configuration pc interface - - Name to find - Number to find - Siemens.Engineering.Connection.ConfigurationPcInterface - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The connection configuration subnet - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of configuration addresses - - - - - - Get all gateways associated with this subnet - - - - - - EOM parent of this object - - - - - - The name of the configuration Subnet - - - - - - Composition of ConfigurationSubnets - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a given configuration Subnet - - Name to find - Siemens.Engineering.Connection.ConfigurationSubnet - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The connection configuration target interface - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of configurationAddress - - - - - - EOM parent of this object - - - - - - The name of the configuration target interface - - - - - - Composition of ConfigurationTargetInterfaces - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a given configuration target interface - - Name to find - Siemens.Engineering.Connection.ConfigurationTargetInterface - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Provides the online connection - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - If online is configured, then apply the configuration - - The address to apply the configuration - System.Boolean - - - - If online is configured, then apply the configuration - - The target interface for which to apply the configuration - System.Boolean - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Event for OnlineConfigurations like legitimation and secure communication. - - - - - Composition of configuration modes - - - - - - EOM parent of this object - - - - - - Disable Tls (Transport Layer Security) protocol. - - - - - - Indicates if the connection is configured - - - - - - Represents the access type of an CrossReference referenced object - - - - - Represents an undefined access value - - - - - Read only access - - - - - Write access - - - - - Read and write access - - - - - Represents the case when access type is not known - - - - - Definition access - - - - - Declaration access - - - - - Interface access - - - - - Jump access - - - - - Monitor access - - - - - Modify access - - - - - Force access - - - - - Call access - - - - - Unconditional block call access - - - - - Conditional block call access - - - - - Multiple instance access - - - - - Single instance access - - - - - Open access - - - - - Interlock access - - - - - Supervision access - - - - - Action access - - - - - Transition access - - - - - Read only access - - - - - Write access - - - - - Read and write access - - - - - Single instance access - - - - - Multiple instance access - - - - - PRODIAG supervision access - - - - - Initialization access - - - - - Declaration access - - - - - Declaration access - - - - - TypeAlarm access - - - - - InstanceAlarm access - - - - - Parameter instance access - - - - - Parameter instance access - - - - - CreateReference access - - - - - Create reference access - - - - - Represents the type of filters supported by cross reference service - - - - - Returns cross references for source object(s) - - - - - Returns cross references only for source object(s) with references - - - - - Returns cross references only for source object(s) without references - - - - - Returns cross references only for unused source object(s) - - - - - Represents the cross references result for an object - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Get the source object(s) on which cross reference is performed - - - - - - Represent an abstract CrossReference service object - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets the cross references for an object - - Represents the type of CrossReference filter - Siemens.Engineering.CrossReference.CrossReferenceResult - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - CrossReference Location object - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The access type of a referenced location object - - - - - - The address of a referenced location object - - - - - - The name of a referenced location object - - - - - - The reference location of a referenced object - - - - - - The reference type of a referenced location object - - - - - - Represents the underlying referenced as engineering object - - - - - - The name of the referenced as object - - - - - - The type name of a referenced location object - - - - - - Location composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents the CrossReference Reference object - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Get the locations of a referenced object - - - - - - EOM parent of this object - - - - - - The address of an CrossReference reference object - - - - - - The device name of an CrossReference reference object - - - - - - The name of an CrossReference reference object - - - - - - The path of an CrossReference reference object - - - - - - The type name of an CrossReference reference object - - - - - - Represents the underlying reference engineering object - - - - - - ReferenceObject Composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents the reference type of an CrossReference reference object - - - - - "Uses" relation, Represents a case when some object uses another one - - - - - "Used by" relation, Represents a case when some object is used by another one. - - - - - "Undefined" relation. Represents a relation that is not defined, The default ReferenceType value. - - - - - "TypeInstance" relation, Represents the case when some object is representing the type of another one. - - - - - "InstanceType" relation, Represents the case when some object is instance of another one - - - - - "Assigns" relation. Represents the case when some object is assigned as a parameter to another one - - - - - "Belongs" relation. Represents the case when some object belongs to another one - - - - - "Contains" relation. Represents the case when some object contains another one, is the opposite one to the "Belongs" relation. - - - - - "Defines" relation, Represents the case when some object defines another one - - - - - "DefinedBy" relation, Represents the case when some object is defined by another one - - - - - "Overlaps" relation, Represents the case when some object shares the same address range (fully or partially) with another object - - - - - "Scope" relation, Represents the case when some object defines a scope for another one. - - - - - "Unknown" relation, Represents the case when relationship between objects are not known/error in relationship - - - - - Represents the CrossReference SourceObject - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Get the children of the source object - - - - - - EOM parent of this object - - - - - - Get the references of the source object - - - - - - The address of an CrossReference source object - - - - - - The device name of an CrossReference source object - - - - - - The name of an CrossReference source object - - - - - - The path of an CrossReference source object - - - - - - The type name of an CrossReference source object - - - - - - The underlying source engineering object - - - - - - SourceObject composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Throws if CustomIdentity is not found for a given key. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - The class for setting and getting the user defined key-value - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Get the value for the given key - - The user defined key - System.String - - - - Remove CustomIdentity entry for the given key - - The key to which the custom identity entry to be deleted. - Throws if CustomIdentity for a given key is not found. - - - - The user defined key and value to set - - User defined key - User defined value - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - - - Configuration that allows to modify download. - - - - The list of possible download options - - - - - Download nothing - - - - - Download hardware. Complete download when used alone, delta download when used in combination with SoftwareOnlyChanges. - - - - - Download software all. Do not combine with SoftwareOnlyChanges - - - - - Download software only changes. Do not combine with Software - - - - - Service provides download functionality - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Downloads hardware and software into a folder - - Path where the configuration will be downloaded to - This delegate will be called for each configuration before the download. - Siemens.Engineering.Download.DownloadResult - - - - Downloads hardware and software to the device - - Connection cofiguration path to a device. - This delegate will be called for each configuration before the download. - This delegate will be called for each configuration after the download. - Download options - Siemens.Engineering.Download.DownloadResult - - - - Download Hardware and Software to a target with specific IP-Address - - Connection cofiguration path to a device. - Configuration address for station download - This delegate will be called for each configuration before the download. - This delegate will be called for each configuration after the download. - Download options - Siemens.Engineering.Download.DownloadResult - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Connection Configuration. - - - - - - EOM parent of this object - - - - - - The results of a download - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Collection of output messages for the result of a given download scenario. - - - - - - EOM parent of this object - - - - - - Number of errors in a given download scenario - - - - - - Final state of a given compile scenario - - - - - - Number of warnings in a given download scenario - - - - - - Download result message - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Access to the download messages for a given download scenario - - - - - - EOM parent of this object - - - - - - Date and time in a download message - - - - - - Number of errors in a download message - - - - - - Description or content of a download message - - - - - - Final state in a download message - - - - - - Number of warnings in a download message - - - - - - Composition of download result messages. - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The list of possible compiler result options - - - - - Download finished successfully - - - - - Download finished with information - - - - - Download finished with warnings - - - - - Download finished with errors - - - - - Service provides download functionality for R/H systems - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Downloads hardware and software into a folder - - Path where the configuration will be downloaded to - This delegate will be called for each configuration before the download. - Siemens.Engineering.Download.DownloadResult - - - - Downloads hardware and software to the backup device - - Connection cofiguration path to a device. - This delegate will be called for each configuration before the download. - This delegate will be called for each configuration after the download. - Download options - Siemens.Engineering.Download.DownloadResult - - - - Downloads hardware and software to the backup device with specific address - - Connection cofiguration path to a device. - Configuration address for station download - This delegate will be called for each configuration before the download. - This delegate will be called for each configuration after the download. - Download options - Siemens.Engineering.Download.DownloadResult - - - - Downloads hardware and software to the primary device - - Connection cofiguration path to a device. - This delegate will be called for each configuration before the download. - This delegate will be called for each configuration after the download. - Download options - Siemens.Engineering.Download.DownloadResult - - - - Downloads hardware and software to the primary device with specific address - - Connection cofiguration path to a device. - Configuration address for station download - This delegate will be called for each configuration before the download. - This delegate will be called for each configuration after the download. - Download options - Siemens.Engineering.Download.DownloadResult - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Connection Configuration. - - - - - - EOM parent of this object - - - - - - Active test and commissioning functions could be canceled by loading to the device. - - - - - Download configuration that provides choices. - - - - - Donwload configuration base class. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Descriptions of this onfiguration - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for ActiveTestCanBeAborted configuration - - - - - No action - - - - - Accept all - - - - - Active test and commissioning functions could prevent loading to the device. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for ActiveTestCanPreventDownload configuration - - - - - NoAction - - - - - Accept all - - - - - Download all alarm texts and text list texts - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for AlarmTextLibrariesDownload configuration - - - - - Consistent download - - - - - No action - - - - - Download software to device - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for AllBlocksDownload configuration - - - - - Download all blocks to the device - - - - - Block binding password configuration - - - - - Download password configuration. - - - - - Sets password - - Required password. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Is secure communication used. - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Checks before downloading to the device. - - - - - Download configuration that can be checked/unchecked. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies if this configuration checked. - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Download software to device - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for ConsistentBlocksDownload configuration - - - - - Consistent download - - - - - Different memory reserves in the online block and offline block are preventing "Download without reinitialization". - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for DataBlockReinitialization configuration - - - - - All data values, including retain data, will be initialized with their defined start values during loading. Set the PLC to STOP before loading. - - - - - No action regarding "Download with reinitialization". - - - - - Differences between configured and target modules (online) - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for DifferentTargetConfiguration configuration - - - - - No action - - - - - Accept all - - - - - Different data formats in online and offline project. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Based on this option dynamic certificates will be deleted - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The download must be expanded beyond your selection. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for ExpandDownload configuration - - - - - No action - - - - - Download - - - - - Components with a different version are installed on the target device. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The modules will initialize memory. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for InitializeMemory configuration - - - - - No action - - - - - Accept all - - - - - Load identification data to the PROFINET IO devices and their modules. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for LoadIdentificationData configuration - - - - - Load nothing - - - - - Load data - - - - - Enter a password to gain read access to the module. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Enter a password to gain write access to the module - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Overwrite if object exists online? - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Overwrite - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for OverwriteOnMemoryCard configuration - - - - - No action - - - - - Download to memory card - - - - - Delete and replace system data in target - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for OverwriteSystemData configuration - - - - - No action - - - - - Download to device - - - - - There are differences between the settings for the project and the settings for PLC programming. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Set the PlcMasterSecret password for download - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - CPU protection will be changed to a lower level. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for ProtectionLevelChanged configuration - - - - - No change - - - - - Continue downloading to the device - - - - - Reset module - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for ResetModule configuration - - - - - No action - - - - - Delete all - - - - - Available selections for LoadIdentificationData configuration - - - - - Accept All - - - - - Delete Selected - - - - - Delete All - - - - - Based on this option dynamic certificates will be deleted - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Start modules after downloading to device. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for StartBackupModules configuration - - - - - No action - - - - - Switch To Primary Cpu - - - - - Start module - - - - - Start modules after downloading to device. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for StartModules configuration - - - - - No action - - - - - Start module - - - - - The modules are stopped for downloading to device. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - The modules are stopped for downloading to device. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for StopHSystemOrModule configuration - - - - - No action - - - - - Stop R/H-System - - - - - Stop module - - - - - Available selections for StopHSystem configuration - - - - - No action - - - - - Stop R/H-System - - - - - The modules are stopped for downloading to device. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for StopModules configuration - - - - - No action - - - - - Stop all - - - - - Start modules after downloading to device. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for SwitchBackupToPrimary configuration - - - - - No action - - - - - Change to Primary - - - - - Download Software for Cpu or PlcSim - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for Target Device configuration - - - - - created software will be used in a real plc - - - - - created software will be used in a plc sim advanced plc instance - - - - - Turn off the sequence before loading. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Different project versions in the configured device and target device (online). - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Based on this option UMAC user management data will be downloaded - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for downloading umac user configuration - - - - - Keep online user management data - - - - - Update user management data but keep online password - - - - - Download all user management data (reset to project) - - - - - Wait on reboot of a pc system. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuation. - - - - - - Available selections for WaitOnReboot configuration. - - - - - Does not wait for a pc system reboot. - - - - - Waits until the reboot is done or timeout - - - - - Baseclass for all FingerprintDataItems - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Type of item delivers the fingerprintdataitem - - - - - - The value of the fingerprintdataitem - - - - - - Composition of FingerprintDateItems - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Service provides fingerprintdata functionality - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Contains a composition of fingerprintdataitems - - Configuration address for fingerprintdata - Online configuration delegate - Siemens.Engineering.FingerprintData.FingerprintDataResult - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Connection Configuration. - - - - - - EOM parent of this object - - - - - - Result of action GetFingerprintData - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of fingerprintdataitems - - - - - - EOM parent of this object - - - - - - Possible values for property AM1InputsActiveInputs - - - - - Value1Input - - - - - Value2Inputs - - - - - Possible values for property AM1InputsInputSignal - - - - - Value0To20ma - - - - - Value4To20ma - - - - - Possible values for property AM1InputsResponseToOpenCircuit - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property AM1LowerTripLevelActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpfOn - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property AM1LowerTripLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Trip - - - - - Possible values for property AM1LowerWarningLevelActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpfOn - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property AM1LowerWarningLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property AM1OutputsOutputSignal - - - - - Value0To20ma - - - - - Value4To20ma - - - - - Possible values for property AM1UpperTripLevelActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpfOn - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property AM1UpperTripLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Trip - - - - - Possible values for property AM1UpperWarningLevelActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpfOn - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property AM1UpperWarningLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property AM2InputsActiveInputs - - - - - Value1Input - - - - - Value2Inputs - - - - - Possible values for property AM2InputsInputSignal - - - - - Value0To20ma - - - - - Value4To20ma - - - - - Possible values for property AM2InputsResponseToOpenCircuit - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property AM2LowerTripLevelActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpfOn - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property AM2LowerTripLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Trip - - - - - Possible values for property AM2LowerWarningLevelActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpfOn - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property AM2LowerWarningLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property AM2OutputsOutputSignal - - - - - Value0To20ma - - - - - Value4To20ma - - - - - Possible values for property AM2UpperTripLevelActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpfOn - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property AM2UpperTripLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Trip - - - - - Possible values for property AM2UpperWarningLevelActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpfOn - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property AM2UpperWarningLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property Activation - - - - - PowerStageDisabled - - - - - PowerStageActive - - - - - PowerStageActiveStopCurrent - - - - - Possible values for property ActivePowerLowerTripLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Trip - - - - - Possible values for property ActivePowerLowerWarningLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property ActivePowerUpperResponseToTripLevel - - - - - Deactivated - - - - - Signal - - - - - Trip - - - - - Possible values for property ActivePowerUpperWarningLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - The object holding the address data - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Assign the current process image to the OB. - - The organizational block to assign. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Address's associated AddressControllers - - - - - - The IO type of the address - - - - - - Length of the address - - - - - - The start address of this address - - - - - - Associated addresses - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Composition of Addresses - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - AddressContext of an address - - - - - Address context: None - - - - - Address context: Device - - - - - Address context: Head - - - - - Address IO type - - - - - Address IO type: None - - - - - Address IO type: Input - - - - - Address IO type: Output - - - - - Address IO type: Substitute - - - - - Address IO type: Diagnosis - - - - - Possible values for property AmplifierBoost - - - - - Deactivated - - - - - Activated - - - - - No - - - - - Yes - - - - - Possible values for property ApplicationControlFunction - - - - - OverloadRelay - - - - - DirectStarter - - - - - ReversingStarter - - - - - MoldedCaseCircuitBreaker - - - - - StarDeltaStarter - - - - - StarDeltaReversingStarter - - - - - DahlanderStarter - - - - - DahlanderReversingStarter - - - - - PoleChangingStarter - - - - - PoleChangingReversingStarter - - - - - SolenoidValve - - - - - Positioner1 - - - - - Positioner2 - - - - - Positioner3 - - - - - Positioner4 - - - - - Positioner5 - - - - - SoftStarter - - - - - SoftStarterWithReversingContactor - - - - - Possible values for property ApplicationControllerActive - - - - - Deactivated - - - - - Active - - - - - Possible values for property AsiMultipleAddressDetection - - - - - Deactivated - - - - - ActivatedForAsi30V - - - - - ActivatedForAsi24V - - - - - Possible values for property AsiProfileID - - - - - Value0 - - - - - Value1 - - - - - Value2 - - - - - Value3 - - - - - Value4 - - - - - Value5 - - - - - Value6 - - - - - Value7 - - - - - Value8 - - - - - Value9 - - - - - ValueA - - - - - ValueB - - - - - ValueC - - - - - ValueD - - - - - ValueE - - - - - ValueF - - - - - Possible values for property AsiProfileID1 - - - - - Value0 - - - - - Value1 - - - - - Value2 - - - - - Value3 - - - - - Value4 - - - - - Value5 - - - - - Value6 - - - - - Value7 - - - - - Value8 - - - - - Value9 - - - - - ValueA - - - - - ValueB - - - - - ValueC - - - - - ValueD - - - - - ValueE - - - - - ValueF - - - - - Possible values for property AsiProfileIO - - - - - Value0 - - - - - Value1 - - - - - Value2 - - - - - Value3 - - - - - Value4 - - - - - Value5 - - - - - Value6 - - - - - Value7 - - - - - Value8 - - - - - Value9 - - - - - ValueA - - - - - ValueB - - - - - ValueC - - - - - ValueD - - - - - ValueE - - - - - ValueF - - - - - Possible values for property BaseFrequency - - - - - Value800 - - - - - Value400 - - - - - Value200 - - - - - Value80 - - - - - Value40 - - - - - Value20 - - - - - Value8 - - - - - Value4 - - - - - Value2000 - - - - - Possible values for property BasicType - - - - - None - - - - - Value1 - - - - - Value2 - - - - - Value3 - - - - - Possible values for property BasicUnitInputsDebouncingTimes - - - - - Value6 - - - - - Value16 - - - - - Value26 - - - - - Value36 - - - - - Devices baud rate - - - - - No Baud rate - - - - - Baud rate of 9600 - - - - - Baud rate of 19200 - - - - - Baud rate of 45450 - - - - - Baud rate of 93750 - - - - - Baud rate of 187500 - - - - - Baud rate of 500000 - - - - - Baud rate of 1500000 - - - - - Baud rate of 3000000 - - - - - Baud rate of 6000000 - - - - - Baud rate of 12000000 - - - - - Possible values for property BehaviorOfCounterValueAfterCaptureDI0 - - - - - ContinueCounting - - - - - SetToStartValueAndContinueCounting - - - - - Possible values for property BehaviorOfCounterValueAfterCaptureDI1 - - - - - ContinueCounting - - - - - SetToStartValueAndContinueCounting - - - - - Possible values for property BehaviorOfCounterValueAfterCaptureDI2 - - - - - ContinueCounting - - - - - SetToStartValueAndContinueCounting - - - - - Possible values for property BehaviorOfDI4 - - - - - DigitalInputWithoutFunction - - - - - GateStartOrStopLevelTriggered - - - - - Possible values for property BehaviorOfDI5 - - - - - DigitalInputWithoutFunction - - - - - CountDirection - - - - - Possible values for property BehaviorOfDI6 - - - - - DigitalInputWithoutFunction - - - - - GateStartOrStopLevelTriggered - - - - - Possible values for property BehaviorOfDI7 - - - - - DigitalInputWithoutFunction - - - - - CountDirection - - - - - Possible values for property BlockingCurrent - - - - - None - - - - - Value150 - - - - - Value200 - - - - - Value250 - - - - - Value300 - - - - - Value350 - - - - - Value400 - - - - - Value450 - - - - - Value500 - - - - - Value550 - - - - - Value600 - - - - - Value650 - - - - - Value700 - - - - - Value750 - - - - - Value800 - - - - - Value850 - - - - - Value900 - - - - - Value950 - - - - - Value1000 - - - - - Possible values for property BoostCurrent - - - - - Value0 - - - - - CouldNotCalculateTheDynamicDisplayName - - - - - CouldNotCalculateTheDynamicDisplayName2 - - - - - CouldNotCalculateTheDynamicDisplayName3 - - - - - CouldNotCalculateTheDynamicDisplayName4 - - - - - CouldNotCalculateTheDynamicDisplayName5 - - - - - CouldNotCalculateTheDynamicDisplayName6 - - - - - CouldNotCalculateTheDynamicDisplayName7 - - - - - CouldNotCalculateTheDynamicDisplayName8 - - - - - CouldNotCalculateTheDynamicDisplayName9 - - - - - CouldNotCalculateTheDynamicDisplayName10 - - - - - CouldNotCalculateTheDynamicDisplayName11 - - - - - CouldNotCalculateTheDynamicDisplayName12 - - - - - CouldNotCalculateTheDynamicDisplayName13 - - - - - CouldNotCalculateTheDynamicDisplayName14 - - - - - CouldNotCalculateTheDynamicDisplayName15 - - - - - CouldNotCalculateTheDynamicDisplayName16 - - - - - CouldNotCalculateTheDynamicDisplayName17 - - - - - CouldNotCalculateTheDynamicDisplayName18 - - - - - CouldNotCalculateTheDynamicDisplayName19 - - - - - CouldNotCalculateTheDynamicDisplayName20 - - - - - CouldNotCalculateTheDynamicDisplayName21 - - - - - CouldNotCalculateTheDynamicDisplayName22 - - - - - CouldNotCalculateTheDynamicDisplayName23 - - - - - CouldNotCalculateTheDynamicDisplayName24 - - - - - CouldNotCalculateTheDynamicDisplayName25 - - - - - CouldNotCalculateTheDynamicDisplayName26 - - - - - CouldNotCalculateTheDynamicDisplayName27 - - - - - CouldNotCalculateTheDynamicDisplayName28 - - - - - CouldNotCalculateTheDynamicDisplayName29 - - - - - CouldNotCalculateTheDynamicDisplayName30 - - - - - CouldNotCalculateTheDynamicDisplayName31 - - - - - CouldNotCalculateTheDynamicDisplayName32 - - - - - CouldNotCalculateTheDynamicDisplayName33 - - - - - CouldNotCalculateTheDynamicDisplayName34 - - - - - CouldNotCalculateTheDynamicDisplayName35 - - - - - Possible values for property Brightness - - - - - None - - - - - VeryDark - - - - - Dark - - - - - Medium - - - - - Bright - - - - - VeryBright - - - - - Possible values for property BusPowerSupplyActive - - - - - Deactivated - - - - - Active - - - - - BusProfile - - - - - No bus profile - - - - - Dp bus profile - - - - - Standard bus profile - - - - - Universal bus profile - - - - - User defined bus profile - - - - - Possible values for property CableLength - - - - - None - - - - - Length20m - - - - - Length50m - - - - - Length100m - - - - - Length1000m - - - - - Length3000m - - - - - Length5000m - - - - - Length10000m - - - - - Possible values for property CableLocking - - - - - NoCableLocking - - - - - ExternalViaPii - - - - - PolarityReversalPulse800Ms - - - - - PolarityReversalPermanent - - - - - OpenCollector - - - - - Possible values for property CableLockingFeedback - - - - - ExternalViaPiq - - - - - InternalModuleDi - - - - - NoFeedback - - - - - Cable Name - - - - - No cable name - - - - - FO Standard Cable 62 5 cable name - - - - - FO Standard Cable 9 cable name - - - - - FO Standard Cable GP 50 cable name - - - - - GI PCF Standard Cable cable name - - - - - GI POF Standard Cable cable name - - - - - PCF Standard Cable GP cable name - - - - - POF Standard Cable GP cable name - - - - - FO Trailing Cable GP cable name - - - - - Flexible FO Cable 62 5 cable name - - - - - Flexible FO Cable 9 cable name - - - - - GI PCF Trailing Cable cable name - - - - - GI POF Trailing Cable cable name - - - - - PCF Trailing Cable GP cable name - - - - - POF Trailing Cable cable name - - - - - FO Ground Cable cable name - - - - - Possible values for property Calculator2OperatingMode - - - - - BothInputsOfTheTypeWord - - - - - Inputs1And2AsDWordInput - - - - - Possible values for property Calculator2Operator - - - - - Addition - - - - - Subtraction - - - - - Multiplication - - - - - Division - - - - - Possible values for property Calculator3Operator1 - - - - - Addition - - - - - Subtraction - - - - - Multiplication - - - - - Division - - - - - Possible values for property Calculator3Operator2 - - - - - Addition - - - - - Subtraction - - - - - Multiplication - - - - - Division - - - - - Possible values for property Calculator3Operator3 - - - - - Addition - - - - - Subtraction - - - - - Multiplication - - - - - Division - - - - - Possible values for property Calculator3Priority1 - - - - - Low - - - - - Medium - - - - - High - - - - - Possible values for property Calculator3Priority2 - - - - - Low - - - - - Medium - - - - - High - - - - - Possible values for property Calculator3Priority3 - - - - - Low - - - - - Medium - - - - - High - - - - - Possible values for property Calculator4Operator1 - - - - - Addition - - - - - Subtraction - - - - - Multiplication - - - - - Division - - - - - Possible values for property Calculator4Operator2 - - - - - Addition - - - - - Subtraction - - - - - Multiplication - - - - - Division - - - - - Possible values for property Calculator4Operator3 - - - - - Addition - - - - - Subtraction - - - - - Multiplication - - - - - Division - - - - - Possible values for property Calculator4Priority1 - - - - - Low - - - - - Medium - - - - - High - - - - - Possible values for property Calculator4Priority2 - - - - - Low - - - - - Medium - - - - - High - - - - - Possible values for property Calculator4Priority3 - - - - - Low - - - - - Medium - - - - - High - - - - - Possible values for property Category - - - - - None - - - - - Currents - - - - - Voltages - - - - - Powers - - - - - Energies - - - - - QualityData - - - - - Other - - - - - PowerQualityValues - - - - - Harmonics - - - - - Specifies the constants for Certificate Usage option in Certificate Management Configuration - - - - - use certificates configured and download using TIA Portal - - - - - use certificates provided by certificate management during runtime - - - - - Represents supported services of the Certificate Management Configuration - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Certificate constant ID - - - - - - Represents group name of supported services of the Certificate Management Configuration - - - - - - Available services names from modules - - - - - - Composition for Plc supported services - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create a PLC supported service - - Module certificate Id of the PLC supported service - Folder name where thr certificate is stored for a perticular - Name of the module providing the service - Siemens.Engineering.HW.CertificateSupportedService - - - - Finds the perticular service - - Certificate Id of the module providing service - Siemens.Engineering.HW.CertificateSupportedService - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents name of the service supported by certificate management configuration. - - - - - Service is OpcUa - - - - - Service is webserver - - - - - Possible values for property ChangeIpAtDevice - - - - - SetIpAddressInTheProject - - - - - SetIpAddressAtTheDevice - - - - - Class representing a channel - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The IO type of the channel - - - - - - The number of this channel - - - - - - The type of this channel - - - - - - Possible values for property ChannelAssignment - - - - - Channel0 - - - - - Channel1 - - - - - Channel2 - - - - - Channel3 - - - - - Composition of Channels - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a given channel - - Type to find - IoType to find - Number to find - Siemens.Engineering.HW.Channel - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Possible values for property ChannelConfiguration - - - - - Value2Channels2A - - - - - Value1Channel4A - - - - - Value0Inputs16Outputs - - - - - Value3Inputs13Outputs - - - - - Value4Inputs12Outputs - - - - - Value8Inputs8Outputs - - - - - Value1Channel - - - - - Value2Channels - - - - - Value3Channels - - - - - Value4Channels - - - - - Channel IO type - - - - - Channel IO type: None - - - - - Channel IO type: Input - - - - - Channel IO type: Output - - - - - Channel IO type: Complex - - - - - Channel type - - - - - Channel Type: None - - - - - Channel Type: Analog type - - - - - Channel Type: Digital - - - - - Channel Type: Technology - - - - - Possible values for property ChannelTypeForIO - - - - - DigitalInput - - - - - DigitalOutput - - - - - Possible values for property ChargingStandard - - - - - Iec61851Minus1 - - - - - SaeJ1772 - - - - - DinSpec70121 - - - - - Possible values for property ChatterMonitoring - - - - - Deactivated - - - - - Active - - - - - Value3SignalChanges - - - - - Value4SignalChanges - - - - - Value5SignalChanges - - - - - Value6SignalChanges - - - - - Value7SignalChanges - - - - - Value8SignalChanges - - - - - Value9SignalChanges - - - - - Value10SignalChanges - - - - - Value11SignalChanges - - - - - Value12SignalChanges - - - - - Value13SignalChanges - - - - - Value14SignalChanges - - - - - Value15SignalChanges - - - - - Value16SignalChanges - - - - - Value17SignalChanges - - - - - Value18SignalChanges - - - - - Value19SignalChanges - - - - - Value20SignalChanges - - - - - Value21SignalChanges - - - - - Value22SignalChanges - - - - - Value23SignalChanges - - - - - Value24SignalChanges - - - - - Value25SignalChanges - - - - - Value26SignalChanges - - - - - Value27SignalChanges - - - - - Value28SignalChanges - - - - - Value29SignalChanges - - - - - Value30SignalChanges - - - - - Value31SignalChanges - - - - - Value32SignalChanges - - - - - Value2SignalChanges - - - - - Possible values for property Classification - - - - - None - - - - - CPU - - - - - HM - - - - - Possible values for property CodeType - - - - - Gray - - - - - Dual - - - - - Profibus Communication Load - - - - - Communication Load: None - - - - - Communication Load: Low - - - - - Communication Load: Medium - - - - - Communication Load: High - - - - - Possible values for property CompatibilityMode3UF50BasicType - - - - - Value1 - - - - - Value2 - - - - - Value3 - - - - - Possible values for property CompatibilityMode3UF50Mode - - - - - Dpv0 - - - - - Dpv1 - - - - - Possible values for property CompensationValue0 - - - - - Deactivated - - - - - Pressure - - - - - Density - - - - - KinematicViscosity - - - - - MediaTemperature - - - - - SensorTemperature - - - - - AuxiliaryTemperature - - - - - Possible values for property CompensationValue1 - - - - - Deactivated - - - - - Pressure - - - - - Density - - - - - KinematicViscosity - - - - - MediaTemperature - - - - - SensorTemperature - - - - - AuxiliaryTemperature - - - - - Possible values for property ComputerNameIdenticalToPcStationName - - - - - ComputerNameIdenticalToNameOfPcStation - - - - - ComputerNameIdenticalToNameOfPcStation1 - - - - - Possible values for property ConfigurationDQOrDIGroup0 - - - - - UseInputOrOutputIndividually - - - - - TimerDqWithEnableInput - - - - - Possible values for property ConfigurationDQOrDIGroup1 - - - - - UseInputOrOutputIndividually - - - - - TimerDqWithEnableInput - - - - - Possible values for property ConfigurationDQOrDIGroup2 - - - - - UseInputOrOutputIndividually - - - - - TimerDi2WithEnableInputDi3 - - - - - IncrementalEncoderABPhaseShifted - - - - - TimerDq2WithEnableInputDi2 - - - - - TimerDqWithEnableInput - - - - - Possible values for property ConnectionType - - - - - None - - - - - Value1P2w1Phase2Wire - - - - - Value3P4w3Phase4Wire - - - - - Value3P4wi3PhaseCurrentMeasurement4Wire - - - - - Value3P4w13Phase4WireSymmetricalLoad - - - - - Value3X1p2w3X1PhaseEach2Conductors - - - - - Value2P3w2Phase3Wire - - - - - Value3P3w3Phase3Wire - - - - - Value3P3w13Phase3WireSymmetricalLoad - - - - - Indexer - - - - - DriverMode - - - - - Endstufe - - - - - Possible values for property ContactorFeedback - - - - - ExternalViaPiq - - - - - InternalModuleDi - - - - - NoFeedback - - - - - Possible values for property ControlFunctionCurrentMeasuringModuleInstalled - - - - - Delta - - - - - IncomingCable - - - - - Possible values for property ControlFunctionFeedbackCLOSEDFC - - - - - NotConnected - - - - - FixedLevel0 - - - - - FixedLevel1 - - - - - EventAM2WarningLevel0420mAGt - - - - - EventAM2WarningLevel0420mALt - - - - - EventAM2TripLevel0420mAGt - - - - - EventAM2TripLevel0420mALt - - - - - BUTestResetButton - - - - - BUInput1 - - - - - BUInput2 - - - - - BUInput3 - - - - - BUInput4 - - - - - DM1Input1 - - - - - DM1Input2 - - - - - DM1Input3 - - - - - DM1Input4 - - - - - DM2Input1 - - - - - DM2Input2 - - - - - DM2Input3 - - - - - DM2Input4 - - - - - DM1SensorChannel1 - - - - - DM1SensorChannel2 - - - - - EventTM2SensorFault - - - - - EventTM2OutOfRange - - - - - EventTM2WarningLevelTGt - - - - - EventTM2TripLevelTGt - - - - - OPTestResetButton - - - - - OPButton1 - - - - - OPButton2 - - - - - OPButton3 - - - - - OPButton4 - - - - - EventLimitMonitor5 - - - - - EventLimitMonitor6 - - - - - AcyclicReceiveBit00 - - - - - AcyclicReceiveBit01 - - - - - AcyclicReceiveBit02 - - - - - AcyclicReceiveBit03 - - - - - AcyclicReceiveBit04 - - - - - AcyclicReceiveBit05 - - - - - AcyclicReceiveBit06 - - - - - AcyclicReceiveBit07 - - - - - AcyclicReceiveBit10 - - - - - AcyclicReceiveBit11 - - - - - AcyclicReceiveBit12 - - - - - AcyclicReceiveBit13 - - - - - AcyclicReceiveBit14 - - - - - AcyclicReceiveBit15 - - - - - AcyclicReceiveBit16 - - - - - AcyclicReceiveBit17 - - - - - CyclicReceiveBit00 - - - - - CyclicReceiveBit01 - - - - - CyclicReceiveBit02 - - - - - CyclicReceiveBit03 - - - - - CyclicReceiveBit04 - - - - - CyclicReceiveBit05 - - - - - CyclicReceiveBit06 - - - - - CyclicReceiveBit07 - - - - - CyclicReceiveBit10 - - - - - CyclicReceiveBit11 - - - - - CyclicReceiveBit12 - - - - - CyclicReceiveBit13 - - - - - CyclicReceiveBit14 - - - - - CyclicReceiveBit15 - - - - - CyclicReceiveBit16 - - - - - CyclicReceiveBit17 - - - - - EnabledControlCommandOnReverseFast - - - - - EnabledControlCommandOnReverse - - - - - EnabledControlCommandOff - - - - - EnabledControlCommandOnForward - - - - - EnabledControlCommandOnForwardFast - - - - - ContactorControl1QE1 - - - - - ContactorControl2QE2 - - - - - ContactorControl3QE3 - - - - - ContactorControl4QE4 - - - - - ContactorControl5QE5 - - - - - DisplayQLEReverseFast - - - - - DisplayQLEReverse - - - - - DisplayQLAOff - - - - - DisplayQLEForward - - - - - DisplayQLEForwardFast - - - - - DisplayQLSFault - - - - - StatusGroupFault - - - - - StatusGroupWarning - - - - - StatusDeviceOk - - - - - StatusBusOk - - - - - StatusPLCPCSInRun - - - - - StatusCurrentFlowing - - - - - StatusPROFIenergyCommandStartPausePending - - - - - StatusOnReverseFast - - - - - StatusOnReverse - - - - - StatusOff - - - - - StatusOnForward - - - - - StatusOnForwardFast - - - - - StatusStartActive - - - - - StatusInterlockingTimeActive - - - - - StatusChangeoverPauseActive - - - - - StatusPositionerRunsInOPENDirection - - - - - StatusPositionerRunsInCLOSEDDirection - - - - - StatusFeedbackCLOSED - - - - - StatusFeedbackOPEN - - - - - StatusTorqueCLOSED - - - - - StatusTorqueOPEN - - - - - StatusTestPosition - - - - - StatusOperationalProtectionOff - - - - - StatusRemoteMode - - - - - StatusEmergencyStartExecuted - - - - - StatusCoolingDownPeriodActive - - - - - StatusPauseTimeActive - - - - - StatusDeviceTestActive - - - - - StatusPhaseSequence123 - - - - - StatusPhaseSequence321 - - - - - StatusEnablingCircuitClosed - - - - - EventPrewarningOverload - - - - - EventUnbalance - - - - - EventOverload - - - - - EventOverloadAndPhaseFailure - - - - - EventInternalGroundFault - - - - - EventExternalGroundFault - - - - - EventExternalGroundFaultWarning - - - - - EventThermistorTripLevel - - - - - EventThermistorShortCircuit - - - - - EventThermistorOpenCircuit - - - - - EventTM1WarningLevelTGt - - - - - EventTM1TripLevelTGt - - - - - EventTM1SensorFault - - - - - EventTM1OutOfRange - - - - - EventWarningLevelIGt - - - - - EventWarningLevelILt - - - - - EventWarningLevelPGt - - - - - EventWarningLevelPLt - - - - - EventWarningLevelCosPhiLt - - - - - EventWarningLevelULt - - - - - EventAM1WarningLevel0420mAGt - - - - - EventAM1WarningLevel0420mALt - - - - - EventTripLevelIGt - - - - - EventTripLevelILt - - - - - EventTripLevelPGt - - - - - EventTripLevelPLt - - - - - EventTripLevelCosPhiLt - - - - - EventTripLevelULt - - - - - EventAM1TripLevel0420mAGt - - - - - EventAM1TripLevel0420mALt - - - - - EventStalledRotor - - - - - EventNoStartPermitted - - - - - EventNumberOfStartsGt - - - - - EventJustOneStartPossible - - - - - EventMotorOperatingHoursGt - - - - - EventStopTimeGt - - - - - EventLimitMonitor1 - - - - - EventLimitMonitor2 - - - - - EventLimitMonitor3 - - - - - EventLimitMonitor4 - - - - - EventExternalFault1 - - - - - EventExternalFault2 - - - - - EventExternalFault3 - - - - - EventExternalFault4 - - - - - EventExternalFault5 - - - - - EventExternalFault6 - - - - - EventAM2OpenCircuit - - - - - EventAM1OpenCircuit - - - - - EventSafetyrelatedTripping - - - - - EventMonitoringPeriodForMandatoryTestingTestRequirement - - - - - EventTimestampfctActiveAndOk - - - - - EventDMFLOCALOk - - - - - EventPROFIsafeActive - - - - - EventConfiguredOperatorPanelMissing - - - - - WarningFeedbackCircuit - - - - - WarningSimultaneity - - - - - FaultHardwareFaultBasicUnit - - - - - FaultModuleFault - - - - - FaultTemporaryComponents - - - - - FaultConfigurationError - - - - - FaultParameterization - - - - - FaultBus - - - - - FaultPLCPCS - - - - - FaultExecutionOnCommand - - - - - FaultExecutionSTOPCommand - - - - - FaultFeedbackOn - - - - - FaultFeedbackOff - - - - - FaultStalledPositioner - - - - - FaultDouble0 - - - - - FaultDouble1 - - - - - FaultEndPosition - - - - - FaultAntivalence - - - - - FaultTestPositionFeedback - - - - - FaultPowerFailure - - - - - FaultOperationalProtectionOff - - - - - SignalConditioning5Output - - - - - SignalConditioning6Output - - - - - TruthTable1Output - - - - - TruthTable2Output - - - - - TruthTable3Output - - - - - TruthTable4Output - - - - - TruthTable5Output - - - - - TruthTable6Output - - - - - TruthTable7Output - - - - - TruthTable8Output - - - - - TruthTable9Output1 - - - - - TruthTable9Output2 - - - - - TruthTable10Output - - - - - TruthTable11Output - - - - - Counter5Output - - - - - Counter6Output - - - - - Timer5Output - - - - - Timer6Output - - - - - Timer1Output - - - - - Timer2Output - - - - - Timer3Output - - - - - Timer4Output - - - - - Counter1Output - - - - - Counter2Output - - - - - Counter3Output - - - - - Counter4Output - - - - - SignalConditioning1Output - - - - - SignalConditioning2Output - - - - - SignalConditioning3Output - - - - - SignalConditioning4Output - - - - - NonvolatileElement1Output - - - - - NonvolatileElement2Output - - - - - NonvolatileElement3Output - - - - - NonvolatileElement4Output - - - - - Flashing1Output - - - - - Flashing2Output - - - - - Flashing3Output - - - - - Flicker1Output - - - - - Flicker2Output - - - - - Flicker3Output - - - - - PWMOutput - - - - - Possible values for property ControlFunctionFeedbackON - - - - - NotConnected - - - - - FixedLevel0 - - - - - FixedLevel1 - - - - - EventAM2WarningLevel0420mAGt - - - - - EventAM2WarningLevel0420mALt - - - - - EventAM2TripLevel0420mAGt - - - - - EventAM2TripLevel0420mALt - - - - - BUTestResetButton - - - - - BUInput1 - - - - - BUInput2 - - - - - BUInput3 - - - - - BUInput4 - - - - - DM1Input1 - - - - - DM1Input2 - - - - - DM1Input3 - - - - - DM1Input4 - - - - - DM2Input1 - - - - - DM2Input2 - - - - - DM2Input3 - - - - - DM2Input4 - - - - - DM1SensorChannel1 - - - - - DM1SensorChannel2 - - - - - EventTM2SensorFault - - - - - EventTM2OutOfRange - - - - - EventTM2WarningLevelTGt - - - - - EventTM2TripLevelTGt - - - - - OPTestResetButton - - - - - OPButton1 - - - - - OPButton2 - - - - - OPButton3 - - - - - OPButton4 - - - - - EventLimitMonitor5 - - - - - EventLimitMonitor6 - - - - - AcyclicReceiveBit00 - - - - - AcyclicReceiveBit01 - - - - - AcyclicReceiveBit02 - - - - - AcyclicReceiveBit03 - - - - - AcyclicReceiveBit04 - - - - - AcyclicReceiveBit05 - - - - - AcyclicReceiveBit06 - - - - - AcyclicReceiveBit07 - - - - - AcyclicReceiveBit10 - - - - - AcyclicReceiveBit11 - - - - - AcyclicReceiveBit12 - - - - - AcyclicReceiveBit13 - - - - - AcyclicReceiveBit14 - - - - - AcyclicReceiveBit15 - - - - - AcyclicReceiveBit16 - - - - - AcyclicReceiveBit17 - - - - - CyclicReceiveBit00 - - - - - CyclicReceiveBit01 - - - - - CyclicReceiveBit02 - - - - - CyclicReceiveBit03 - - - - - CyclicReceiveBit04 - - - - - CyclicReceiveBit05 - - - - - CyclicReceiveBit06 - - - - - CyclicReceiveBit07 - - - - - CyclicReceiveBit10 - - - - - CyclicReceiveBit11 - - - - - CyclicReceiveBit12 - - - - - CyclicReceiveBit13 - - - - - CyclicReceiveBit14 - - - - - CyclicReceiveBit15 - - - - - CyclicReceiveBit16 - - - - - CyclicReceiveBit17 - - - - - EnabledControlCommandOnReverseFast - - - - - EnabledControlCommandOnReverse - - - - - EnabledControlCommandOff - - - - - EnabledControlCommandOnForward - - - - - EnabledControlCommandOnForwardFast - - - - - ContactorControl1QE1 - - - - - ContactorControl2QE2 - - - - - ContactorControl3QE3 - - - - - ContactorControl4QE4 - - - - - ContactorControl5QE5 - - - - - DisplayQLEReverseFast - - - - - DisplayQLEReverse - - - - - DisplayQLAOff - - - - - DisplayQLEForward - - - - - DisplayQLEForwardFast - - - - - DisplayQLSFault - - - - - StatusGroupFault - - - - - StatusGroupWarning - - - - - StatusDeviceOk - - - - - StatusBusOk - - - - - StatusPLCPCSInRun - - - - - StatusCurrentFlowing - - - - - StatusPROFIenergyCommandStartPausePending - - - - - StatusOnReverseFast - - - - - StatusOnReverse - - - - - StatusOff - - - - - StatusOnForward - - - - - StatusOnForwardFast - - - - - StatusStartActive - - - - - StatusInterlockingTimeActive - - - - - StatusChangeoverPauseActive - - - - - StatusPositionerRunsInOPENDirection - - - - - StatusPositionerRunsInCLOSEDDirection - - - - - StatusFeedbackCLOSED - - - - - StatusFeedbackOPEN - - - - - StatusTorqueCLOSED - - - - - StatusTorqueOPEN - - - - - StatusTestPosition - - - - - StatusOperationalProtectionOff - - - - - StatusRemoteMode - - - - - StatusEmergencyStartExecuted - - - - - StatusCoolingDownPeriodActive - - - - - StatusPauseTimeActive - - - - - StatusDeviceTestActive - - - - - StatusPhaseSequence123 - - - - - StatusPhaseSequence321 - - - - - StatusEnablingCircuitClosed - - - - - EventPrewarningOverload - - - - - EventUnbalance - - - - - EventOverload - - - - - EventOverloadAndPhaseFailure - - - - - EventInternalGroundFault - - - - - EventExternalGroundFault - - - - - EventExternalGroundFaultWarning - - - - - EventThermistorTripLevel - - - - - EventThermistorShortCircuit - - - - - EventThermistorOpenCircuit - - - - - EventTM1WarningLevelTGt - - - - - EventTM1TripLevelTGt - - - - - EventTM1SensorFault - - - - - EventTM1OutOfRange - - - - - EventWarningLevelIGt - - - - - EventWarningLevelILt - - - - - EventWarningLevelPGt - - - - - EventWarningLevelPLt - - - - - EventWarningLevelCosPhiLt - - - - - EventWarningLevelULt - - - - - EventAM1WarningLevel0420mAGt - - - - - EventAM1WarningLevel0420mALt - - - - - EventTripLevelIGt - - - - - EventTripLevelILt - - - - - EventTripLevelPGt - - - - - EventTripLevelPLt - - - - - EventTripLevelCosPhiLt - - - - - EventTripLevelULt - - - - - EventAM1TripLevel0420mAGt - - - - - EventAM1TripLevel0420mALt - - - - - EventStalledRotor - - - - - EventNoStartPermitted - - - - - EventNumberOfStartsGt - - - - - EventJustOneStartPossible - - - - - EventMotorOperatingHoursGt - - - - - EventStopTimeGt - - - - - EventLimitMonitor1 - - - - - EventLimitMonitor2 - - - - - EventLimitMonitor3 - - - - - EventLimitMonitor4 - - - - - EventExternalFault1 - - - - - EventExternalFault2 - - - - - EventExternalFault3 - - - - - EventExternalFault4 - - - - - EventExternalFault5 - - - - - EventExternalFault6 - - - - - EventAM2OpenCircuit - - - - - EventAM1OpenCircuit - - - - - EventSafetyrelatedTripping - - - - - EventMonitoringPeriodForMandatoryTestingTestRequirement - - - - - EventTimestampfctActiveAndOk - - - - - EventDMFLOCALOk - - - - - EventPROFIsafeActive - - - - - EventConfiguredOperatorPanelMissing - - - - - WarningFeedbackCircuit - - - - - WarningSimultaneity - - - - - FaultHardwareFaultBasicUnit - - - - - FaultModuleFault - - - - - FaultTemporaryComponents - - - - - FaultConfigurationError - - - - - FaultParameterization - - - - - FaultBus - - - - - FaultPLCPCS - - - - - FaultExecutionOnCommand - - - - - FaultExecutionSTOPCommand - - - - - FaultFeedbackOn - - - - - FaultFeedbackOff - - - - - FaultStalledPositioner - - - - - FaultDouble0 - - - - - FaultDouble1 - - - - - FaultEndPosition - - - - - FaultAntivalence - - - - - FaultTestPositionFeedback - - - - - FaultPowerFailure - - - - - FaultOperationalProtectionOff - - - - - SignalConditioning5Output - - - - - SignalConditioning6Output - - - - - TruthTable1Output - - - - - TruthTable2Output - - - - - TruthTable3Output - - - - - TruthTable4Output - - - - - TruthTable5Output - - - - - TruthTable6Output - - - - - TruthTable7Output - - - - - TruthTable8Output - - - - - TruthTable9Output1 - - - - - TruthTable9Output2 - - - - - TruthTable10Output - - - - - TruthTable11Output - - - - - Counter5Output - - - - - Counter6Output - - - - - Timer5Output - - - - - Timer6Output - - - - - Timer1Output - - - - - Timer2Output - - - - - Timer3Output - - - - - Timer4Output - - - - - Counter1Output - - - - - Counter2Output - - - - - Counter3Output - - - - - Counter4Output - - - - - SignalConditioning1Output - - - - - SignalConditioning2Output - - - - - SignalConditioning3Output - - - - - SignalConditioning4Output - - - - - NonvolatileElement1Output - - - - - NonvolatileElement2Output - - - - - NonvolatileElement3Output - - - - - NonvolatileElement4Output - - - - - Flashing1Output - - - - - Flashing2Output - - - - - Flashing3Output - - - - - Flicker1Output - - - - - Flicker2Output - - - - - Flicker3Output - - - - - PWMOutput - - - - - Possible values for property ControlFunctionFeedbackOPENFO - - - - - NotConnected - - - - - FixedLevel0 - - - - - FixedLevel1 - - - - - EventAM2WarningLevel0420mAGt - - - - - EventAM2WarningLevel0420mALt - - - - - EventAM2TripLevel0420mAGt - - - - - EventAM2TripLevel0420mALt - - - - - BUTestResetButton - - - - - BUInput1 - - - - - BUInput2 - - - - - BUInput3 - - - - - BUInput4 - - - - - DM1Input1 - - - - - DM1Input2 - - - - - DM1Input3 - - - - - DM1Input4 - - - - - DM2Input1 - - - - - DM2Input2 - - - - - DM2Input3 - - - - - DM2Input4 - - - - - DM1SensorChannel1 - - - - - DM1SensorChannel2 - - - - - EventTM2SensorFault - - - - - EventTM2OutOfRange - - - - - EventTM2WarningLevelTGt - - - - - EventTM2TripLevelTGt - - - - - OPTestResetButton - - - - - OPButton1 - - - - - OPButton2 - - - - - OPButton3 - - - - - OPButton4 - - - - - EventLimitMonitor5 - - - - - EventLimitMonitor6 - - - - - AcyclicReceiveBit00 - - - - - AcyclicReceiveBit01 - - - - - AcyclicReceiveBit02 - - - - - AcyclicReceiveBit03 - - - - - AcyclicReceiveBit04 - - - - - AcyclicReceiveBit05 - - - - - AcyclicReceiveBit06 - - - - - AcyclicReceiveBit07 - - - - - AcyclicReceiveBit10 - - - - - AcyclicReceiveBit11 - - - - - AcyclicReceiveBit12 - - - - - AcyclicReceiveBit13 - - - - - AcyclicReceiveBit14 - - - - - AcyclicReceiveBit15 - - - - - AcyclicReceiveBit16 - - - - - AcyclicReceiveBit17 - - - - - CyclicReceiveBit00 - - - - - CyclicReceiveBit01 - - - - - CyclicReceiveBit02 - - - - - CyclicReceiveBit03 - - - - - CyclicReceiveBit04 - - - - - CyclicReceiveBit05 - - - - - CyclicReceiveBit06 - - - - - CyclicReceiveBit07 - - - - - CyclicReceiveBit10 - - - - - CyclicReceiveBit11 - - - - - CyclicReceiveBit12 - - - - - CyclicReceiveBit13 - - - - - CyclicReceiveBit14 - - - - - CyclicReceiveBit15 - - - - - CyclicReceiveBit16 - - - - - CyclicReceiveBit17 - - - - - EnabledControlCommandOnReverseFast - - - - - EnabledControlCommandOnReverse - - - - - EnabledControlCommandOff - - - - - EnabledControlCommandOnForward - - - - - EnabledControlCommandOnForwardFast - - - - - ContactorControl1QE1 - - - - - ContactorControl2QE2 - - - - - ContactorControl3QE3 - - - - - ContactorControl4QE4 - - - - - ContactorControl5QE5 - - - - - DisplayQLEReverseFast - - - - - DisplayQLEReverse - - - - - DisplayQLAOff - - - - - DisplayQLEForward - - - - - DisplayQLEForwardFast - - - - - DisplayQLSFault - - - - - StatusGroupFault - - - - - StatusGroupWarning - - - - - StatusDeviceOk - - - - - StatusBusOk - - - - - StatusPLCPCSInRun - - - - - StatusCurrentFlowing - - - - - StatusPROFIenergyCommandStartPausePending - - - - - StatusOnReverseFast - - - - - StatusOnReverse - - - - - StatusOff - - - - - StatusOnForward - - - - - StatusOnForwardFast - - - - - StatusStartActive - - - - - StatusInterlockingTimeActive - - - - - StatusChangeoverPauseActive - - - - - StatusPositionerRunsInOPENDirection - - - - - StatusPositionerRunsInCLOSEDDirection - - - - - StatusFeedbackCLOSED - - - - - StatusFeedbackOPEN - - - - - StatusTorqueCLOSED - - - - - StatusTorqueOPEN - - - - - StatusTestPosition - - - - - StatusOperationalProtectionOff - - - - - StatusRemoteMode - - - - - StatusEmergencyStartExecuted - - - - - StatusCoolingDownPeriodActive - - - - - StatusPauseTimeActive - - - - - StatusDeviceTestActive - - - - - StatusPhaseSequence123 - - - - - StatusPhaseSequence321 - - - - - StatusEnablingCircuitClosed - - - - - EventPrewarningOverload - - - - - EventUnbalance - - - - - EventOverload - - - - - EventOverloadAndPhaseFailure - - - - - EventInternalGroundFault - - - - - EventExternalGroundFault - - - - - EventExternalGroundFaultWarning - - - - - EventThermistorTripLevel - - - - - EventThermistorShortCircuit - - - - - EventThermistorOpenCircuit - - - - - EventTM1WarningLevelTGt - - - - - EventTM1TripLevelTGt - - - - - EventTM1SensorFault - - - - - EventTM1OutOfRange - - - - - EventWarningLevelIGt - - - - - EventWarningLevelILt - - - - - EventWarningLevelPGt - - - - - EventWarningLevelPLt - - - - - EventWarningLevelCosPhiLt - - - - - EventWarningLevelULt - - - - - EventAM1WarningLevel0420mAGt - - - - - EventAM1WarningLevel0420mALt - - - - - EventTripLevelIGt - - - - - EventTripLevelILt - - - - - EventTripLevelPGt - - - - - EventTripLevelPLt - - - - - EventTripLevelCosPhiLt - - - - - EventTripLevelULt - - - - - EventAM1TripLevel0420mAGt - - - - - EventAM1TripLevel0420mALt - - - - - EventStalledRotor - - - - - EventNoStartPermitted - - - - - EventNumberOfStartsGt - - - - - EventJustOneStartPossible - - - - - EventMotorOperatingHoursGt - - - - - EventStopTimeGt - - - - - EventLimitMonitor1 - - - - - EventLimitMonitor2 - - - - - EventLimitMonitor3 - - - - - EventLimitMonitor4 - - - - - EventExternalFault1 - - - - - EventExternalFault2 - - - - - EventExternalFault3 - - - - - EventExternalFault4 - - - - - EventExternalFault5 - - - - - EventExternalFault6 - - - - - EventAM2OpenCircuit - - - - - EventAM1OpenCircuit - - - - - EventSafetyrelatedTripping - - - - - EventMonitoringPeriodForMandatoryTestingTestRequirement - - - - - EventTimestampfctActiveAndOk - - - - - EventDMFLOCALOk - - - - - EventPROFIsafeActive - - - - - EventConfiguredOperatorPanelMissing - - - - - WarningFeedbackCircuit - - - - - WarningSimultaneity - - - - - FaultHardwareFaultBasicUnit - - - - - FaultModuleFault - - - - - FaultTemporaryComponents - - - - - FaultConfigurationError - - - - - FaultParameterization - - - - - FaultBus - - - - - FaultPLCPCS - - - - - FaultExecutionOnCommand - - - - - FaultExecutionSTOPCommand - - - - - FaultFeedbackOn - - - - - FaultFeedbackOff - - - - - FaultStalledPositioner - - - - - FaultDouble0 - - - - - FaultDouble1 - - - - - FaultEndPosition - - - - - FaultAntivalence - - - - - FaultTestPositionFeedback - - - - - FaultPowerFailure - - - - - FaultOperationalProtectionOff - - - - - SignalConditioning5Output - - - - - SignalConditioning6Output - - - - - TruthTable1Output - - - - - TruthTable2Output - - - - - TruthTable3Output - - - - - TruthTable4Output - - - - - TruthTable5Output - - - - - TruthTable6Output - - - - - TruthTable7Output - - - - - TruthTable8Output - - - - - TruthTable9Output1 - - - - - TruthTable9Output2 - - - - - TruthTable10Output - - - - - TruthTable11Output - - - - - Counter5Output - - - - - Counter6Output - - - - - Timer5Output - - - - - Timer6Output - - - - - Timer1Output - - - - - Timer2Output - - - - - Timer3Output - - - - - Timer4Output - - - - - Counter1Output - - - - - Counter2Output - - - - - Counter3Output - - - - - Counter4Output - - - - - SignalConditioning1Output - - - - - SignalConditioning2Output - - - - - SignalConditioning3Output - - - - - SignalConditioning4Output - - - - - NonvolatileElement1Output - - - - - NonvolatileElement2Output - - - - - NonvolatileElement3Output - - - - - NonvolatileElement4Output - - - - - Flashing1Output - - - - - Flashing2Output - - - - - Flashing3Output - - - - - Flicker1Output - - - - - Flicker2Output - - - - - Flicker3Output - - - - - PWMOutput - - - - - Possible values for property ControlFunctionForward - - - - - NotConnected - - - - - FixedLevel0 - - - - - FixedLevel1 - - - - - EventAM2WarningLevel0420mAGt - - - - - EventAM2WarningLevel0420mALt - - - - - EventAM2TripLevel0420mAGt - - - - - EventAM2TripLevel0420mALt - - - - - BUTestResetButton - - - - - BUInput1 - - - - - BUInput2 - - - - - BUInput3 - - - - - BUInput4 - - - - - DM1Input1 - - - - - DM1Input2 - - - - - DM1Input3 - - - - - DM1Input4 - - - - - DM2Input1 - - - - - DM2Input2 - - - - - DM2Input3 - - - - - DM2Input4 - - - - - DM1SensorChannel1 - - - - - DM1SensorChannel2 - - - - - EventTM2SensorFault - - - - - EventTM2OutOfRange - - - - - EventTM2WarningLevelTGt - - - - - EventTM2TripLevelTGt - - - - - OPTestResetButton - - - - - OPButton1 - - - - - OPButton2 - - - - - OPButton3 - - - - - OPButton4 - - - - - EventLimitMonitor5 - - - - - EventLimitMonitor6 - - - - - AcyclicReceiveBit00 - - - - - AcyclicReceiveBit01 - - - - - AcyclicReceiveBit02 - - - - - AcyclicReceiveBit03 - - - - - AcyclicReceiveBit04 - - - - - AcyclicReceiveBit05 - - - - - AcyclicReceiveBit06 - - - - - AcyclicReceiveBit07 - - - - - AcyclicReceiveBit10 - - - - - AcyclicReceiveBit11 - - - - - AcyclicReceiveBit12 - - - - - AcyclicReceiveBit13 - - - - - AcyclicReceiveBit14 - - - - - AcyclicReceiveBit15 - - - - - AcyclicReceiveBit16 - - - - - AcyclicReceiveBit17 - - - - - CyclicReceiveBit00 - - - - - CyclicReceiveBit01 - - - - - CyclicReceiveBit02 - - - - - CyclicReceiveBit03 - - - - - CyclicReceiveBit04 - - - - - CyclicReceiveBit05 - - - - - CyclicReceiveBit06 - - - - - CyclicReceiveBit07 - - - - - CyclicReceiveBit10 - - - - - CyclicReceiveBit11 - - - - - CyclicReceiveBit12 - - - - - CyclicReceiveBit13 - - - - - CyclicReceiveBit14 - - - - - CyclicReceiveBit15 - - - - - CyclicReceiveBit16 - - - - - CyclicReceiveBit17 - - - - - EnabledControlCommandOnReverseFast - - - - - EnabledControlCommandOnReverse - - - - - EnabledControlCommandOff - - - - - EnabledControlCommandOnForward - - - - - EnabledControlCommandOnForwardFast - - - - - ContactorControl1QE1 - - - - - ContactorControl2QE2 - - - - - ContactorControl3QE3 - - - - - ContactorControl4QE4 - - - - - ContactorControl5QE5 - - - - - DisplayQLEReverseFast - - - - - DisplayQLEReverse - - - - - DisplayQLAOff - - - - - DisplayQLEForward - - - - - DisplayQLEForwardFast - - - - - DisplayQLSFault - - - - - StatusGroupFault - - - - - StatusGroupWarning - - - - - StatusDeviceOk - - - - - StatusBusOk - - - - - StatusPLCPCSInRun - - - - - StatusCurrentFlowing - - - - - StatusPROFIenergyCommandStartPausePending - - - - - StatusOnReverseFast - - - - - StatusOnReverse - - - - - StatusOff - - - - - StatusOnForward - - - - - StatusOnForwardFast - - - - - StatusStartActive - - - - - StatusInterlockingTimeActive - - - - - StatusChangeoverPauseActive - - - - - StatusPositionerRunsInOPENDirection - - - - - StatusPositionerRunsInCLOSEDDirection - - - - - StatusFeedbackCLOSED - - - - - StatusFeedbackOPEN - - - - - StatusTorqueCLOSED - - - - - StatusTorqueOPEN - - - - - StatusTestPosition - - - - - StatusOperationalProtectionOff - - - - - StatusRemoteMode - - - - - StatusEmergencyStartExecuted - - - - - StatusCoolingDownPeriodActive - - - - - StatusPauseTimeActive - - - - - StatusDeviceTestActive - - - - - StatusPhaseSequence123 - - - - - StatusPhaseSequence321 - - - - - StatusEnablingCircuitClosed - - - - - EventPrewarningOverload - - - - - EventUnbalance - - - - - EventOverload - - - - - EventOverloadAndPhaseFailure - - - - - EventInternalGroundFault - - - - - EventExternalGroundFault - - - - - EventExternalGroundFaultWarning - - - - - EventThermistorTripLevel - - - - - EventThermistorShortCircuit - - - - - EventThermistorOpenCircuit - - - - - EventTM1WarningLevelTGt - - - - - EventTM1TripLevelTGt - - - - - EventTM1SensorFault - - - - - EventTM1OutOfRange - - - - - EventWarningLevelIGt - - - - - EventWarningLevelILt - - - - - EventWarningLevelPGt - - - - - EventWarningLevelPLt - - - - - EventWarningLevelCosPhiLt - - - - - EventWarningLevelULt - - - - - EventAM1WarningLevel0420mAGt - - - - - EventAM1WarningLevel0420mALt - - - - - EventTripLevelIGt - - - - - EventTripLevelILt - - - - - EventTripLevelPGt - - - - - EventTripLevelPLt - - - - - EventTripLevelCosPhiLt - - - - - EventTripLevelULt - - - - - EventAM1TripLevel0420mAGt - - - - - EventAM1TripLevel0420mALt - - - - - EventStalledRotor - - - - - EventNoStartPermitted - - - - - EventNumberOfStartsGt - - - - - EventJustOneStartPossible - - - - - EventMotorOperatingHoursGt - - - - - EventStopTimeGt - - - - - EventLimitMonitor1 - - - - - EventLimitMonitor2 - - - - - EventLimitMonitor3 - - - - - EventLimitMonitor4 - - - - - EventExternalFault1 - - - - - EventExternalFault2 - - - - - EventExternalFault3 - - - - - EventExternalFault4 - - - - - EventExternalFault5 - - - - - EventExternalFault6 - - - - - EventAM2OpenCircuit - - - - - EventAM1OpenCircuit - - - - - EventSafetyrelatedTripping - - - - - EventMonitoringPeriodForMandatoryTestingTestRequirement - - - - - EventTimestampfctActiveAndOk - - - - - EventDMFLOCALOk - - - - - EventPROFIsafeActive - - - - - EventConfiguredOperatorPanelMissing - - - - - WarningFeedbackCircuit - - - - - WarningSimultaneity - - - - - FaultHardwareFaultBasicUnit - - - - - FaultModuleFault - - - - - FaultTemporaryComponents - - - - - FaultConfigurationError - - - - - FaultParameterization - - - - - FaultBus - - - - - FaultPLCPCS - - - - - FaultExecutionOnCommand - - - - - FaultExecutionSTOPCommand - - - - - FaultFeedbackOn - - - - - FaultFeedbackOff - - - - - FaultStalledPositioner - - - - - FaultDouble0 - - - - - FaultDouble1 - - - - - FaultEndPosition - - - - - FaultAntivalence - - - - - FaultTestPositionFeedback - - - - - FaultPowerFailure - - - - - FaultOperationalProtectionOff - - - - - SignalConditioning5Output - - - - - SignalConditioning6Output - - - - - TruthTable1Output - - - - - TruthTable2Output - - - - - TruthTable3Output - - - - - TruthTable4Output - - - - - TruthTable5Output - - - - - TruthTable6Output - - - - - TruthTable7Output - - - - - TruthTable8Output - - - - - TruthTable9Output1 - - - - - TruthTable9Output2 - - - - - TruthTable10Output - - - - - TruthTable11Output - - - - - Counter5Output - - - - - Counter6Output - - - - - Timer5Output - - - - - Timer6Output - - - - - Timer1Output - - - - - Timer2Output - - - - - Timer3Output - - - - - Timer4Output - - - - - Counter1Output - - - - - Counter2Output - - - - - Counter3Output - - - - - Counter4Output - - - - - SignalConditioning1Output - - - - - SignalConditioning2Output - - - - - SignalConditioning3Output - - - - - SignalConditioning4Output - - - - - NonvolatileElement1Output - - - - - NonvolatileElement2Output - - - - - NonvolatileElement3Output - - - - - NonvolatileElement4Output - - - - - Flashing1Output - - - - - Flashing2Output - - - - - Flashing3Output - - - - - Flicker1Output - - - - - Flicker2Output - - - - - Flicker3Output - - - - - PWMOutput - - - - - Possible values for property ControlFunctionForwardFast - - - - - NotConnected - - - - - FixedLevel0 - - - - - FixedLevel1 - - - - - EventAM2WarningLevel0420mAGt - - - - - EventAM2WarningLevel0420mALt - - - - - EventAM2TripLevel0420mAGt - - - - - EventAM2TripLevel0420mALt - - - - - BUTestResetButton - - - - - BUInput1 - - - - - BUInput2 - - - - - BUInput3 - - - - - BUInput4 - - - - - DM1Input1 - - - - - DM1Input2 - - - - - DM1Input3 - - - - - DM1Input4 - - - - - DM2Input1 - - - - - DM2Input2 - - - - - DM2Input3 - - - - - DM2Input4 - - - - - DM1SensorChannel1 - - - - - DM1SensorChannel2 - - - - - EventTM2SensorFault - - - - - EventTM2OutOfRange - - - - - EventTM2WarningLevelTGt - - - - - EventTM2TripLevelTGt - - - - - OPTestResetButton - - - - - OPButton1 - - - - - OPButton2 - - - - - OPButton3 - - - - - OPButton4 - - - - - EventLimitMonitor5 - - - - - EventLimitMonitor6 - - - - - AcyclicReceiveBit00 - - - - - AcyclicReceiveBit01 - - - - - AcyclicReceiveBit02 - - - - - AcyclicReceiveBit03 - - - - - AcyclicReceiveBit04 - - - - - AcyclicReceiveBit05 - - - - - AcyclicReceiveBit06 - - - - - AcyclicReceiveBit07 - - - - - AcyclicReceiveBit10 - - - - - AcyclicReceiveBit11 - - - - - AcyclicReceiveBit12 - - - - - AcyclicReceiveBit13 - - - - - AcyclicReceiveBit14 - - - - - AcyclicReceiveBit15 - - - - - AcyclicReceiveBit16 - - - - - AcyclicReceiveBit17 - - - - - CyclicReceiveBit00 - - - - - CyclicReceiveBit01 - - - - - CyclicReceiveBit02 - - - - - CyclicReceiveBit03 - - - - - CyclicReceiveBit04 - - - - - CyclicReceiveBit05 - - - - - CyclicReceiveBit06 - - - - - CyclicReceiveBit07 - - - - - CyclicReceiveBit10 - - - - - CyclicReceiveBit11 - - - - - CyclicReceiveBit12 - - - - - CyclicReceiveBit13 - - - - - CyclicReceiveBit14 - - - - - CyclicReceiveBit15 - - - - - CyclicReceiveBit16 - - - - - CyclicReceiveBit17 - - - - - EnabledControlCommandOnReverseFast - - - - - EnabledControlCommandOnReverse - - - - - EnabledControlCommandOff - - - - - EnabledControlCommandOnForward - - - - - EnabledControlCommandOnForwardFast - - - - - ContactorControl1QE1 - - - - - ContactorControl2QE2 - - - - - ContactorControl3QE3 - - - - - ContactorControl4QE4 - - - - - ContactorControl5QE5 - - - - - DisplayQLEReverseFast - - - - - DisplayQLEReverse - - - - - DisplayQLAOff - - - - - DisplayQLEForward - - - - - DisplayQLEForwardFast - - - - - DisplayQLSFault - - - - - StatusGroupFault - - - - - StatusGroupWarning - - - - - StatusDeviceOk - - - - - StatusBusOk - - - - - StatusPLCPCSInRun - - - - - StatusCurrentFlowing - - - - - StatusPROFIenergyCommandStartPausePending - - - - - StatusOnReverseFast - - - - - StatusOnReverse - - - - - StatusOff - - - - - StatusOnForward - - - - - StatusOnForwardFast - - - - - StatusStartActive - - - - - StatusInterlockingTimeActive - - - - - StatusChangeoverPauseActive - - - - - StatusPositionerRunsInOPENDirection - - - - - StatusPositionerRunsInCLOSEDDirection - - - - - StatusFeedbackCLOSED - - - - - StatusFeedbackOPEN - - - - - StatusTorqueCLOSED - - - - - StatusTorqueOPEN - - - - - StatusTestPosition - - - - - StatusOperationalProtectionOff - - - - - StatusRemoteMode - - - - - StatusEmergencyStartExecuted - - - - - StatusCoolingDownPeriodActive - - - - - StatusPauseTimeActive - - - - - StatusDeviceTestActive - - - - - StatusPhaseSequence123 - - - - - StatusPhaseSequence321 - - - - - StatusEnablingCircuitClosed - - - - - EventPrewarningOverload - - - - - EventUnbalance - - - - - EventOverload - - - - - EventOverloadAndPhaseFailure - - - - - EventInternalGroundFault - - - - - EventExternalGroundFault - - - - - EventExternalGroundFaultWarning - - - - - EventThermistorTripLevel - - - - - EventThermistorShortCircuit - - - - - EventThermistorOpenCircuit - - - - - EventTM1WarningLevelTGt - - - - - EventTM1TripLevelTGt - - - - - EventTM1SensorFault - - - - - EventTM1OutOfRange - - - - - EventWarningLevelIGt - - - - - EventWarningLevelILt - - - - - EventWarningLevelPGt - - - - - EventWarningLevelPLt - - - - - EventWarningLevelCosPhiLt - - - - - EventWarningLevelULt - - - - - EventAM1WarningLevel0420mAGt - - - - - EventAM1WarningLevel0420mALt - - - - - EventTripLevelIGt - - - - - EventTripLevelILt - - - - - EventTripLevelPGt - - - - - EventTripLevelPLt - - - - - EventTripLevelCosPhiLt - - - - - EventTripLevelULt - - - - - EventAM1TripLevel0420mAGt - - - - - EventAM1TripLevel0420mALt - - - - - EventStalledRotor - - - - - EventNoStartPermitted - - - - - EventNumberOfStartsGt - - - - - EventJustOneStartPossible - - - - - EventMotorOperatingHoursGt - - - - - EventStopTimeGt - - - - - EventLimitMonitor1 - - - - - EventLimitMonitor2 - - - - - EventLimitMonitor3 - - - - - EventLimitMonitor4 - - - - - EventExternalFault1 - - - - - EventExternalFault2 - - - - - EventExternalFault3 - - - - - EventExternalFault4 - - - - - EventExternalFault5 - - - - - EventExternalFault6 - - - - - EventAM2OpenCircuit - - - - - EventAM1OpenCircuit - - - - - EventSafetyrelatedTripping - - - - - EventMonitoringPeriodForMandatoryTestingTestRequirement - - - - - EventTimestampfctActiveAndOk - - - - - EventDMFLOCALOk - - - - - EventPROFIsafeActive - - - - - EventConfiguredOperatorPanelMissing - - - - - WarningFeedbackCircuit - - - - - WarningSimultaneity - - - - - FaultHardwareFaultBasicUnit - - - - - FaultModuleFault - - - - - FaultTemporaryComponents - - - - - FaultConfigurationError - - - - - FaultParameterization - - - - - FaultBus - - - - - FaultPLCPCS - - - - - FaultExecutionOnCommand - - - - - FaultExecutionSTOPCommand - - - - - FaultFeedbackOn - - - - - FaultFeedbackOff - - - - - FaultStalledPositioner - - - - - FaultDouble0 - - - - - FaultDouble1 - - - - - FaultEndPosition - - - - - FaultAntivalence - - - - - FaultTestPositionFeedback - - - - - FaultPowerFailure - - - - - FaultOperationalProtectionOff - - - - - SignalConditioning5Output - - - - - SignalConditioning6Output - - - - - TruthTable1Output - - - - - TruthTable2Output - - - - - TruthTable3Output - - - - - TruthTable4Output - - - - - TruthTable5Output - - - - - TruthTable6Output - - - - - TruthTable7Output - - - - - TruthTable8Output - - - - - TruthTable9Output1 - - - - - TruthTable9Output2 - - - - - TruthTable10Output - - - - - TruthTable11Output - - - - - Counter5Output - - - - - Counter6Output - - - - - Timer5Output - - - - - Timer6Output - - - - - Timer1Output - - - - - Timer2Output - - - - - Timer3Output - - - - - Timer4Output - - - - - Counter1Output - - - - - Counter2Output - - - - - Counter3Output - - - - - Counter4Output - - - - - SignalConditioning1Output - - - - - SignalConditioning2Output - - - - - SignalConditioning3Output - - - - - SignalConditioning4Output - - - - - NonvolatileElement1Output - - - - - NonvolatileElement2Output - - - - - NonvolatileElement3Output - - - - - NonvolatileElement4Output - - - - - Flashing1Output - - - - - Flashing2Output - - - - - Flashing3Output - - - - - Flicker1Output - - - - - Flicker2Output - - - - - Flicker3Output - - - - - PWMOutput - - - - - Possible values for property ControlFunctionOFF - - - - - NotConnected - - - - - FixedLevel0 - - - - - FixedLevel1 - - - - - EventAM2WarningLevel0420mAGt - - - - - EventAM2WarningLevel0420mALt - - - - - EventAM2TripLevel0420mAGt - - - - - EventAM2TripLevel0420mALt - - - - - BUTestResetButton - - - - - BUInput1 - - - - - BUInput2 - - - - - BUInput3 - - - - - BUInput4 - - - - - DM1Input1 - - - - - DM1Input2 - - - - - DM1Input3 - - - - - DM1Input4 - - - - - DM2Input1 - - - - - DM2Input2 - - - - - DM2Input3 - - - - - DM2Input4 - - - - - DM1SensorChannel1 - - - - - DM1SensorChannel2 - - - - - EventTM2SensorFault - - - - - EventTM2OutOfRange - - - - - EventTM2WarningLevelTGt - - - - - EventTM2TripLevelTGt - - - - - OPTestResetButton - - - - - OPButton1 - - - - - OPButton2 - - - - - OPButton3 - - - - - OPButton4 - - - - - EventLimitMonitor5 - - - - - EventLimitMonitor6 - - - - - AcyclicReceiveBit00 - - - - - AcyclicReceiveBit01 - - - - - AcyclicReceiveBit02 - - - - - AcyclicReceiveBit03 - - - - - AcyclicReceiveBit04 - - - - - AcyclicReceiveBit05 - - - - - AcyclicReceiveBit06 - - - - - AcyclicReceiveBit07 - - - - - AcyclicReceiveBit10 - - - - - AcyclicReceiveBit11 - - - - - AcyclicReceiveBit12 - - - - - AcyclicReceiveBit13 - - - - - AcyclicReceiveBit14 - - - - - AcyclicReceiveBit15 - - - - - AcyclicReceiveBit16 - - - - - AcyclicReceiveBit17 - - - - - CyclicReceiveBit00 - - - - - CyclicReceiveBit01 - - - - - CyclicReceiveBit02 - - - - - CyclicReceiveBit03 - - - - - CyclicReceiveBit04 - - - - - CyclicReceiveBit05 - - - - - CyclicReceiveBit06 - - - - - CyclicReceiveBit07 - - - - - CyclicReceiveBit10 - - - - - CyclicReceiveBit11 - - - - - CyclicReceiveBit12 - - - - - CyclicReceiveBit13 - - - - - CyclicReceiveBit14 - - - - - CyclicReceiveBit15 - - - - - CyclicReceiveBit16 - - - - - CyclicReceiveBit17 - - - - - EnabledControlCommandOnReverseFast - - - - - EnabledControlCommandOnReverse - - - - - EnabledControlCommandOff - - - - - EnabledControlCommandOnForward - - - - - EnabledControlCommandOnForwardFast - - - - - ContactorControl1QE1 - - - - - ContactorControl2QE2 - - - - - ContactorControl3QE3 - - - - - ContactorControl4QE4 - - - - - ContactorControl5QE5 - - - - - DisplayQLEReverseFast - - - - - DisplayQLEReverse - - - - - DisplayQLAOff - - - - - DisplayQLEForward - - - - - DisplayQLEForwardFast - - - - - DisplayQLSFault - - - - - StatusGroupFault - - - - - StatusGroupWarning - - - - - StatusDeviceOk - - - - - StatusBusOk - - - - - StatusPLCPCSInRun - - - - - StatusCurrentFlowing - - - - - StatusPROFIenergyCommandStartPausePending - - - - - StatusOnReverseFast - - - - - StatusOnReverse - - - - - StatusOff - - - - - StatusOnForward - - - - - StatusOnForwardFast - - - - - StatusStartActive - - - - - StatusInterlockingTimeActive - - - - - StatusChangeoverPauseActive - - - - - StatusPositionerRunsInOPENDirection - - - - - StatusPositionerRunsInCLOSEDDirection - - - - - StatusFeedbackCLOSED - - - - - StatusFeedbackOPEN - - - - - StatusTorqueCLOSED - - - - - StatusTorqueOPEN - - - - - StatusTestPosition - - - - - StatusOperationalProtectionOff - - - - - StatusRemoteMode - - - - - StatusEmergencyStartExecuted - - - - - StatusCoolingDownPeriodActive - - - - - StatusPauseTimeActive - - - - - StatusDeviceTestActive - - - - - StatusPhaseSequence123 - - - - - StatusPhaseSequence321 - - - - - StatusEnablingCircuitClosed - - - - - EventPrewarningOverload - - - - - EventUnbalance - - - - - EventOverload - - - - - EventOverloadAndPhaseFailure - - - - - EventInternalGroundFault - - - - - EventExternalGroundFault - - - - - EventExternalGroundFaultWarning - - - - - EventThermistorTripLevel - - - - - EventThermistorShortCircuit - - - - - EventThermistorOpenCircuit - - - - - EventTM1WarningLevelTGt - - - - - EventTM1TripLevelTGt - - - - - EventTM1SensorFault - - - - - EventTM1OutOfRange - - - - - EventWarningLevelIGt - - - - - EventWarningLevelILt - - - - - EventWarningLevelPGt - - - - - EventWarningLevelPLt - - - - - EventWarningLevelCosPhiLt - - - - - EventWarningLevelULt - - - - - EventAM1WarningLevel0420mAGt - - - - - EventAM1WarningLevel0420mALt - - - - - EventTripLevelIGt - - - - - EventTripLevelILt - - - - - EventTripLevelPGt - - - - - EventTripLevelPLt - - - - - EventTripLevelCosPhiLt - - - - - EventTripLevelULt - - - - - EventAM1TripLevel0420mAGt - - - - - EventAM1TripLevel0420mALt - - - - - EventStalledRotor - - - - - EventNoStartPermitted - - - - - EventNumberOfStartsGt - - - - - EventJustOneStartPossible - - - - - EventMotorOperatingHoursGt - - - - - EventStopTimeGt - - - - - EventLimitMonitor1 - - - - - EventLimitMonitor2 - - - - - EventLimitMonitor3 - - - - - EventLimitMonitor4 - - - - - EventExternalFault1 - - - - - EventExternalFault2 - - - - - EventExternalFault3 - - - - - EventExternalFault4 - - - - - EventExternalFault5 - - - - - EventExternalFault6 - - - - - EventAM2OpenCircuit - - - - - EventAM1OpenCircuit - - - - - EventSafetyrelatedTripping - - - - - EventMonitoringPeriodForMandatoryTestingTestRequirement - - - - - EventTimestampfctActiveAndOk - - - - - EventDMFLOCALOk - - - - - EventPROFIsafeActive - - - - - EventConfiguredOperatorPanelMissing - - - - - WarningFeedbackCircuit - - - - - WarningSimultaneity - - - - - FaultHardwareFaultBasicUnit - - - - - FaultModuleFault - - - - - FaultTemporaryComponents - - - - - FaultConfigurationError - - - - - FaultParameterization - - - - - FaultBus - - - - - FaultPLCPCS - - - - - FaultExecutionOnCommand - - - - - FaultExecutionSTOPCommand - - - - - FaultFeedbackOn - - - - - FaultFeedbackOff - - - - - FaultStalledPositioner - - - - - FaultDouble0 - - - - - FaultDouble1 - - - - - FaultEndPosition - - - - - FaultAntivalence - - - - - FaultTestPositionFeedback - - - - - FaultPowerFailure - - - - - FaultOperationalProtectionOff - - - - - SignalConditioning5Output - - - - - SignalConditioning6Output - - - - - TruthTable1Output - - - - - TruthTable2Output - - - - - TruthTable3Output - - - - - TruthTable4Output - - - - - TruthTable5Output - - - - - TruthTable6Output - - - - - TruthTable7Output - - - - - TruthTable8Output - - - - - TruthTable9Output1 - - - - - TruthTable9Output2 - - - - - TruthTable10Output - - - - - TruthTable11Output - - - - - Counter5Output - - - - - Counter6Output - - - - - Timer5Output - - - - - Timer6Output - - - - - Timer1Output - - - - - Timer2Output - - - - - Timer3Output - - - - - Timer4Output - - - - - Counter1Output - - - - - Counter2Output - - - - - Counter3Output - - - - - Counter4Output - - - - - SignalConditioning1Output - - - - - SignalConditioning2Output - - - - - SignalConditioning3Output - - - - - SignalConditioning4Output - - - - - NonvolatileElement1Output - - - - - NonvolatileElement2Output - - - - - NonvolatileElement3Output - - - - - NonvolatileElement4Output - - - - - Flashing1Output - - - - - Flashing2Output - - - - - Flashing3Output - - - - - Flicker1Output - - - - - Flicker2Output - - - - - Flicker3Output - - - - - PWMOutput - - - - - Possible values for property ControlFunctionReverse - - - - - NotConnected - - - - - FixedLevel0 - - - - - FixedLevel1 - - - - - EventAM2WarningLevel0420mAGt - - - - - EventAM2WarningLevel0420mALt - - - - - EventAM2TripLevel0420mAGt - - - - - EventAM2TripLevel0420mALt - - - - - BUTestResetButton - - - - - BUInput1 - - - - - BUInput2 - - - - - BUInput3 - - - - - BUInput4 - - - - - DM1Input1 - - - - - DM1Input2 - - - - - DM1Input3 - - - - - DM1Input4 - - - - - DM2Input1 - - - - - DM2Input2 - - - - - DM2Input3 - - - - - DM2Input4 - - - - - DM1SensorChannel1 - - - - - DM1SensorChannel2 - - - - - EventTM2SensorFault - - - - - EventTM2OutOfRange - - - - - EventTM2WarningLevelTGt - - - - - EventTM2TripLevelTGt - - - - - OPTestResetButton - - - - - OPButton1 - - - - - OPButton2 - - - - - OPButton3 - - - - - OPButton4 - - - - - EventLimitMonitor5 - - - - - EventLimitMonitor6 - - - - - AcyclicReceiveBit00 - - - - - AcyclicReceiveBit01 - - - - - AcyclicReceiveBit02 - - - - - AcyclicReceiveBit03 - - - - - AcyclicReceiveBit04 - - - - - AcyclicReceiveBit05 - - - - - AcyclicReceiveBit06 - - - - - AcyclicReceiveBit07 - - - - - AcyclicReceiveBit10 - - - - - AcyclicReceiveBit11 - - - - - AcyclicReceiveBit12 - - - - - AcyclicReceiveBit13 - - - - - AcyclicReceiveBit14 - - - - - AcyclicReceiveBit15 - - - - - AcyclicReceiveBit16 - - - - - AcyclicReceiveBit17 - - - - - CyclicReceiveBit00 - - - - - CyclicReceiveBit01 - - - - - CyclicReceiveBit02 - - - - - CyclicReceiveBit03 - - - - - CyclicReceiveBit04 - - - - - CyclicReceiveBit05 - - - - - CyclicReceiveBit06 - - - - - CyclicReceiveBit07 - - - - - CyclicReceiveBit10 - - - - - CyclicReceiveBit11 - - - - - CyclicReceiveBit12 - - - - - CyclicReceiveBit13 - - - - - CyclicReceiveBit14 - - - - - CyclicReceiveBit15 - - - - - CyclicReceiveBit16 - - - - - CyclicReceiveBit17 - - - - - EnabledControlCommandOnReverseFast - - - - - EnabledControlCommandOnReverse - - - - - EnabledControlCommandOff - - - - - EnabledControlCommandOnForward - - - - - EnabledControlCommandOnForwardFast - - - - - ContactorControl1QE1 - - - - - ContactorControl2QE2 - - - - - ContactorControl3QE3 - - - - - ContactorControl4QE4 - - - - - ContactorControl5QE5 - - - - - DisplayQLEReverseFast - - - - - DisplayQLEReverse - - - - - DisplayQLAOff - - - - - DisplayQLEForward - - - - - DisplayQLEForwardFast - - - - - DisplayQLSFault - - - - - StatusGroupFault - - - - - StatusGroupWarning - - - - - StatusDeviceOk - - - - - StatusBusOk - - - - - StatusPLCPCSInRun - - - - - StatusCurrentFlowing - - - - - StatusPROFIenergyCommandStartPausePending - - - - - StatusOnReverseFast - - - - - StatusOnReverse - - - - - StatusOff - - - - - StatusOnForward - - - - - StatusOnForwardFast - - - - - StatusStartActive - - - - - StatusInterlockingTimeActive - - - - - StatusChangeoverPauseActive - - - - - StatusPositionerRunsInOPENDirection - - - - - StatusPositionerRunsInCLOSEDDirection - - - - - StatusFeedbackCLOSED - - - - - StatusFeedbackOPEN - - - - - StatusTorqueCLOSED - - - - - StatusTorqueOPEN - - - - - StatusTestPosition - - - - - StatusOperationalProtectionOff - - - - - StatusRemoteMode - - - - - StatusEmergencyStartExecuted - - - - - StatusCoolingDownPeriodActive - - - - - StatusPauseTimeActive - - - - - StatusDeviceTestActive - - - - - StatusPhaseSequence123 - - - - - StatusPhaseSequence321 - - - - - StatusEnablingCircuitClosed - - - - - EventPrewarningOverload - - - - - EventUnbalance - - - - - EventOverload - - - - - EventOverloadAndPhaseFailure - - - - - EventInternalGroundFault - - - - - EventExternalGroundFault - - - - - EventExternalGroundFaultWarning - - - - - EventThermistorTripLevel - - - - - EventThermistorShortCircuit - - - - - EventThermistorOpenCircuit - - - - - EventTM1WarningLevelTGt - - - - - EventTM1TripLevelTGt - - - - - EventTM1SensorFault - - - - - EventTM1OutOfRange - - - - - EventWarningLevelIGt - - - - - EventWarningLevelILt - - - - - EventWarningLevelPGt - - - - - EventWarningLevelPLt - - - - - EventWarningLevelCosPhiLt - - - - - EventWarningLevelULt - - - - - EventAM1WarningLevel0420mAGt - - - - - EventAM1WarningLevel0420mALt - - - - - EventTripLevelIGt - - - - - EventTripLevelILt - - - - - EventTripLevelPGt - - - - - EventTripLevelPLt - - - - - EventTripLevelCosPhiLt - - - - - EventTripLevelULt - - - - - EventAM1TripLevel0420mAGt - - - - - EventAM1TripLevel0420mALt - - - - - EventStalledRotor - - - - - EventNoStartPermitted - - - - - EventNumberOfStartsGt - - - - - EventJustOneStartPossible - - - - - EventMotorOperatingHoursGt - - - - - EventStopTimeGt - - - - - EventLimitMonitor1 - - - - - EventLimitMonitor2 - - - - - EventLimitMonitor3 - - - - - EventLimitMonitor4 - - - - - EventExternalFault1 - - - - - EventExternalFault2 - - - - - EventExternalFault3 - - - - - EventExternalFault4 - - - - - EventExternalFault5 - - - - - EventExternalFault6 - - - - - EventAM2OpenCircuit - - - - - EventAM1OpenCircuit - - - - - EventSafetyrelatedTripping - - - - - EventMonitoringPeriodForMandatoryTestingTestRequirement - - - - - EventTimestampfctActiveAndOk - - - - - EventDMFLOCALOk - - - - - EventPROFIsafeActive - - - - - EventConfiguredOperatorPanelMissing - - - - - WarningFeedbackCircuit - - - - - WarningSimultaneity - - - - - FaultHardwareFaultBasicUnit - - - - - FaultModuleFault - - - - - FaultTemporaryComponents - - - - - FaultConfigurationError - - - - - FaultParameterization - - - - - FaultBus - - - - - FaultPLCPCS - - - - - FaultExecutionOnCommand - - - - - FaultExecutionSTOPCommand - - - - - FaultFeedbackOn - - - - - FaultFeedbackOff - - - - - FaultStalledPositioner - - - - - FaultDouble0 - - - - - FaultDouble1 - - - - - FaultEndPosition - - - - - FaultAntivalence - - - - - FaultTestPositionFeedback - - - - - FaultPowerFailure - - - - - FaultOperationalProtectionOff - - - - - SignalConditioning5Output - - - - - SignalConditioning6Output - - - - - TruthTable1Output - - - - - TruthTable2Output - - - - - TruthTable3Output - - - - - TruthTable4Output - - - - - TruthTable5Output - - - - - TruthTable6Output - - - - - TruthTable7Output - - - - - TruthTable8Output - - - - - TruthTable9Output1 - - - - - TruthTable9Output2 - - - - - TruthTable10Output - - - - - TruthTable11Output - - - - - Counter5Output - - - - - Counter6Output - - - - - Timer5Output - - - - - Timer6Output - - - - - Timer1Output - - - - - Timer2Output - - - - - Timer3Output - - - - - Timer4Output - - - - - Counter1Output - - - - - Counter2Output - - - - - Counter3Output - - - - - Counter4Output - - - - - SignalConditioning1Output - - - - - SignalConditioning2Output - - - - - SignalConditioning3Output - - - - - SignalConditioning4Output - - - - - NonvolatileElement1Output - - - - - NonvolatileElement2Output - - - - - NonvolatileElement3Output - - - - - NonvolatileElement4Output - - - - - Flashing1Output - - - - - Flashing2Output - - - - - Flashing3Output - - - - - Flicker1Output - - - - - Flicker2Output - - - - - Flicker3Output - - - - - PWMOutput - - - - - Possible values for property ControlFunctionReverseFast - - - - - NotConnected - - - - - FixedLevel0 - - - - - FixedLevel1 - - - - - EventAM2WarningLevel0420mAGt - - - - - EventAM2WarningLevel0420mALt - - - - - EventAM2TripLevel0420mAGt - - - - - EventAM2TripLevel0420mALt - - - - - BUTestResetButton - - - - - BUInput1 - - - - - BUInput2 - - - - - BUInput3 - - - - - BUInput4 - - - - - DM1Input1 - - - - - DM1Input2 - - - - - DM1Input3 - - - - - DM1Input4 - - - - - DM2Input1 - - - - - DM2Input2 - - - - - DM2Input3 - - - - - DM2Input4 - - - - - DM1SensorChannel1 - - - - - DM1SensorChannel2 - - - - - EventTM2SensorFault - - - - - EventTM2OutOfRange - - - - - EventTM2WarningLevelTGt - - - - - EventTM2TripLevelTGt - - - - - OPTestResetButton - - - - - OPButton1 - - - - - OPButton2 - - - - - OPButton3 - - - - - OPButton4 - - - - - EventLimitMonitor5 - - - - - EventLimitMonitor6 - - - - - AcyclicReceiveBit00 - - - - - AcyclicReceiveBit01 - - - - - AcyclicReceiveBit02 - - - - - AcyclicReceiveBit03 - - - - - AcyclicReceiveBit04 - - - - - AcyclicReceiveBit05 - - - - - AcyclicReceiveBit06 - - - - - AcyclicReceiveBit07 - - - - - AcyclicReceiveBit10 - - - - - AcyclicReceiveBit11 - - - - - AcyclicReceiveBit12 - - - - - AcyclicReceiveBit13 - - - - - AcyclicReceiveBit14 - - - - - AcyclicReceiveBit15 - - - - - AcyclicReceiveBit16 - - - - - AcyclicReceiveBit17 - - - - - CyclicReceiveBit00 - - - - - CyclicReceiveBit01 - - - - - CyclicReceiveBit02 - - - - - CyclicReceiveBit03 - - - - - CyclicReceiveBit04 - - - - - CyclicReceiveBit05 - - - - - CyclicReceiveBit06 - - - - - CyclicReceiveBit07 - - - - - CyclicReceiveBit10 - - - - - CyclicReceiveBit11 - - - - - CyclicReceiveBit12 - - - - - CyclicReceiveBit13 - - - - - CyclicReceiveBit14 - - - - - CyclicReceiveBit15 - - - - - CyclicReceiveBit16 - - - - - CyclicReceiveBit17 - - - - - EnabledControlCommandOnReverseFast - - - - - EnabledControlCommandOnReverse - - - - - EnabledControlCommandOff - - - - - EnabledControlCommandOnForward - - - - - EnabledControlCommandOnForwardFast - - - - - ContactorControl1QE1 - - - - - ContactorControl2QE2 - - - - - ContactorControl3QE3 - - - - - ContactorControl4QE4 - - - - - ContactorControl5QE5 - - - - - DisplayQLEReverseFast - - - - - DisplayQLEReverse - - - - - DisplayQLAOff - - - - - DisplayQLEForward - - - - - DisplayQLEForwardFast - - - - - DisplayQLSFault - - - - - StatusGroupFault - - - - - StatusGroupWarning - - - - - StatusDeviceOk - - - - - StatusBusOk - - - - - StatusPLCPCSInRun - - - - - StatusCurrentFlowing - - - - - StatusPROFIenergyCommandStartPausePending - - - - - StatusOnReverseFast - - - - - StatusOnReverse - - - - - StatusOff - - - - - StatusOnForward - - - - - StatusOnForwardFast - - - - - StatusStartActive - - - - - StatusInterlockingTimeActive - - - - - StatusChangeoverPauseActive - - - - - StatusPositionerRunsInOPENDirection - - - - - StatusPositionerRunsInCLOSEDDirection - - - - - StatusFeedbackCLOSED - - - - - StatusFeedbackOPEN - - - - - StatusTorqueCLOSED - - - - - StatusTorqueOPEN - - - - - StatusTestPosition - - - - - StatusOperationalProtectionOff - - - - - StatusRemoteMode - - - - - StatusEmergencyStartExecuted - - - - - StatusCoolingDownPeriodActive - - - - - StatusPauseTimeActive - - - - - StatusDeviceTestActive - - - - - StatusPhaseSequence123 - - - - - StatusPhaseSequence321 - - - - - StatusEnablingCircuitClosed - - - - - EventPrewarningOverload - - - - - EventUnbalance - - - - - EventOverload - - - - - EventOverloadAndPhaseFailure - - - - - EventInternalGroundFault - - - - - EventExternalGroundFault - - - - - EventExternalGroundFaultWarning - - - - - EventThermistorTripLevel - - - - - EventThermistorShortCircuit - - - - - EventThermistorOpenCircuit - - - - - EventTM1WarningLevelTGt - - - - - EventTM1TripLevelTGt - - - - - EventTM1SensorFault - - - - - EventTM1OutOfRange - - - - - EventWarningLevelIGt - - - - - EventWarningLevelILt - - - - - EventWarningLevelPGt - - - - - EventWarningLevelPLt - - - - - EventWarningLevelCosPhiLt - - - - - EventWarningLevelULt - - - - - EventAM1WarningLevel0420mAGt - - - - - EventAM1WarningLevel0420mALt - - - - - EventTripLevelIGt - - - - - EventTripLevelILt - - - - - EventTripLevelPGt - - - - - EventTripLevelPLt - - - - - EventTripLevelCosPhiLt - - - - - EventTripLevelULt - - - - - EventAM1TripLevel0420mAGt - - - - - EventAM1TripLevel0420mALt - - - - - EventStalledRotor - - - - - EventNoStartPermitted - - - - - EventNumberOfStartsGt - - - - - EventJustOneStartPossible - - - - - EventMotorOperatingHoursGt - - - - - EventStopTimeGt - - - - - EventLimitMonitor1 - - - - - EventLimitMonitor2 - - - - - EventLimitMonitor3 - - - - - EventLimitMonitor4 - - - - - EventExternalFault1 - - - - - EventExternalFault2 - - - - - EventExternalFault3 - - - - - EventExternalFault4 - - - - - EventExternalFault5 - - - - - EventExternalFault6 - - - - - EventAM2OpenCircuit - - - - - EventAM1OpenCircuit - - - - - EventSafetyrelatedTripping - - - - - EventMonitoringPeriodForMandatoryTestingTestRequirement - - - - - EventTimestampfctActiveAndOk - - - - - EventDMFLOCALOk - - - - - EventPROFIsafeActive - - - - - EventConfiguredOperatorPanelMissing - - - - - WarningFeedbackCircuit - - - - - WarningSimultaneity - - - - - FaultHardwareFaultBasicUnit - - - - - FaultModuleFault - - - - - FaultTemporaryComponents - - - - - FaultConfigurationError - - - - - FaultParameterization - - - - - FaultBus - - - - - FaultPLCPCS - - - - - FaultExecutionOnCommand - - - - - FaultExecutionSTOPCommand - - - - - FaultFeedbackOn - - - - - FaultFeedbackOff - - - - - FaultStalledPositioner - - - - - FaultDouble0 - - - - - FaultDouble1 - - - - - FaultEndPosition - - - - - FaultAntivalence - - - - - FaultTestPositionFeedback - - - - - FaultPowerFailure - - - - - FaultOperationalProtectionOff - - - - - SignalConditioning5Output - - - - - SignalConditioning6Output - - - - - TruthTable1Output - - - - - TruthTable2Output - - - - - TruthTable3Output - - - - - TruthTable4Output - - - - - TruthTable5Output - - - - - TruthTable6Output - - - - - TruthTable7Output - - - - - TruthTable8Output - - - - - TruthTable9Output1 - - - - - TruthTable9Output2 - - - - - TruthTable10Output - - - - - TruthTable11Output - - - - - Counter5Output - - - - - Counter6Output - - - - - Timer5Output - - - - - Timer6Output - - - - - Timer1Output - - - - - Timer2Output - - - - - Timer3Output - - - - - Timer4Output - - - - - Counter1Output - - - - - Counter2Output - - - - - Counter3Output - - - - - Counter4Output - - - - - SignalConditioning1Output - - - - - SignalConditioning2Output - - - - - SignalConditioning3Output - - - - - SignalConditioning4Output - - - - - NonvolatileElement1Output - - - - - NonvolatileElement2Output - - - - - NonvolatileElement3Output - - - - - NonvolatileElement4Output - - - - - Flashing1Output - - - - - Flashing2Output - - - - - Flashing3Output - - - - - Flicker1Output - - - - - Flicker2Output - - - - - Flicker3Output - - - - - PWMOutput - - - - - Possible values for property ControlFunctionTorqueCLOSEDTC - - - - - NotConnected - - - - - FixedLevel0 - - - - - FixedLevel1 - - - - - EventAM2WarningLevel0420mAGt - - - - - EventAM2WarningLevel0420mALt - - - - - EventAM2TripLevel0420mAGt - - - - - EventAM2TripLevel0420mALt - - - - - BUTestResetButton - - - - - BUInput1 - - - - - BUInput2 - - - - - BUInput3 - - - - - BUInput4 - - - - - DM1Input1 - - - - - DM1Input2 - - - - - DM1Input3 - - - - - DM1Input4 - - - - - DM2Input1 - - - - - DM2Input2 - - - - - DM2Input3 - - - - - DM2Input4 - - - - - DM1SensorChannel1 - - - - - DM1SensorChannel2 - - - - - EventTM2SensorFault - - - - - EventTM2OutOfRange - - - - - EventTM2WarningLevelTGt - - - - - EventTM2TripLevelTGt - - - - - OPTestResetButton - - - - - OPButton1 - - - - - OPButton2 - - - - - OPButton3 - - - - - OPButton4 - - - - - EventLimitMonitor5 - - - - - EventLimitMonitor6 - - - - - AcyclicReceiveBit00 - - - - - AcyclicReceiveBit01 - - - - - AcyclicReceiveBit02 - - - - - AcyclicReceiveBit03 - - - - - AcyclicReceiveBit04 - - - - - AcyclicReceiveBit05 - - - - - AcyclicReceiveBit06 - - - - - AcyclicReceiveBit07 - - - - - AcyclicReceiveBit10 - - - - - AcyclicReceiveBit11 - - - - - AcyclicReceiveBit12 - - - - - AcyclicReceiveBit13 - - - - - AcyclicReceiveBit14 - - - - - AcyclicReceiveBit15 - - - - - AcyclicReceiveBit16 - - - - - AcyclicReceiveBit17 - - - - - CyclicReceiveBit00 - - - - - CyclicReceiveBit01 - - - - - CyclicReceiveBit02 - - - - - CyclicReceiveBit03 - - - - - CyclicReceiveBit04 - - - - - CyclicReceiveBit05 - - - - - CyclicReceiveBit06 - - - - - CyclicReceiveBit07 - - - - - CyclicReceiveBit10 - - - - - CyclicReceiveBit11 - - - - - CyclicReceiveBit12 - - - - - CyclicReceiveBit13 - - - - - CyclicReceiveBit14 - - - - - CyclicReceiveBit15 - - - - - CyclicReceiveBit16 - - - - - CyclicReceiveBit17 - - - - - EnabledControlCommandOnReverseFast - - - - - EnabledControlCommandOnReverse - - - - - EnabledControlCommandOff - - - - - EnabledControlCommandOnForward - - - - - EnabledControlCommandOnForwardFast - - - - - ContactorControl1QE1 - - - - - ContactorControl2QE2 - - - - - ContactorControl3QE3 - - - - - ContactorControl4QE4 - - - - - ContactorControl5QE5 - - - - - DisplayQLEReverseFast - - - - - DisplayQLEReverse - - - - - DisplayQLAOff - - - - - DisplayQLEForward - - - - - DisplayQLEForwardFast - - - - - DisplayQLSFault - - - - - StatusGroupFault - - - - - StatusGroupWarning - - - - - StatusDeviceOk - - - - - StatusBusOk - - - - - StatusPLCPCSInRun - - - - - StatusCurrentFlowing - - - - - StatusPROFIenergyCommandStartPausePending - - - - - StatusOnReverseFast - - - - - StatusOnReverse - - - - - StatusOff - - - - - StatusOnForward - - - - - StatusOnForwardFast - - - - - StatusStartActive - - - - - StatusInterlockingTimeActive - - - - - StatusChangeoverPauseActive - - - - - StatusPositionerRunsInOPENDirection - - - - - StatusPositionerRunsInCLOSEDDirection - - - - - StatusFeedbackCLOSED - - - - - StatusFeedbackOPEN - - - - - StatusTorqueCLOSED - - - - - StatusTorqueOPEN - - - - - StatusTestPosition - - - - - StatusOperationalProtectionOff - - - - - StatusRemoteMode - - - - - StatusEmergencyStartExecuted - - - - - StatusCoolingDownPeriodActive - - - - - StatusPauseTimeActive - - - - - StatusDeviceTestActive - - - - - StatusPhaseSequence123 - - - - - StatusPhaseSequence321 - - - - - StatusEnablingCircuitClosed - - - - - EventPrewarningOverload - - - - - EventUnbalance - - - - - EventOverload - - - - - EventOverloadAndPhaseFailure - - - - - EventInternalGroundFault - - - - - EventExternalGroundFault - - - - - EventExternalGroundFaultWarning - - - - - EventThermistorTripLevel - - - - - EventThermistorShortCircuit - - - - - EventThermistorOpenCircuit - - - - - EventTM1WarningLevelTGt - - - - - EventTM1TripLevelTGt - - - - - EventTM1SensorFault - - - - - EventTM1OutOfRange - - - - - EventWarningLevelIGt - - - - - EventWarningLevelILt - - - - - EventWarningLevelPGt - - - - - EventWarningLevelPLt - - - - - EventWarningLevelCosPhiLt - - - - - EventWarningLevelULt - - - - - EventAM1WarningLevel0420mAGt - - - - - EventAM1WarningLevel0420mALt - - - - - EventTripLevelIGt - - - - - EventTripLevelILt - - - - - EventTripLevelPGt - - - - - EventTripLevelPLt - - - - - EventTripLevelCosPhiLt - - - - - EventTripLevelULt - - - - - EventAM1TripLevel0420mAGt - - - - - EventAM1TripLevel0420mALt - - - - - EventStalledRotor - - - - - EventNoStartPermitted - - - - - EventNumberOfStartsGt - - - - - EventJustOneStartPossible - - - - - EventMotorOperatingHoursGt - - - - - EventStopTimeGt - - - - - EventLimitMonitor1 - - - - - EventLimitMonitor2 - - - - - EventLimitMonitor3 - - - - - EventLimitMonitor4 - - - - - EventExternalFault1 - - - - - EventExternalFault2 - - - - - EventExternalFault3 - - - - - EventExternalFault4 - - - - - EventExternalFault5 - - - - - EventExternalFault6 - - - - - EventAM2OpenCircuit - - - - - EventAM1OpenCircuit - - - - - EventSafetyrelatedTripping - - - - - EventMonitoringPeriodForMandatoryTestingTestRequirement - - - - - EventTimestampfctActiveAndOk - - - - - EventDMFLOCALOk - - - - - EventPROFIsafeActive - - - - - EventConfiguredOperatorPanelMissing - - - - - WarningFeedbackCircuit - - - - - WarningSimultaneity - - - - - FaultHardwareFaultBasicUnit - - - - - FaultModuleFault - - - - - FaultTemporaryComponents - - - - - FaultConfigurationError - - - - - FaultParameterization - - - - - FaultBus - - - - - FaultPLCPCS - - - - - FaultExecutionOnCommand - - - - - FaultExecutionSTOPCommand - - - - - FaultFeedbackOn - - - - - FaultFeedbackOff - - - - - FaultStalledPositioner - - - - - FaultDouble0 - - - - - FaultDouble1 - - - - - FaultEndPosition - - - - - FaultAntivalence - - - - - FaultTestPositionFeedback - - - - - FaultPowerFailure - - - - - FaultOperationalProtectionOff - - - - - SignalConditioning5Output - - - - - SignalConditioning6Output - - - - - TruthTable1Output - - - - - TruthTable2Output - - - - - TruthTable3Output - - - - - TruthTable4Output - - - - - TruthTable5Output - - - - - TruthTable6Output - - - - - TruthTable7Output - - - - - TruthTable8Output - - - - - TruthTable9Output1 - - - - - TruthTable9Output2 - - - - - TruthTable10Output - - - - - TruthTable11Output - - - - - Counter5Output - - - - - Counter6Output - - - - - Timer5Output - - - - - Timer6Output - - - - - Timer1Output - - - - - Timer2Output - - - - - Timer3Output - - - - - Timer4Output - - - - - Counter1Output - - - - - Counter2Output - - - - - Counter3Output - - - - - Counter4Output - - - - - SignalConditioning1Output - - - - - SignalConditioning2Output - - - - - SignalConditioning3Output - - - - - SignalConditioning4Output - - - - - NonvolatileElement1Output - - - - - NonvolatileElement2Output - - - - - NonvolatileElement3Output - - - - - NonvolatileElement4Output - - - - - Flashing1Output - - - - - Flashing2Output - - - - - Flashing3Output - - - - - Flicker1Output - - - - - Flicker2Output - - - - - Flicker3Output - - - - - PWMOutput - - - - - Possible values for property ControlFunctionTorqueOPENTO - - - - - NotConnected - - - - - FixedLevel0 - - - - - FixedLevel1 - - - - - EventAM2WarningLevel0420mAGt - - - - - EventAM2WarningLevel0420mALt - - - - - EventAM2TripLevel0420mAGt - - - - - EventAM2TripLevel0420mALt - - - - - BUTestResetButton - - - - - BUInput1 - - - - - BUInput2 - - - - - BUInput3 - - - - - BUInput4 - - - - - DM1Input1 - - - - - DM1Input2 - - - - - DM1Input3 - - - - - DM1Input4 - - - - - DM2Input1 - - - - - DM2Input2 - - - - - DM2Input3 - - - - - DM2Input4 - - - - - DM1SensorChannel1 - - - - - DM1SensorChannel2 - - - - - EventTM2SensorFault - - - - - EventTM2OutOfRange - - - - - EventTM2WarningLevelTGt - - - - - EventTM2TripLevelTGt - - - - - OPTestResetButton - - - - - OPButton1 - - - - - OPButton2 - - - - - OPButton3 - - - - - OPButton4 - - - - - EventLimitMonitor5 - - - - - EventLimitMonitor6 - - - - - AcyclicReceiveBit00 - - - - - AcyclicReceiveBit01 - - - - - AcyclicReceiveBit02 - - - - - AcyclicReceiveBit03 - - - - - AcyclicReceiveBit04 - - - - - AcyclicReceiveBit05 - - - - - AcyclicReceiveBit06 - - - - - AcyclicReceiveBit07 - - - - - AcyclicReceiveBit10 - - - - - AcyclicReceiveBit11 - - - - - AcyclicReceiveBit12 - - - - - AcyclicReceiveBit13 - - - - - AcyclicReceiveBit14 - - - - - AcyclicReceiveBit15 - - - - - AcyclicReceiveBit16 - - - - - AcyclicReceiveBit17 - - - - - CyclicReceiveBit00 - - - - - CyclicReceiveBit01 - - - - - CyclicReceiveBit02 - - - - - CyclicReceiveBit03 - - - - - CyclicReceiveBit04 - - - - - CyclicReceiveBit05 - - - - - CyclicReceiveBit06 - - - - - CyclicReceiveBit07 - - - - - CyclicReceiveBit10 - - - - - CyclicReceiveBit11 - - - - - CyclicReceiveBit12 - - - - - CyclicReceiveBit13 - - - - - CyclicReceiveBit14 - - - - - CyclicReceiveBit15 - - - - - CyclicReceiveBit16 - - - - - CyclicReceiveBit17 - - - - - EnabledControlCommandOnReverseFast - - - - - EnabledControlCommandOnReverse - - - - - EnabledControlCommandOff - - - - - EnabledControlCommandOnForward - - - - - EnabledControlCommandOnForwardFast - - - - - ContactorControl1QE1 - - - - - ContactorControl2QE2 - - - - - ContactorControl3QE3 - - - - - ContactorControl4QE4 - - - - - ContactorControl5QE5 - - - - - DisplayQLEReverseFast - - - - - DisplayQLEReverse - - - - - DisplayQLAOff - - - - - DisplayQLEForward - - - - - DisplayQLEForwardFast - - - - - DisplayQLSFault - - - - - StatusGroupFault - - - - - StatusGroupWarning - - - - - StatusDeviceOk - - - - - StatusBusOk - - - - - StatusPLCPCSInRun - - - - - StatusCurrentFlowing - - - - - StatusPROFIenergyCommandStartPausePending - - - - - StatusOnReverseFast - - - - - StatusOnReverse - - - - - StatusOff - - - - - StatusOnForward - - - - - StatusOnForwardFast - - - - - StatusStartActive - - - - - StatusInterlockingTimeActive - - - - - StatusChangeoverPauseActive - - - - - StatusPositionerRunsInOPENDirection - - - - - StatusPositionerRunsInCLOSEDDirection - - - - - StatusFeedbackCLOSED - - - - - StatusFeedbackOPEN - - - - - StatusTorqueCLOSED - - - - - StatusTorqueOPEN - - - - - StatusTestPosition - - - - - StatusOperationalProtectionOff - - - - - StatusRemoteMode - - - - - StatusEmergencyStartExecuted - - - - - StatusCoolingDownPeriodActive - - - - - StatusPauseTimeActive - - - - - StatusDeviceTestActive - - - - - StatusPhaseSequence123 - - - - - StatusPhaseSequence321 - - - - - StatusEnablingCircuitClosed - - - - - EventPrewarningOverload - - - - - EventUnbalance - - - - - EventOverload - - - - - EventOverloadAndPhaseFailure - - - - - EventInternalGroundFault - - - - - EventExternalGroundFault - - - - - EventExternalGroundFaultWarning - - - - - EventThermistorTripLevel - - - - - EventThermistorShortCircuit - - - - - EventThermistorOpenCircuit - - - - - EventTM1WarningLevelTGt - - - - - EventTM1TripLevelTGt - - - - - EventTM1SensorFault - - - - - EventTM1OutOfRange - - - - - EventWarningLevelIGt - - - - - EventWarningLevelILt - - - - - EventWarningLevelPGt - - - - - EventWarningLevelPLt - - - - - EventWarningLevelCosPhiLt - - - - - EventWarningLevelULt - - - - - EventAM1WarningLevel0420mAGt - - - - - EventAM1WarningLevel0420mALt - - - - - EventTripLevelIGt - - - - - EventTripLevelILt - - - - - EventTripLevelPGt - - - - - EventTripLevelPLt - - - - - EventTripLevelCosPhiLt - - - - - EventTripLevelULt - - - - - EventAM1TripLevel0420mAGt - - - - - EventAM1TripLevel0420mALt - - - - - EventStalledRotor - - - - - EventNoStartPermitted - - - - - EventNumberOfStartsGt - - - - - EventJustOneStartPossible - - - - - EventMotorOperatingHoursGt - - - - - EventStopTimeGt - - - - - EventLimitMonitor1 - - - - - EventLimitMonitor2 - - - - - EventLimitMonitor3 - - - - - EventLimitMonitor4 - - - - - EventExternalFault1 - - - - - EventExternalFault2 - - - - - EventExternalFault3 - - - - - EventExternalFault4 - - - - - EventExternalFault5 - - - - - EventExternalFault6 - - - - - EventAM2OpenCircuit - - - - - EventAM1OpenCircuit - - - - - EventSafetyrelatedTripping - - - - - EventMonitoringPeriodForMandatoryTestingTestRequirement - - - - - EventTimestampfctActiveAndOk - - - - - EventDMFLOCALOk - - - - - EventPROFIsafeActive - - - - - EventConfiguredOperatorPanelMissing - - - - - WarningFeedbackCircuit - - - - - WarningSimultaneity - - - - - FaultHardwareFaultBasicUnit - - - - - FaultModuleFault - - - - - FaultTemporaryComponents - - - - - FaultConfigurationError - - - - - FaultParameterization - - - - - FaultBus - - - - - FaultPLCPCS - - - - - FaultExecutionOnCommand - - - - - FaultExecutionSTOPCommand - - - - - FaultFeedbackOn - - - - - FaultFeedbackOff - - - - - FaultStalledPositioner - - - - - FaultDouble0 - - - - - FaultDouble1 - - - - - FaultEndPosition - - - - - FaultAntivalence - - - - - FaultTestPositionFeedback - - - - - FaultPowerFailure - - - - - FaultOperationalProtectionOff - - - - - SignalConditioning5Output - - - - - SignalConditioning6Output - - - - - TruthTable1Output - - - - - TruthTable2Output - - - - - TruthTable3Output - - - - - TruthTable4Output - - - - - TruthTable5Output - - - - - TruthTable6Output - - - - - TruthTable7Output - - - - - TruthTable8Output - - - - - TruthTable9Output1 - - - - - TruthTable9Output2 - - - - - TruthTable10Output - - - - - TruthTable11Output - - - - - Counter5Output - - - - - Counter6Output - - - - - Timer5Output - - - - - Timer6Output - - - - - Timer1Output - - - - - Timer2Output - - - - - Timer3Output - - - - - Timer4Output - - - - - Counter1Output - - - - - Counter2Output - - - - - Counter3Output - - - - - Counter4Output - - - - - SignalConditioning1Output - - - - - SignalConditioning2Output - - - - - SignalConditioning3Output - - - - - SignalConditioning4Output - - - - - NonvolatileElement1Output - - - - - NonvolatileElement2Output - - - - - NonvolatileElement3Output - - - - - NonvolatileElement4Output - - - - - Flashing1Output - - - - - Flashing2Output - - - - - Flashing3Output - - - - - Flicker1Output - - - - - Flicker2Output - - - - - Flicker3Output - - - - - PWMOutput - - - - - Possible values for property ControlStationModeSelectorS1 - - - - - NotConnected - - - - - FixedLevel0 - - - - - FixedLevel1 - - - - - EventAM2WarningLevel0420mAGt - - - - - EventAM2WarningLevel0420mALt - - - - - EventAM2TripLevel0420mAGt - - - - - EventAM2TripLevel0420mALt - - - - - BUTestResetButton - - - - - BUInput1 - - - - - BUInput2 - - - - - BUInput3 - - - - - BUInput4 - - - - - DM1Input1 - - - - - DM1Input2 - - - - - DM1Input3 - - - - - DM1Input4 - - - - - DM2Input1 - - - - - DM2Input2 - - - - - DM2Input3 - - - - - DM2Input4 - - - - - DM1SensorChannel1 - - - - - DM1SensorChannel2 - - - - - EventTM2SensorFault - - - - - EventTM2OutOfRange - - - - - EventTM2WarningLevelTGt - - - - - EventTM2TripLevelTGt - - - - - OPTestResetButton - - - - - OPButton1 - - - - - OPButton2 - - - - - OPButton3 - - - - - OPButton4 - - - - - EventLimitMonitor5 - - - - - EventLimitMonitor6 - - - - - AcyclicReceiveBit00 - - - - - AcyclicReceiveBit01 - - - - - AcyclicReceiveBit02 - - - - - AcyclicReceiveBit03 - - - - - AcyclicReceiveBit04 - - - - - AcyclicReceiveBit05 - - - - - AcyclicReceiveBit06 - - - - - AcyclicReceiveBit07 - - - - - AcyclicReceiveBit10 - - - - - AcyclicReceiveBit11 - - - - - AcyclicReceiveBit12 - - - - - AcyclicReceiveBit13 - - - - - AcyclicReceiveBit14 - - - - - AcyclicReceiveBit15 - - - - - AcyclicReceiveBit16 - - - - - AcyclicReceiveBit17 - - - - - CyclicReceiveBit00 - - - - - CyclicReceiveBit01 - - - - - CyclicReceiveBit02 - - - - - CyclicReceiveBit03 - - - - - CyclicReceiveBit04 - - - - - CyclicReceiveBit05 - - - - - CyclicReceiveBit06 - - - - - CyclicReceiveBit07 - - - - - CyclicReceiveBit10 - - - - - CyclicReceiveBit11 - - - - - CyclicReceiveBit12 - - - - - CyclicReceiveBit13 - - - - - CyclicReceiveBit14 - - - - - CyclicReceiveBit15 - - - - - CyclicReceiveBit16 - - - - - CyclicReceiveBit17 - - - - - EnabledControlCommandOnReverseFast - - - - - EnabledControlCommandOnReverse - - - - - EnabledControlCommandOff - - - - - EnabledControlCommandOnForward - - - - - EnabledControlCommandOnForwardFast - - - - - ContactorControl1QE1 - - - - - ContactorControl2QE2 - - - - - ContactorControl3QE3 - - - - - ContactorControl4QE4 - - - - - ContactorControl5QE5 - - - - - DisplayQLEReverseFast - - - - - DisplayQLEReverse - - - - - DisplayQLAOff - - - - - DisplayQLEForward - - - - - DisplayQLEForwardFast - - - - - DisplayQLSFault - - - - - StatusGroupFault - - - - - StatusGroupWarning - - - - - StatusDeviceOk - - - - - StatusBusOk - - - - - StatusPLCPCSInRun - - - - - StatusCurrentFlowing - - - - - StatusPROFIenergyCommandStartPausePending - - - - - StatusOnReverseFast - - - - - StatusOnReverse - - - - - StatusOff - - - - - StatusOnForward - - - - - StatusOnForwardFast - - - - - StatusStartActive - - - - - StatusInterlockingTimeActive - - - - - StatusChangeoverPauseActive - - - - - StatusPositionerRunsInOPENDirection - - - - - StatusPositionerRunsInCLOSEDDirection - - - - - StatusFeedbackCLOSED - - - - - StatusFeedbackOPEN - - - - - StatusTorqueCLOSED - - - - - StatusTorqueOPEN - - - - - StatusTestPosition - - - - - StatusOperationalProtectionOff - - - - - StatusRemoteMode - - - - - StatusEmergencyStartExecuted - - - - - StatusCoolingDownPeriodActive - - - - - StatusPauseTimeActive - - - - - StatusDeviceTestActive - - - - - StatusPhaseSequence123 - - - - - StatusPhaseSequence321 - - - - - StatusEnablingCircuitClosed - - - - - EventPrewarningOverload - - - - - EventUnbalance - - - - - EventOverload - - - - - EventOverloadAndPhaseFailure - - - - - EventInternalGroundFault - - - - - EventExternalGroundFault - - - - - EventExternalGroundFaultWarning - - - - - EventThermistorTripLevel - - - - - EventThermistorShortCircuit - - - - - EventThermistorOpenCircuit - - - - - EventTM1WarningLevelTGt - - - - - EventTM1TripLevelTGt - - - - - EventTM1SensorFault - - - - - EventTM1OutOfRange - - - - - EventWarningLevelIGt - - - - - EventWarningLevelILt - - - - - EventWarningLevelPGt - - - - - EventWarningLevelPLt - - - - - EventWarningLevelCosPhiLt - - - - - EventWarningLevelULt - - - - - EventAM1WarningLevel0420mAGt - - - - - EventAM1WarningLevel0420mALt - - - - - EventTripLevelIGt - - - - - EventTripLevelILt - - - - - EventTripLevelPGt - - - - - EventTripLevelPLt - - - - - EventTripLevelCosPhiLt - - - - - EventTripLevelULt - - - - - EventAM1TripLevel0420mAGt - - - - - EventAM1TripLevel0420mALt - - - - - EventStalledRotor - - - - - EventNoStartPermitted - - - - - EventNumberOfStartsGt - - - - - EventJustOneStartPossible - - - - - EventMotorOperatingHoursGt - - - - - EventStopTimeGt - - - - - EventLimitMonitor1 - - - - - EventLimitMonitor2 - - - - - EventLimitMonitor3 - - - - - EventLimitMonitor4 - - - - - EventExternalFault1 - - - - - EventExternalFault2 - - - - - EventExternalFault3 - - - - - EventExternalFault4 - - - - - EventExternalFault5 - - - - - EventExternalFault6 - - - - - EventAM2OpenCircuit - - - - - EventAM1OpenCircuit - - - - - EventSafetyrelatedTripping - - - - - EventMonitoringPeriodForMandatoryTestingTestRequirement - - - - - EventTimestampfctActiveAndOk - - - - - EventDMFLOCALOk - - - - - EventPROFIsafeActive - - - - - EventConfiguredOperatorPanelMissing - - - - - WarningFeedbackCircuit - - - - - WarningSimultaneity - - - - - FaultHardwareFaultBasicUnit - - - - - FaultModuleFault - - - - - FaultTemporaryComponents - - - - - FaultConfigurationError - - - - - FaultParameterization - - - - - FaultBus - - - - - FaultPLCPCS - - - - - FaultExecutionOnCommand - - - - - FaultExecutionSTOPCommand - - - - - FaultFeedbackOn - - - - - FaultFeedbackOff - - - - - FaultStalledPositioner - - - - - FaultDouble0 - - - - - FaultDouble1 - - - - - FaultEndPosition - - - - - FaultAntivalence - - - - - FaultTestPositionFeedback - - - - - FaultPowerFailure - - - - - FaultOperationalProtectionOff - - - - - SignalConditioning5Output - - - - - SignalConditioning6Output - - - - - TruthTable1Output - - - - - TruthTable2Output - - - - - TruthTable3Output - - - - - TruthTable4Output - - - - - TruthTable5Output - - - - - TruthTable6Output - - - - - TruthTable7Output - - - - - TruthTable8Output - - - - - TruthTable9Output1 - - - - - TruthTable9Output2 - - - - - TruthTable10Output - - - - - TruthTable11Output - - - - - Counter5Output - - - - - Counter6Output - - - - - Timer5Output - - - - - Timer6Output - - - - - Timer1Output - - - - - Timer2Output - - - - - Timer3Output - - - - - Timer4Output - - - - - Counter1Output - - - - - Counter2Output - - - - - Counter3Output - - - - - Counter4Output - - - - - SignalConditioning1Output - - - - - SignalConditioning2Output - - - - - SignalConditioning3Output - - - - - SignalConditioning4Output - - - - - NonvolatileElement1Output - - - - - NonvolatileElement2Output - - - - - NonvolatileElement3Output - - - - - NonvolatileElement4Output - - - - - Flashing1Output - - - - - Flashing2Output - - - - - Flashing3Output - - - - - Flicker1Output - - - - - Flicker2Output - - - - - Flicker3Output - - - - - PWMOutput - - - - - Possible values for property ControlStationModeSelectorS2 - - - - - NotConnected - - - - - FixedLevel0 - - - - - FixedLevel1 - - - - - EventAM2WarningLevel0420mAGt - - - - - EventAM2WarningLevel0420mALt - - - - - EventAM2TripLevel0420mAGt - - - - - EventAM2TripLevel0420mALt - - - - - BUTestResetButton - - - - - BUInput1 - - - - - BUInput2 - - - - - BUInput3 - - - - - BUInput4 - - - - - DM1Input1 - - - - - DM1Input2 - - - - - DM1Input3 - - - - - DM1Input4 - - - - - DM2Input1 - - - - - DM2Input2 - - - - - DM2Input3 - - - - - DM2Input4 - - - - - DM1SensorChannel1 - - - - - DM1SensorChannel2 - - - - - EventTM2SensorFault - - - - - EventTM2OutOfRange - - - - - EventTM2WarningLevelTGt - - - - - EventTM2TripLevelTGt - - - - - OPTestResetButton - - - - - OPButton1 - - - - - OPButton2 - - - - - OPButton3 - - - - - OPButton4 - - - - - EventLimitMonitor5 - - - - - EventLimitMonitor6 - - - - - AcyclicReceiveBit00 - - - - - AcyclicReceiveBit01 - - - - - AcyclicReceiveBit02 - - - - - AcyclicReceiveBit03 - - - - - AcyclicReceiveBit04 - - - - - AcyclicReceiveBit05 - - - - - AcyclicReceiveBit06 - - - - - AcyclicReceiveBit07 - - - - - AcyclicReceiveBit10 - - - - - AcyclicReceiveBit11 - - - - - AcyclicReceiveBit12 - - - - - AcyclicReceiveBit13 - - - - - AcyclicReceiveBit14 - - - - - AcyclicReceiveBit15 - - - - - AcyclicReceiveBit16 - - - - - AcyclicReceiveBit17 - - - - - CyclicReceiveBit00 - - - - - CyclicReceiveBit01 - - - - - CyclicReceiveBit02 - - - - - CyclicReceiveBit03 - - - - - CyclicReceiveBit04 - - - - - CyclicReceiveBit05 - - - - - CyclicReceiveBit06 - - - - - CyclicReceiveBit07 - - - - - CyclicReceiveBit10 - - - - - CyclicReceiveBit11 - - - - - CyclicReceiveBit12 - - - - - CyclicReceiveBit13 - - - - - CyclicReceiveBit14 - - - - - CyclicReceiveBit15 - - - - - CyclicReceiveBit16 - - - - - CyclicReceiveBit17 - - - - - EnabledControlCommandOnReverseFast - - - - - EnabledControlCommandOnReverse - - - - - EnabledControlCommandOff - - - - - EnabledControlCommandOnForward - - - - - EnabledControlCommandOnForwardFast - - - - - ContactorControl1QE1 - - - - - ContactorControl2QE2 - - - - - ContactorControl3QE3 - - - - - ContactorControl4QE4 - - - - - ContactorControl5QE5 - - - - - DisplayQLEReverseFast - - - - - DisplayQLEReverse - - - - - DisplayQLAOff - - - - - DisplayQLEForward - - - - - DisplayQLEForwardFast - - - - - DisplayQLSFault - - - - - StatusGroupFault - - - - - StatusGroupWarning - - - - - StatusDeviceOk - - - - - StatusBusOk - - - - - StatusPLCPCSInRun - - - - - StatusCurrentFlowing - - - - - StatusPROFIenergyCommandStartPausePending - - - - - StatusOnReverseFast - - - - - StatusOnReverse - - - - - StatusOff - - - - - StatusOnForward - - - - - StatusOnForwardFast - - - - - StatusStartActive - - - - - StatusInterlockingTimeActive - - - - - StatusChangeoverPauseActive - - - - - StatusPositionerRunsInOPENDirection - - - - - StatusPositionerRunsInCLOSEDDirection - - - - - StatusFeedbackCLOSED - - - - - StatusFeedbackOPEN - - - - - StatusTorqueCLOSED - - - - - StatusTorqueOPEN - - - - - StatusTestPosition - - - - - StatusOperationalProtectionOff - - - - - StatusRemoteMode - - - - - StatusEmergencyStartExecuted - - - - - StatusCoolingDownPeriodActive - - - - - StatusPauseTimeActive - - - - - StatusDeviceTestActive - - - - - StatusPhaseSequence123 - - - - - StatusPhaseSequence321 - - - - - StatusEnablingCircuitClosed - - - - - EventPrewarningOverload - - - - - EventUnbalance - - - - - EventOverload - - - - - EventOverloadAndPhaseFailure - - - - - EventInternalGroundFault - - - - - EventExternalGroundFault - - - - - EventExternalGroundFaultWarning - - - - - EventThermistorTripLevel - - - - - EventThermistorShortCircuit - - - - - EventThermistorOpenCircuit - - - - - EventTM1WarningLevelTGt - - - - - EventTM1TripLevelTGt - - - - - EventTM1SensorFault - - - - - EventTM1OutOfRange - - - - - EventWarningLevelIGt - - - - - EventWarningLevelILt - - - - - EventWarningLevelPGt - - - - - EventWarningLevelPLt - - - - - EventWarningLevelCosPhiLt - - - - - EventWarningLevelULt - - - - - EventAM1WarningLevel0420mAGt - - - - - EventAM1WarningLevel0420mALt - - - - - EventTripLevelIGt - - - - - EventTripLevelILt - - - - - EventTripLevelPGt - - - - - EventTripLevelPLt - - - - - EventTripLevelCosPhiLt - - - - - EventTripLevelULt - - - - - EventAM1TripLevel0420mAGt - - - - - EventAM1TripLevel0420mALt - - - - - EventStalledRotor - - - - - EventNoStartPermitted - - - - - EventNumberOfStartsGt - - - - - EventJustOneStartPossible - - - - - EventMotorOperatingHoursGt - - - - - EventStopTimeGt - - - - - EventLimitMonitor1 - - - - - EventLimitMonitor2 - - - - - EventLimitMonitor3 - - - - - EventLimitMonitor4 - - - - - EventExternalFault1 - - - - - EventExternalFault2 - - - - - EventExternalFault3 - - - - - EventExternalFault4 - - - - - EventExternalFault5 - - - - - EventExternalFault6 - - - - - EventAM2OpenCircuit - - - - - EventAM1OpenCircuit - - - - - EventSafetyrelatedTripping - - - - - EventMonitoringPeriodForMandatoryTestingTestRequirement - - - - - EventTimestampfctActiveAndOk - - - - - EventDMFLOCALOk - - - - - EventPROFIsafeActive - - - - - EventConfiguredOperatorPanelMissing - - - - - WarningFeedbackCircuit - - - - - WarningSimultaneity - - - - - FaultHardwareFaultBasicUnit - - - - - FaultModuleFault - - - - - FaultTemporaryComponents - - - - - FaultConfigurationError - - - - - FaultParameterization - - - - - FaultBus - - - - - FaultPLCPCS - - - - - FaultExecutionOnCommand - - - - - FaultExecutionSTOPCommand - - - - - FaultFeedbackOn - - - - - FaultFeedbackOff - - - - - FaultStalledPositioner - - - - - FaultDouble0 - - - - - FaultDouble1 - - - - - FaultEndPosition - - - - - FaultAntivalence - - - - - FaultTestPositionFeedback - - - - - FaultPowerFailure - - - - - FaultOperationalProtectionOff - - - - - SignalConditioning5Output - - - - - SignalConditioning6Output - - - - - TruthTable1Output - - - - - TruthTable2Output - - - - - TruthTable3Output - - - - - TruthTable4Output - - - - - TruthTable5Output - - - - - TruthTable6Output - - - - - TruthTable7Output - - - - - TruthTable8Output - - - - - TruthTable9Output1 - - - - - TruthTable9Output2 - - - - - TruthTable10Output - - - - - TruthTable11Output - - - - - Counter5Output - - - - - Counter6Output - - - - - Timer5Output - - - - - Timer6Output - - - - - Timer1Output - - - - - Timer2Output - - - - - Timer3Output - - - - - Timer4Output - - - - - Counter1Output - - - - - Counter2Output - - - - - Counter3Output - - - - - Counter4Output - - - - - SignalConditioning1Output - - - - - SignalConditioning2Output - - - - - SignalConditioning3Output - - - - - SignalConditioning4Output - - - - - NonvolatileElement1Output - - - - - NonvolatileElement2Output - - - - - NonvolatileElement3Output - - - - - NonvolatileElement4Output - - - - - Flashing1Output - - - - - Flashing2Output - - - - - Flashing3Output - - - - - Flicker1Output - - - - - Flicker2Output - - - - - Flicker3Output - - - - - PWMOutput - - - - - Possible values for property CosPhiLowerTripLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Trip - - - - - Possible values for property CosPhiLowerWarningLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property CountDirection - - - - - Normal - - - - - Inverted - - - - - Backward - - - - - Forward - - - - - Possible values for property CountDirectionDQ0 - - - - - None - - - - - Up - - - - - Down - - - - - InBothDirections - - - - - Possible values for property CountDirectionDQ1 - - - - - None - - - - - Up - - - - - Down - - - - - InBothDirections - - - - - Possible values for property CountDirectionForSynchronization - - - - - None - - - - - Up - - - - - Down - - - - - InBothDirections - - - - - Possible values for property CounterConfiguration - - - - - None - - - - - Value2Counters - - - - - Value4Counters - - - - - Possible values for property CounterMode - - - - - PeriodicCountFunction - - - - - NormalCountFunction - - - - - CascadingFunction - - - - - OnceCountFunction - - - - - ContinuouslyCountFunction - - - - - Possible values for property CurrentDelayTime - - - - - Value1 - - - - - Value2 - - - - - Value4 - - - - - Value6 - - - - - Value8 - - - - - Value10 - - - - - Value12 - - - - - Value14 - - - - - Value16 - - - - - Value20 - - - - - Value40 - - - - - Value60 - - - - - Value100 - - - - - Value200 - - - - - Value500 - - - - - Value1000 - - - - - Possible values for property CurrentLimitsLowerTripLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Trip - - - - - Possible values for property CurrentLimitsLowerWarningLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property CurrentLimitsUpperTripLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Trip - - - - - Possible values for property CurrentLimitsUpperWarningLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property CurrentMeasurement - - - - - Deactivated - - - - - NeutralCurrentMeasurement - - - - - NeutralCurrentCalculation - - - - - Possible values for property CurrentTransformerForL1L2L3AndNeutralConductor - - - - - CurrentToVoltageConverter - - - - - RogowskiCoil - - - - - Possible values for property CurrentTransformerSecondaryCurrent - - - - - Value1A - - - - - Value5A - - - - - Possible values for property CyclicSendDataFloatValuesByte10to13 - - - - - NotConnected - - - - - MaxCurrentI - - - - - AverageCurrentI - - - - - CurrentIL1 - - - - - CurrentIL2 - - - - - CurrentIL3 - - - - - ActivePowerP - - - - - ApparentPowerS - - - - - LineToLineVoltageUl1L2 - - - - - LineToLineVoltageUl2L3 - - - - - LineToLineVoltageUl3L1 - - - - - CosPhi - - - - - FrequencyHz - - - - - PhaseVoltageUl1N - - - - - PhaseVoltageUl2N - - - - - PhaseVoltageUl3N - - - - - ActivePowerPaSigned - - - - - ActivePowerPbSignedInverted - - - - - Possible values for property CyclicSendDataFloatValuesByte14to17 - - - - - NotConnected - - - - - MaxCurrentI - - - - - AverageCurrentI - - - - - CurrentIL1 - - - - - CurrentIL2 - - - - - CurrentIL3 - - - - - ActivePowerP - - - - - ApparentPowerS - - - - - LineToLineVoltageUl1L2 - - - - - LineToLineVoltageUl2L3 - - - - - LineToLineVoltageUl3L1 - - - - - CosPhi - - - - - FrequencyHz - - - - - PhaseVoltageUl1N - - - - - PhaseVoltageUl2N - - - - - PhaseVoltageUl3N - - - - - ActivePowerPaSigned - - - - - ActivePowerPbSignedInverted - - - - - Possible values for property CyclicSendDataFloatValuesByte2to5 - - - - - NotConnected - - - - - MaxCurrentI - - - - - AverageCurrentI - - - - - CurrentIL1 - - - - - CurrentIL2 - - - - - CurrentIL3 - - - - - ActivePowerP - - - - - ApparentPowerS - - - - - LineToLineVoltageUl1L2 - - - - - LineToLineVoltageUl2L3 - - - - - LineToLineVoltageUl3L1 - - - - - CosPhi - - - - - FrequencyHz - - - - - PhaseVoltageUl1N - - - - - PhaseVoltageUl2N - - - - - PhaseVoltageUl3N - - - - - ActivePowerPaSigned - - - - - ActivePowerPbSignedInverted - - - - - Possible values for property CyclicSendDataFloatValuesByte6to9 - - - - - NotConnected - - - - - MaxCurrentI - - - - - AverageCurrentI - - - - - CurrentIL1 - - - - - CurrentIL2 - - - - - CurrentIL3 - - - - - ActivePowerP - - - - - ApparentPowerS - - - - - LineToLineVoltageUl1L2 - - - - - LineToLineVoltageUl2L3 - - - - - LineToLineVoltageUl3L1 - - - - - CosPhi - - - - - FrequencyHz - - - - - PhaseVoltageUl1N - - - - - PhaseVoltageUl2N - - - - - PhaseVoltageUl3N - - - - - ActivePowerPaSigned - - - - - ActivePowerPbSignedInverted - - - - - Possible values for property DIMode - - - - - Deactivate - - - - - StartDosingOnRisingLevel - - - - - StopDosingOnRisingLevel - - - - - ResetCounter1OnRisingLevel - - - - - ResetCounter2OnRisingLevel - - - - - ResetCounter3OnRisingLevel - - - - - ResetAllCounterOnRisingLevel - - - - - SetZeroPointOnRisingLevel - - - - - StopOrContinueDosing - - - - - ForceOutputs - - - - - FreezeProcessValues - - - - - StopOrContinueCounter1 - - - - - StopOrContinueCounter2 - - - - - StopOrContinueCounter3 - - - - - NoControlFromStartParameters - - - - - Possible values for property DMInputsDebouncingTimes - - - - - Value6 - - - - - Value16 - - - - - Value26 - - - - - Value36 - - - - - Possible values for property DPMasterMode - - - - - LessthanBetriebsartFestlegenGeaterthan - - - - - CanTransparent - - - - - CanopenManager - - - - - CanopenSlave - - - - - Possible values for property DQMode - - - - - Deactivate - - - - - StateSignal - - - - - FlowDirection - - - - - Possible values for property DataBits - - - - - None - - - - - Value7 - - - - - Value8 - - - - - Possible values for property DataFlowControl - - - - - None - - - - - XonOrXoff - - - - - RtsOrCts - - - - - AutomaticUseOfV24Signals - - - - - HardwareRtsAlwaysSwitched - - - - - HardwareRtsAlwaysOnIgnoreDtrDsr - - - - - HardwareRtsAlwaysOn - - - - - Possible values for property DataFormat - - - - - S7 - - - - - Possible values for property DelayTimeForLimitMonitoring - - - - - None - - - - - Value1S - - - - - Value2S - - - - - Value3S - - - - - Value4S - - - - - Value5S - - - - - Value6S - - - - - Value7S - - - - - Value8S - - - - - Value9S - - - - - Value10S - - - - - Possible values for property DensityUnit - - - - - Default - - - - - GramPerCubicCentimeter - - - - - GramPerMilliliter - - - - - GramPerLiter - - - - - GramPerCubicMeter - - - - - KilogramPerCubicDecimeter - - - - - KilogramPerLiter - - - - - KilogramPerCubicMeter - - - - - PoundsPerCubicFoot - - - - - PoundsPerGallons - - - - - PoundsPerImperialGallons - - - - - PoundsPerCubicInch - - - - - MilligramPerCubicDecimeter - - - - - MilligramPerLiter - - - - - MilligramPerCubicMeter - - - - - TonPerCubicYard - - - - - MetricTonPerCubicMeter - - - - - MicrogramPerLiter - - - - - MegagramPerCubicMeter - - - - - Device as an container for DeviceItems - - - - - The base for hardware modules like devices or device items - - - - - Access to the device/device item in a HW compare scenario - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines if plug can be copied - - Device for which the Plug will be moved - The position number where to create the plug - System.Boolean - - - - Determines if plug can be moved - - Device for which the Plug will be moved - The position number where to create the plug - System.Boolean - - - - Determines if plug can be created - - The type identifier to use to create the plug - The name of the plug to create - The position number where to create the plug - System.Boolean - - - - Compare the hardware object vs the given target - - The target to compare to the hardware object - Siemens.Engineering.Compare.CompareResult - - - - Determine some information about free slots. - - System.Collections.Generic.IList<Siemens.Engineering.HW.Extensions.PlugLocation> - - - - Copies a plug to a given device - - Device for which the Plug will be moved - The position number where to create the plug - Siemens.Engineering.HW.DeviceItem - - - - Moves a plug to a given device - - Device for which the Plug will be moved - The position number where to create the plug - Siemens.Engineering.HW.DeviceItem - - - - Creates and plugs a device item in a given hardware object. - - The type identifier of the device item to create. - The name of the device item to create. - The position number where to plug the created device item - Siemens.Engineering.HW.DeviceItem - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of device items - - - - - - Composition of HW identifiers - - - - - - EOM parent of this object - - - - - - Associated device items for this device - - - - - - The name of the device - - - - - - The type identifier of this device - - - - - - A source item used to create a master copy - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Show the indicated item in the HW editor - - Which view of the HW editor to show - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Indicates if this device is a Gsd device - - - - - - Associate unplugged items - - - - - - Composition of Devices - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create device from MasterCopy - - The source master copy - Siemens.Engineering.HW.Device - - - - Create a device with subcomponents - - Type identifier of the device to be created with sub items - Name of the device to be created with sub items - The name of the device to create with subcomponents - Siemens.Engineering.HW.Device - - - - - Creates a Device - - Type identifier of the device to be created - Name of device to be created - Siemens.Engineering.HW.Device - - - - Finds a given device - - Name to find - Siemens.Engineering.HW.Device - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Group containing devices - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of devices - - - - - - EOM parent of this object - - - - - - The name of the device group - - - - - - Hardware device - - - - - DeviceItem object as representation of a hardware module - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Change the type of the device item - - The identifier of the new type - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of addresses - - - - - - Composition of channels - - - - - - The classifications a device item can belong to; Flags-enum - - - - - - This is the object where other DeviceItems are placed - - - - - - Indicates if the device item is built into the device - - - - - - Indicates if this device item is plugged into a device - - - - - - Position number of this device item - - - - - - Associated device items - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The classifications a device item can belong to; Flags-enum. - - - - - No classification. - - - - - The device item is a CPU. - - - - - The device item is a head module. - - - - - The device item is a Compact module. - - - - - The device item is a IoLink module. - - - - - Composition of DeviceItems - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create device item from MasterCopy - - The source MasterCopy - Siemens.Engineering.HW.DeviceItem - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Hardware device item - - - - - Represents a device system group (e.g. ungrouped devices group) - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Group containing the devices - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of device user groups - - - - - - EOM parent of this object - - - - - - The name of the device user group - - - - - - Composition of DeviceUserGroups - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create device user group from MasterCopy - - The source MasterCopy - Siemens.Engineering.HW.DeviceUserGroup - - - - Creates a device user group - - Name of group to be created - Siemens.Engineering.HW.DeviceUserGroup - - - - Finds a given device user group - - Name to find - Siemens.Engineering.HW.DeviceUserGroup - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - DHCP Supported Modes - - - - - DHCP Client Id is set via Mac Address - - - - - DHCP Client Id is set in project - - - - - Possible values for property Diag_HighErrorLimit - - - - - Deactivated - - - - - Activated - - - - - Possible values for property Diag_HighWarningLimit - - - - - Deactivated - - - - - Activated - - - - - Possible values for property Diag_LowErrorLimit - - - - - Deactivated - - - - - Activated - - - - - Possible values for property Diag_LowWarningLimit - - - - - Deactivated - - - - - Activated - - - - - Possible values for property DiagnosticParameterMode - - - - - DefineDifferentSettingForTheSidesOfTheCoupler - - - - - ApplySettingsForBothSidesOfTheCoupler - - - - - Possible values for property DiagnosticsCPlug - - - - - Unmonitored - - - - - Monitored - - - - - Possible values for property DiagnosticsCycleCounter - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsCycleCounterPilotValves - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsGroup - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsInterrupt - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsNoSupplyVoltage - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsOverflow - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsPort1 - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsPort2 - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsPort3 - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsPort4 - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsRedundantPowerSupply - - - - - NoRedundantPowerSupply - - - - - RedundantPowerSupply - - - - - RedundantPowerSupplyRequired - - - - - Possible values for property DiagnosticsShortCircuitActive - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsShortCircuitToGround - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsShortCircuitToLplus - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsUnderflow - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsWireBreak - - - - - Deactivated - - - - - Active - - - - - Possible values for property DiagnosticsWireBreakLimit - - - - - None - - - - - Value1Dot185mA - - - - - Value3Dot6mA - - - - - Possible values for property DigitalInputDirection - - - - - Normal - - - - - Inverted - - - - - Possible values for property DisableUdpFrameBufferingActive - - - - - Deactivate - - - - - Activate - - - - - Possible values for property DisplayAsiModuleDiagnostics - - - - - DisplayAsiModuleDiagnosticsOnAsiModule - - - - - DisplayAsiModuleDiagnosticsOnAsiMaster - - - - - Possible values for property DisplayAutoLogOffTime - - - - - Disabled - - - - - Value1Minute - - - - - Value2Minutes - - - - - Value5Minutes - - - - - Value10Minutes - - - - - Value15Minutes - - - - - Value30Minutes - - - - - Value1Hour - - - - - Possible values for property DisplayDefaultLanguage - - - - - English - - - - - German - - - - - Italian - - - - - French - - - - - Spanish - - - - - ChineseSimplified - - - - - Japanese - - - - - Korean - - - - - Russian - - - - - Turkish - - - - - PortugueseBrazil - - - - - Possible values for property DisplayTimeToEnergySavingMode - - - - - Disabled - - - - - Value30Seconds - - - - - Value1Minute - - - - - Value2Minutes - - - - - Value5Minutes - - - - - Value10Minutes - - - - - Value15Minutes - - - - - Value30Minutes - - - - - Possible values for property DisplayTimeToStandbyMode - - - - - Disabled - - - - - Value30Seconds - - - - - Value1Minute - - - - - Value2Minutes - - - - - Value5Minutes - - - - - Value10Minutes - - - - - Value15Minutes - - - - - Value30Minutes - - - - - Possible values for property DisplayUpdateInterval - - - - - Disabled - - - - - Value1Second - - - - - Value2Seconds - - - - - Value3Seconds - - - - - Value4Seconds - - - - - Value5Seconds - - - - - Value10Seconds - - - - - Value15Seconds - - - - - Value30Seconds - - - - - Value1Minute - - - - - Value2Minutes - - - - - Value5Minutes - - - - - Possible values for property DpOperatingMode - - - - - NoDp - - - - - DpMaster - - - - - DpSlave - - - - - DpMasterClass2 - - - - - Possible values for property DpProtocolMode - - - - - None - - - - - DpV0 - - - - - S7Compatible - - - - - DpV1 - - - - - Possible values for property DriveEnableOutput - - - - - None - - - - - X11Clamp21 - - - - - X11Clamp22 - - - - - X11Clamp23 - - - - - X11Clamp24 - - - - - X11Clamp25 - - - - - X11Clamp26 - - - - - X11Clamp27 - - - - - X11Clamp28 - - - - - X11Clamp31 - - - - - X11Clamp32 - - - - - X11Clamp33 - - - - - X11Clamp34 - - - - - X11Clamp35 - - - - - X11Clamp36 - - - - - X11Clamp37 - - - - - X11Clamp38 - - - - - X12Clamp21 - - - - - X12Clamp22 - - - - - X12Clamp23 - - - - - X12Clamp24 - - - - - X12Clamp25 - - - - - X12Clamp26 - - - - - X12Clamp27 - - - - - X12Clamp28 - - - - - X12Clamp31 - - - - - X12Clamp32 - - - - - X12Clamp33 - - - - - X12Clamp34 - - - - - X12Clamp35 - - - - - X12Clamp36 - - - - - X12Clamp37 - - - - - X12Clamp38 - - - - - Dq0 - - - - - Diq2 - - - - - Possible values for property DriveReadyInput - - - - - None - - - - - X11Clamp1 - - - - - X11Clamp2 - - - - - X11Clamp3 - - - - - X11Clamp4 - - - - - X11Clamp5 - - - - - X11Clamp6 - - - - - X11Clamp7 - - - - - X11Clamp8 - - - - - X11Clamp9 - - - - - X11Clamp10 - - - - - X11Clamp11 - - - - - X11Clamp12 - - - - - X11Clamp13 - - - - - X11Clamp14 - - - - - X11Clamp15 - - - - - X11Clamp16 - - - - - X11Clamp17 - - - - - X11Clamp18 - - - - - X12Clamp1 - - - - - X12Clamp2 - - - - - X12Clamp3 - - - - - X12Clamp4 - - - - - X12Clamp5 - - - - - X12Clamp6 - - - - - X12Clamp7 - - - - - X12Clamp8 - - - - - X12Clamp9 - - - - - X12Clamp10 - - - - - X12Clamp11 - - - - - X12Clamp12 - - - - - X12Clamp13 - - - - - X12Clamp14 - - - - - X12Clamp15 - - - - - X12Clamp16 - - - - - X12Clamp17 - - - - - X12Clamp18 - - - - - Di0 - - - - - Di1 - - - - - Diq2 - - - - - Possible values for property DryRunningProtectionBehavior - - - - - Deactivated - - - - - Trip - - - - - Possible values for property EMGroundFaultResponse - - - - - Signal - - - - - Trip - - - - - Warn - - - - - Possible values for property EMGroundFaultSensorFaultResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property EMTripLevelActiveStatus - - - - - AlwaysOn - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property EMTripLevelResponse - - - - - Signal - - - - - Trip - - - - - Possible values for property EMWarningActiveStatus - - - - - AlwaysOn - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property EMWarningLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property EdgeSelection - - - - - AtRisingEdge - - - - - AtFallingEdge - - - - - AtRisingAndFallingEdge - - - - - Possible values for property EdgeSelectionDI0 - - - - - None - - - - - AtRisingEdge - - - - - AtFallingEdge - - - - - AtRisingAndFallingEdge - - - - - Possible values for property EdgeSelectionDI1 - - - - - None - - - - - AtRisingEdge - - - - - AtFallingEdge - - - - - AtRisingAndFallingEdge - - - - - Possible values for property EdgeSelectionDI2 - - - - - None - - - - - AtRisingEdge - - - - - AtFallingEdge - - - - - AtRisingAndFallingEdge - - - - - Possible values for property EdgeSelectionReferenceSwitch - - - - - AtRisingEdge - - - - - AtFallingEdge - - - - - Possible values for property EffectiveDirection - - - - - None - - - - - Positive - - - - - Negative - - - - - Both - - - - - Possible values for property EncoderEvaluation - - - - - None - - - - - FDisabledDisabled - - - - - F1oo21oo1 - - - - - F1oo21oo2 - - - - - F1oo1Disabled - - - - - F1oo11oo1 - - - - - F1oo2Disabled - - - - - F1oo2 - - - - - F1oo1 - - - - - Possible values for property EncoderType - - - - - Deactivated - - - - - Namur - - - - - NotUsed - - - - - Value10KiloOhms - - - - - Value47KiloOhms - - - - - Linear - - - - - Rotary - - - - - Possible values for property EndValueEnergyCounter - - - - - NoEndValueCountIndefinitely - - - - - CountPeriodicallyTo10Dot3 - - - - - CountPeriodicallyTo10Dot6 - - - - - CountPeriodicallyTo10Dot9 - - - - - CountPeriodicallyTo10Dot12 - - - - - CountPeriodicallyTo10Dot15 - - - - - Possible values for property ExternalFault1ActiveStatus - - - - - Always - - - - - OnlyWhenMotorOn - - - - - Possible values for property ExternalFault1Response - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property ExternalFault1Type - - - - - NoContact - - - - - NcContact - - - - - Possible values for property ExternalFault2ActiveStatus - - - - - Always - - - - - OnlyWhenMotorOn - - - - - Possible values for property ExternalFault2Response - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property ExternalFault2Type - - - - - NoContact - - - - - NcContact - - - - - Possible values for property ExternalFault3ActiveStatus - - - - - Always - - - - - OnlyWhenMotorOn - - - - - Possible values for property ExternalFault3Response - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property ExternalFault3Type - - - - - NoContact - - - - - NcContact - - - - - Possible values for property ExternalFault4ActiveStatus - - - - - Always - - - - - OnlyWhenMotorOn - - - - - Possible values for property ExternalFault4Response - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property ExternalFault4Type - - - - - NoContact - - - - - NcContact - - - - - Possible values for property ExternalFault5ActiveStatus - - - - - Always - - - - - OnlyWhenMotorOn - - - - - Possible values for property ExternalFault5Response - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property ExternalFault5Type - - - - - NoContact - - - - - NcContact - - - - - Possible values for property ExternalFault6ActiveStatus - - - - - Always - - - - - OnlyWhenMotorOn - - - - - Possible values for property ExternalFault6Response - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property ExternalFault6Type - - - - - NoContact - - - - - NcContact - - - - - Possible values for property FailsafeFOperatingMode - - - - - None - - - - - FailsafeModuleParametersMode0x101 - - - - - FailsafeModuleParametersMode0x4A4A - - - - - FailsafeModuleParametersMode0x5454 - - - - - FailsafeModuleParametersMode0x8484 - - - - - FailsafeModuleParametersMode0x9898 - - - - - FailsafeModuleParametersMode0xD3D3 - - - - - Possible values for property Failsafe_Activated - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_ActivatedLightTest - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_BehaviorAfterChannelFault - - - - - PassivateTheEntireModule - - - - - PassivateChannel - - - - - Possible values for property Failsafe_ChannelFailureAcknowledge - - - - - Manual - - - - - Automatic - - - - - Possible values for property Failsafe_ChatterMonitoring - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_ControlOfOutput - - - - - FCPU - - - - - FCPUAndOnboardFDI - - - - - Possible values for property Failsafe_DiagnosisWireBreak - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_DisableDarkTestFor48Hours - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_DisableDarkTestMaxSIL2_CAT3_PLd - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_DiscrepancyBehavior - - - - - SupplyLastValidValue - - - - - SupplyValue0 - - - - - Possible values for property Failsafe_DiscrepancyMonitoring - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_DiscrepancyTimeUnlimited - - - - - DiscrepancyTimeFinite - - - - - DiscrepancyTimeInfinite - - - - - Possible values for property Failsafe_FCRCSeed - - - - - CRCSeed16 - - - - - CRCSeed32 - - - - - Possible values for property Failsafe_FCapabilityActivated - - - - - PseudoDeactivated - - - - - PseudoActive - - - - - Possible values for property Failsafe_FCheckSeqNr - - - - - NoCheck - - - - - Check - - - - - Possible values for property Failsafe_FCheckiPar - - - - - NoCheck - - - - - Check - - - - - Possible values for property Failsafe_FParVersion - - - - - V1mode - - - - - V2mode - - - - - Possible values for property Failsafe_FPassivation - - - - - DeviceModule - - - - - Channel - - - - - Possible values for property Failsafe_FSIL - - - - - SIL1 - - - - - SIL2 - - - - - SIL3 - - - - - NoSIL - - - - - Possible values for property Failsafe_F_CRC_Length - - - - - ThreeByteCRC - - - - - TwoByteCRC - - - - - FourByteCRC - - - - - Possible values for property Failsafe_InputDelay - - - - - Value0ms - - - - - Value0dot4ms - - - - - Value0dot8ms - - - - - Value1dot6ms - - - - - Value3dot2ms - - - - - Value0dot5ms - - - - - Value6dot4ms - - - - - Value3ms - - - - - Value10ms - - - - - Value12dot8ms - - - - - Value15ms - - - - - Value20ms - - - - - Value50ms - - - - - Value60ms - - - - - Value70ms - - - - - Value80ms - - - - - Value90ms - - - - - Value100ms - - - - - Value110ms - - - - - Value120ms - - - - - Value130ms - - - - - Value140ms - - - - - Value150ms - - - - - Possible values for property Failsafe_InterferenceFrequencySuppression - - - - - Value50Hz - - - - - Value60Hz - - - - - Possible values for property Failsafe_ManualAssignmentFIODBNumber - - - - - Automatic - - - - - Manual - - - - - Possible values for property Failsafe_MaxReadbackTimeLightTestAndDarkTest - - - - - Value08Or10ms - - - - - Value30Or50ms - - - - - Possible values for property Failsafe_MaximumTestPeriod - - - - - Value100sec - - - - - Value1000sec - - - - - Possible values for property Failsafe_MeasuringRange - - - - - Value0To20 - - - - - Value4To20 - - - - - Value0ToDot10 - - - - - Possible values for property Failsafe_OutputTest - - - - - Deactivate - - - - - Activate - - - - - Possible values for property Failsafe_OutputType - - - - - PMSwitching - - - - - PPSwitching - - - - - Possible values for property Failsafe_PulseExtension - - - - - ValueDontExtend - - - - - Value0Dot5 - - - - - Value1 - - - - - Value2 - - - - - Possible values for property Failsafe_ReadbackTime - - - - - Value1 - - - - - Value5 - - - - - Value10 - - - - - Value50 - - - - - Value100 - - - - - Value200 - - - - - Value400 - - - - - Possible values for property Failsafe_ReintegrationAfterChannelFault - - - - - Adjustable - - - - - AllChannelsAutomatically - - - - - AllChannelsManually - - - - - Possible values for property Failsafe_ReintegrationAfterDiscrepancyError - - - - - Test0SignalNotNecessary - - - - - Test0SignalNecessary - - - - - Possible values for property Failsafe_SensorEvaluation - - - - - Value1oo1Evaluation - - - - - Value1oo2EvaluationEquivalent - - - - - Value1oo2EvaluationNonEquivalent - - - - - Value1oo2Evaluation2Channel3WireNonEquivalent - - - - - Value1oo2Evaluation2Channel4WireNonEquivalent - - - - - Possible values for property Failsafe_SensorInterconnection - - - - - Deactivated - - - - - Value1Channel - - - - - Value2ChannelEquivalent - - - - - Value2ChannelNonEquivalent - - - - - Possible values for property Failsafe_SensorSupply - - - - - SensorSupply0 - - - - - SensorSupply1 - - - - - SensorSupply2 - - - - - SensorSupply3 - - - - - SensorSupply4 - - - - - SensorSupply5 - - - - - SensorSupply6 - - - - - SensorSupply7 - - - - - ExternalSensorSupply - - - - - External - - - - - Internal - - - - - Possible values for property Failsafe_SequenceMonitoring - - - - - Deactivated - - - - - SequenceMonitoringAscending - - - - - SequenceMonitoringDescending - - - - - Possible values for property Failsafe_ShortCircuitDiagnosticActive - - - - - Disable - - - - - Enable - - - - - Possible values for property Failsafe_ShortCircuitTestDuration - - - - - Value0 - - - - - Value1Dot6 - - - - - Value3Dot2 - - - - - Value6Dot4 - - - - - Value12Dot8 - - - - - Possible values for property Failsafe_ShortCircuitTestInterval - - - - - Value0 - - - - - Value12Dot8 - - - - - Value25Dot6 - - - - - Value51Dot2 - - - - - Value102Dot4 - - - - - Value204Dot8 - - - - - Value409Dot6 - - - - - Value819Dot2 - - - - - Possible values for property Failsafe_ShortCircuitTest_0 - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_ShortCircuitTest_1 - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_ShortCircuitTest_2 - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_ShortCircuitTest_3 - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_ShortCircuitTest_4 - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_ShortCircuitTest_5 - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_ShortCircuitTest_6 - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_ShortCircuitTest_7 - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_Smoothing - - - - - Value1x - - - - - Value2x - - - - - Value4x - - - - - Value8x - - - - - Value16x - - - - - Value32x - - - - - Value64x - - - - - Possible values for property Failsafe_StartupTest - - - - - Deactivated - - - - - Active - - - - - Possible values for property Failsafe_SuppliedChannels_0 - - - - - Channels0ToDot3 - - - - - Channels0ToDot7 - - - - - Channels0ToDot15 - - - - - NoChannels - - - - - Possible values for property Failsafe_SuppliedChannels_1 - - - - - Channels4ToDot7 - - - - - NoChannels - - - - - Possible values for property Failsafe_SuppliedChannels_2 - - - - - Channels8ToDot11 - - - - - Channels8ToDot15 - - - - - NoChannels - - - - - Possible values for property Failsafe_SuppliedChannels_3 - - - - - Channels12ToDot15 - - - - - NoChannels - - - - - Possible values for property Failsafe_UnitValue - - - - - Min - - - - - Max - - - - - Possible values for property FeedbackValue - - - - - RemainingDistance - - - - - AbsolutePosition - - - - - Speed - - - - - Possible values for property FilterFrequency - - - - - Value100Hz - - - - - Value200Hz - - - - - Value500Hz - - - - - Value1kHz - - - - - Value2kHz - - - - - Value5kHz - - - - - Value10kHz - - - - - Value20kHz - - - - - Value50kHz - - - - - Value100kHz - - - - - Value200kHz - - - - - Value500kHz - - - - - Value1MHz - - - - - Possible values for property FloatingMeanValueFilterActive - - - - - Active - - - - - Deactivated - - - - - Possible values for property FlowVelocityUnit - - - - - Default - - - - - MetersPerSecond - - - - - MilliMetersPerSecond - - - - - MetersPerHoure - - - - - KiloMetersPerHoure - - - - - Knots - - - - - InchesPerSecond - - - - - FeetPerSecond - - - - - YardsPerSecond - - - - - InchesPerMinute - - - - - FeetPerMinute - - - - - YardsPerMinute - - - - - InchesPerHour - - - - - FeetPerHour - - - - - YardsPerHour - - - - - MilesPerHour - - - - - Represents a ForceTableAccessRule object - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents webserver access - - - - - - Represents Plc Force table - - - - - - Composition of ForceTableAccessRule - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates a ForceTableAccessRule object - - Represents Plc Force table - Represents webserver access - Siemens.Engineering.HW.ForceTableAccessRule - - - - Finds a given ForceTableAccessRule by ForceTable - - Represents Plc Force table - Siemens.Engineering.HW.ForceTableAccessRule - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Possible values for property ForcedValues - - - - - Deactivate - - - - - Activate - - - - - Possible values for property FrameLength - - - - - Value0 - - - - - Value13BitRightJustified - - - - - Value25BitRightJustified - - - - - Value10Bit - - - - - Value11Bit - - - - - Value12Bit - - - - - Value13Bit - - - - - Value14Bit - - - - - Value15Bit - - - - - Value16Bit - - - - - Value17Bit - - - - - Value18Bit - - - - - Value19Bit - - - - - Value20Bit - - - - - Value21Bit - - - - - Value22Bit - - - - - Value23Bit - - - - - Value24Bit - - - - - Value25Bit - - - - - Value26Bit - - - - - Value27Bit - - - - - Value28Bit - - - - - Value29Bit - - - - - Value30Bit - - - - - Value31Bit - - - - - Value32Bit - - - - - Value33Bit - - - - - Value34Bit - - - - - Value35Bit - - - - - Value36Bit - - - - - Value37Bit - - - - - Value38Bit - - - - - Value39Bit - - - - - Value40Bit - - - - - Possible values for property FrameType - - - - - StandardMessageFrame3 - - - - - StandardFrame81 - - - - - SegmentDp2 - - - - - SegmentDp2Dp3 - - - - - SegmentDp2Dp3Dp1 - - - - - SegmentDp2Dp3Dp1Pg - - - - - SegmentDp2Dp3Dp1PgTsync - - - - - Possible values for property FrequencyForCapture - - - - - Once - - - - - Periodic - - - - - Possible values for property FunctionDI - - - - - GateStartOrStopLevelTriggered - - - - - GateStartEdgeTriggered - - - - - GateStopEdgeTriggered - - - - - Synchronization - - - - - LatchOnPositiveEdge - - - - - Capture - - - - - DigitalInputWithoutFunction - - - - - InvertDirection - - - - - Input - - - - - HwEnable - - - - - HardwareGate - - - - - RetriggerOnRisingEdge - - - - - ExternalPulseEnable - - - - - ExternalStop - - - - - LimitSwitch - - - - - Possible values for property FunctionDI0 - - - - - GateStartOrStopLevelTriggered - - - - - GateStartEdgeTriggered - - - - - GateStopEdgeTriggered - - - - - Synchronization - - - - - EnableSynchronizationAtSignalN - - - - - Capture - - - - - DigitalInputWithoutFunction - - - - - Possible values for property FunctionDI1 - - - - - GateStartOrStopLevelTriggered - - - - - GateStartEdgeTriggered - - - - - GateStopEdgeTriggered - - - - - Synchronization - - - - - EnableSynchronizationAtSignalN - - - - - Capture - - - - - DigitalInputWithoutFunction - - - - - Possible values for property FunctionDI2 - - - - - GateStartOrStopLevelTriggered - - - - - GateStartEdgeTriggered - - - - - GateStopEdgeTriggered - - - - - Synchronization - - - - - EnableSynchronizationAtSignalN - - - - - Capture - - - - - DigitalInputWithoutFunction - - - - - Possible values for property FunctionInputS1 - - - - - None - - - - - LimitSwitch - - - - - LimitSwitchPlus - - - - - ReferenceSwitch - - - - - Possible values for property FunctionInputS2 - - - - - None - - - - - LimitSwitch - - - - - LimitSwitchPlus - - - - - ReferenceSwitch - - - - - Possible values for property FunctionInputS3 - - - - - None - - - - - LimitSwitch - - - - - LimitSwitchPlus - - - - - ReferenceSwitch - - - - - Possible values for property GateControlActive - - - - - Deactivated - - - - - Active - - - - - Possible values for property GenerateDeviceNamesAutomatically - - - - - Manual - - - - - Automatic - - - - - Possible values for property HardwareInterrupt - - - - - Deactivated - - - - - Active - - - - - Possible values for property HardwareInterruptActive - - - - - PseudoDeactivated - - - - - PseudoActive - - - - - Possible values for property HardwareInterruptFallingEdgeActive - - - - - Deactivated - - - - - Active - - - - - Possible values for property HardwareInterruptRisingEdgeActive - - - - - Deactivated - - - - - Active - - - - - Hardware Resources that are assignable for interfaces - - - - - Undefined - - - - - X1 - - - - - X2 - - - - - X3 - - - - - X4 - - - - - X101 - - - - - X102 - - - - - X103 - - - - - X104 - - - - - X105 - - - - - X106 - - - - - X107 - - - - - X108 - - - - - X109 - - - - - X110 - - - - - X111 - - - - - Possible values for property HartTag - - - - - None - - - - - Value4Hart - - - - - Value8Hart - - - - - Value1Multihart - - - - - Possible values for property HighErrorLimit - - - - - Deactivated - - - - - Activated - - - - - Possible values for property HighLimitCurrent - - - - - None - - - - - Value50Dot00 - - - - - Value53Dot13 - - - - - Value56Dot25 - - - - - Value59Dot38 - - - - - Value62Dot50 - - - - - Value65Dot63 - - - - - Value68Dot75 - - - - - Value71Dot88 - - - - - Value75Dot00 - - - - - Value78Dot13 - - - - - Value81Dot25 - - - - - Value84Dot38 - - - - - Value87Dot50 - - - - - Value90Dot63 - - - - - Value93Dot75 - - - - - Value96Dot88 - - - - - Value100Dot00 - - - - - Value103Dot13 - - - - - Value106Dot25 - - - - - Value109Dot38 - - - - - Value112Dot50 - - - - - Value115Dot63 - - - - - Value118Dot75 - - - - - Value121Dot88 - - - - - Value125Dot00 - - - - - Value128Dot13 - - - - - Value131Dot25 - - - - - Value134Dot38 - - - - - Value137Dot50 - - - - - Value140Dot63 - - - - - Value143Dot75 - - - - - Value146Dot88 - - - - - Value150Dot00 - - - - - Value153Dot13 - - - - - Value156Dot25 - - - - - Value159Dot38 - - - - - Value162Dot50 - - - - - Value165Dot63 - - - - - Value168Dot75 - - - - - Value171Dot88 - - - - - Value175Dot00 - - - - - Value178Dot13 - - - - - Value181Dot25 - - - - - Value184Dot38 - - - - - Value187Dot50 - - - - - Value190Dot63 - - - - - Value193Dot75 - - - - - Value196Dot88 - - - - - Value200Dot00 - - - - - Value203Dot13 - - - - - Value206Dot25 - - - - - Value209Dot38 - - - - - Value212Dot50 - - - - - Value215Dot63 - - - - - Value218Dot75 - - - - - Value221Dot88 - - - - - Value225Dot00 - - - - - Value228Dot13 - - - - - Value231Dot25 - - - - - Value234Dot38 - - - - - Value237Dot50 - - - - - Value240Dot63 - - - - - Value243Dot75 - - - - - Value246Dot88 - - - - - Value250Dot00 - - - - - Value253Dot13 - - - - - Value256Dot25 - - - - - Value259Dot38 - - - - - Value262Dot50 - - - - - Value265Dot63 - - - - - Value268Dot75 - - - - - Value271Dot88 - - - - - Value275Dot00 - - - - - Value278Dot13 - - - - - Value281Dot25 - - - - - Value284Dot38 - - - - - Value287Dot50 - - - - - Value290Dot63 - - - - - Value293Dot75 - - - - - Value296Dot88 - - - - - Value300Dot00 - - - - - Value303Dot13 - - - - - Value306Dot25 - - - - - Value309Dot38 - - - - - Value312Dot50 - - - - - Value315Dot63 - - - - - Value318Dot75 - - - - - Value321Dot88 - - - - - Value325Dot00 - - - - - Value328Dot13 - - - - - Value331Dot25 - - - - - Value334Dot38 - - - - - Value337Dot50 - - - - - Value340Dot63 - - - - - Value343Dot75 - - - - - Value346Dot88 - - - - - Value350Dot00 - - - - - Value353Dot13 - - - - - Value356Dot25 - - - - - Value359Dot38 - - - - - Value362Dot50 - - - - - Value365Dot63 - - - - - Value368Dot75 - - - - - Value371Dot88 - - - - - Value375Dot00 - - - - - Value378Dot13 - - - - - Value381Dot25 - - - - - Value384Dot38 - - - - - Value387Dot50 - - - - - Value390Dot63 - - - - - Value393Dot75 - - - - - Value396Dot88 - - - - - Value400Dot00 - - - - - Possible values for property HighWarningLimit - - - - - Deactivated - - - - - Activated - - - - - Possible values for property HscDI0 - - - - - None - - - - - X11Clamp1 - - - - - X11Clamp2 - - - - - X11Clamp3 - - - - - X11Clamp4 - - - - - X11Clamp5 - - - - - X11Clamp6 - - - - - X11Clamp7 - - - - - X11Clamp8 - - - - - X11Clamp11 - - - - - X11Clamp12 - - - - - X11Clamp13 - - - - - X11Clamp14 - - - - - X11Clamp15 - - - - - X11Clamp16 - - - - - X11Clamp17 - - - - - X11Clamp18 - - - - - X12Clamp1 - - - - - X12Clamp2 - - - - - X12Clamp3 - - - - - X12Clamp4 - - - - - X12Clamp5 - - - - - X12Clamp6 - - - - - X12Clamp7 - - - - - X12Clamp8 - - - - - X12Clamp11 - - - - - X12Clamp12 - - - - - X12Clamp13 - - - - - X12Clamp14 - - - - - X12Clamp15 - - - - - X12Clamp16 - - - - - X12Clamp17 - - - - - X12Clamp18 - - - - - Possible values for property HscDI1 - - - - - None - - - - - X11Clamp1 - - - - - X11Clamp2 - - - - - X11Clamp3 - - - - - X11Clamp4 - - - - - X11Clamp5 - - - - - X11Clamp6 - - - - - X11Clamp7 - - - - - X11Clamp8 - - - - - X11Clamp11 - - - - - X11Clamp12 - - - - - X11Clamp13 - - - - - X11Clamp14 - - - - - X11Clamp15 - - - - - X11Clamp16 - - - - - X11Clamp17 - - - - - X11Clamp18 - - - - - X12Clamp1 - - - - - X12Clamp2 - - - - - X12Clamp3 - - - - - X12Clamp4 - - - - - X12Clamp5 - - - - - X12Clamp6 - - - - - X12Clamp7 - - - - - X12Clamp8 - - - - - X12Clamp11 - - - - - X12Clamp12 - - - - - X12Clamp13 - - - - - X12Clamp14 - - - - - X12Clamp15 - - - - - X12Clamp16 - - - - - X12Clamp17 - - - - - X12Clamp18 - - - - - Possible values for property HscDQ1 - - - - - None - - - - - X11Clamp22 - - - - - X11Clamp24 - - - - - X11Clamp25 - - - - - X11Clamp26 - - - - - X11Clamp27 - - - - - X11Clamp28 - - - - - X11Clamp32 - - - - - X11Clamp34 - - - - - X11Clamp35 - - - - - X11Clamp36 - - - - - X11Clamp37 - - - - - X11Clamp38 - - - - - Possible values for property HwEnable - - - - - EdgeTriggered - - - - - LevelTriggered - - - - - Represents a HW identifier - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Associated Hw identifier controllers - - - - - - Identifier for this HW identifier - - - - - - Associated Hw identifiers - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Composition of HwIdentifiers - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Possible values for property IEPBLinkOperatingMode - - - - - IEPBLinkOperatingModePnioProxy - - - - - IEPBLinkOperatingModeGateway - - - - - IEPBLinkOperatingModeS71500RHPnioProxy - - - - - Possible values for property IIRLowPassFilterActive - - - - - Activate - - - - - Deactivated - - - - - Repesents objects which can participate in sync domain - - - - - Association of SyncDomainParticipant objects - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Adds an . - - The item to be added. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Possible values for property IdentificationMode - - - - - DefineDifferentSettingForTheSidesOfTheCoupler - - - - - ApplySettingsForBothSidesOfTheCoupler - - - - - Possible values for property Input1Action - - - - - NoAction - - - - - TripWithoutRestart - - - - - TripWithRestart - - - - - TripEndPositionCw - - - - - TripEndPositionCcw - - - - - GroupWarning - - - - - ManualModeLocal - - - - - EmergencyStart - - - - - MotorCw - - - - - MotorCcw - - - - - QuickStop - - - - - TripReset - - - - - ColdRun - - - - - Possible values for property Input1Level - - - - - NormallyClosed - - - - - NormallyOpen - - - - - Possible values for property Input1Signal - - - - - NonRetentive - - - - - Retentive - - - - - Possible values for property Input2Action - - - - - NoAction - - - - - TripWithoutRestart - - - - - TripWithRestart - - - - - TripEndPositionCw - - - - - TripEndPositionCcw - - - - - GroupWarning - - - - - ManualModeLocal - - - - - EmergencyStart - - - - - MotorCw - - - - - MotorCcw - - - - - QuickStop - - - - - TripReset - - - - - ColdRun - - - - - Possible values for property Input2Level - - - - - NormallyClosed - - - - - NormallyOpen - - - - - Possible values for property Input2Signal - - - - - NonRetentive - - - - - Retentive - - - - - Possible values for property Input3Action - - - - - NoAction - - - - - TripWithoutRestart - - - - - TripWithRestart - - - - - TripEndPositionCw - - - - - TripEndPositionCcw - - - - - GroupWarning - - - - - ManualModeLocal - - - - - EmergencyStart - - - - - MotorCw - - - - - MotorCcw - - - - - QuickStop - - - - - TripReset - - - - - ColdRun - - - - - Possible values for property Input3Level - - - - - NormallyClosed - - - - - NormallyOpen - - - - - Possible values for property Input3Signal - - - - - NonRetentive - - - - - Retentive - - - - - Possible values for property Input4Action - - - - - NoAction - - - - - TripWithoutRestart - - - - - TripWithRestart - - - - - TripEndPositionCw - - - - - TripEndPositionCcw - - - - - GroupWarning - - - - - ManualModeLocal - - - - - EmergencyStart - - - - - MotorCw - - - - - MotorCcw - - - - - CreepFeed - - - - - QuickStop - - - - - TripReset - - - - - ColdRun - - - - - Possible values for property Input4Level - - - - - NormallyClosed - - - - - NormallyOpen - - - - - Possible values for property Input4Signal - - - - - NonRetentive - - - - - Retentive - - - - - Possible values for property InputA - - - - - None - - - - - X11Clamp1 - - - - - X11Clamp4 - - - - - X11Clamp7 - - - - - X11Clamp11 - - - - - X11Clamp14 - - - - - X11Clamp17 - - - - - X12Clamp1 - - - - - X12Clamp4 - - - - - X12Clamp7 - - - - - Possible values for property InputB - - - - - None - - - - - X11Clamp2 - - - - - X11Clamp5 - - - - - X11Clamp8 - - - - - X11Clamp12 - - - - - X11Clamp15 - - - - - X11Clamp18 - - - - - X12Clamp2 - - - - - X12Clamp5 - - - - - X12Clamp8 - - - - - Possible values for property InputDI0 - - - - - NormallyClosedContact - - - - - NormallyOpenContact - - - - - Possible values for property InputDI1 - - - - - NormallyClosedContact - - - - - NormallyOpenContact - - - - - Possible values for property InputDelay - - - - - Value0Dot05ms - - - - - Value0Dot1ms - - - - - Value0Dot5ms - - - - - Value0Dot4ms - - - - - Value0Dot8ms - - - - - Value1Dot6ms - - - - - Value3Dot2ms - - - - - Value6Dot4ms - - - - - Deactivated - - - - - Value12Dot8ms - - - - - Value20ms - - - - - Value15ms - - - - - Value3ms - - - - - Value0Dot2microsec - - - - - Value0Dot4microsec - - - - - None - - - - - Value0Dot2ms - - - - - Value10ms - - - - - Value30ms - - - - - Value40ms - - - - - Value50ms - - - - - Value60ms - - - - - Value70ms - - - - - Value80ms - - - - - Value0Dot1microsec - - - - - Value0Dot8microsec - - - - - Value1Dot6microsec - - - - - Value10microsec - - - - - Value12Dot8microsec - - - - - Value20microsec - - - - - Value3Dot2microsec - - - - - Value6Dot4microsec - - - - - Value50Khz - - - - - Value001Microseconds - - - - - Value125Microseconds - - - - - Possible values for property InputDelayCH0 - - - - - Value0dot1micros - - - - - Value0dot2micros - - - - - Value0dot5micros - - - - - Value1micros - - - - - Value2micros - - - - - Value5micros - - - - - Value10micros - - - - - Value20micros - - - - - Value50micros - - - - - Value100micros - - - - - Value200micros - - - - - Value500micros - - - - - Value1000micros - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayCH1 - - - - - Value0dot1micros - - - - - Value0dot2micros - - - - - Value0dot5micros - - - - - Value1micros - - - - - Value2micros - - - - - Value5micros - - - - - Value10micros - - - - - Value20micros - - - - - Value50micros - - - - - Value100micros - - - - - Value200micros - - - - - Value500micros - - - - - Value1000micros - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayCH2 - - - - - Value0dot1micros - - - - - Value0dot2micros - - - - - Value0dot5micros - - - - - Value1micros - - - - - Value2micros - - - - - Value5micros - - - - - Value10micros - - - - - Value20micros - - - - - Value50micros - - - - - Value100micros - - - - - Value200micros - - - - - Value500micros - - - - - Value1000micros - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayCH3 - - - - - Value0dot1micros - - - - - Value0dot2micros - - - - - Value0dot5micros - - - - - Value1micros - - - - - Value2micros - - - - - Value5micros - - - - - Value10micros - - - - - Value20micros - - - - - Value50micros - - - - - Value100micros - - - - - Value200micros - - - - - Value500micros - - - - - Value1000micros - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayCH4 - - - - - Value0dot1micros - - - - - Value0dot2micros - - - - - Value0dot5micros - - - - - Value1micros - - - - - Value2micros - - - - - Value5micros - - - - - Value10micros - - - - - Value20micros - - - - - Value50micros - - - - - Value100micros - - - - - Value200micros - - - - - Value500micros - - - - - Value1000micros - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayCH5 - - - - - Value0dot1micros - - - - - Value0dot2micros - - - - - Value0dot5micros - - - - - Value1micros - - - - - Value2micros - - - - - Value5micros - - - - - Value10micros - - - - - Value20micros - - - - - Value50micros - - - - - Value100micros - - - - - Value200micros - - - - - Value500micros - - - - - Value1000micros - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayCH6 - - - - - Value0dot1micros - - - - - Value0dot2micros - - - - - Value0dot5micros - - - - - Value1micros - - - - - Value2micros - - - - - Value5micros - - - - - Value10micros - - - - - Value20micros - - - - - Value50micros - - - - - Value100micros - - - - - Value200micros - - - - - Value500micros - - - - - Value1000micros - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayCH7 - - - - - Value0dot1micros - - - - - Value0dot2micros - - - - - Value0dot5micros - - - - - Value1micros - - - - - Value2micros - - - - - Value5micros - - - - - Value10micros - - - - - Value20micros - - - - - Value50micros - - - - - Value100micros - - - - - Value200micros - - - - - Value500micros - - - - - Value1000micros - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayDI0 - - - - - Value0dot05ms - - - - - Value0dot1ms - - - - - Value0dot4ms - - - - - Value0dot8ms - - - - - Value1dot6ms - - - - - Value3dot2ms - - - - - Value12dot8ms - - - - - Value20dot0ms - - - - - Value0dot001ms - - - - - Value0dot003ms - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayDI1 - - - - - Value0dot05ms - - - - - Value0dot1ms - - - - - Value0dot4ms - - - - - Value0dot8ms - - - - - Value1dot6ms - - - - - Value3dot2ms - - - - - Value12dot8ms - - - - - Value20dot0ms - - - - - Value0dot001ms - - - - - Value0dot003ms - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayDI10 - - - - - Value0dot05ms - - - - - Value0dot1ms - - - - - Value0dot4ms - - - - - Value0dot8ms - - - - - Value1dot6ms - - - - - Value3dot2ms - - - - - Value12dot8ms - - - - - Value20dot0ms - - - - - Value0dot001ms - - - - - Value0dot003ms - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayDI11 - - - - - Value0dot05ms - - - - - Value0dot1ms - - - - - Value0dot4ms - - - - - Value0dot8ms - - - - - Value1dot6ms - - - - - Value3dot2ms - - - - - Value12dot8ms - - - - - Value20dot0ms - - - - - Value0dot001ms - - - - - Value0dot003ms - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayDI2 - - - - - Value0dot05ms - - - - - Value0dot1ms - - - - - Value0dot4ms - - - - - Value0dot8ms - - - - - Value1dot6ms - - - - - Value3dot2ms - - - - - Value12dot8ms - - - - - Value20dot0ms - - - - - Value0dot001ms - - - - - Value0dot003ms - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayDI3 - - - - - Value0dot05ms - - - - - Value0dot1ms - - - - - Value0dot4ms - - - - - Value0dot8ms - - - - - Value1dot6ms - - - - - Value3dot2ms - - - - - Value12dot8ms - - - - - Value20dot0ms - - - - - Value0dot001ms - - - - - Value0dot003ms - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayDI4 - - - - - Value0dot05ms - - - - - Value0dot1ms - - - - - Value0dot4ms - - - - - Value0dot8ms - - - - - Value1dot6ms - - - - - Value3dot2ms - - - - - Value12dot8ms - - - - - Value20dot0ms - - - - - Value0dot001ms - - - - - Value0dot003ms - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayDI5 - - - - - Value0dot05ms - - - - - Value0dot1ms - - - - - Value0dot4ms - - - - - Value0dot8ms - - - - - Value1dot6ms - - - - - Value3dot2ms - - - - - Value12dot8ms - - - - - Value20dot0ms - - - - - Value0dot001ms - - - - - Value0dot003ms - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayDI6 - - - - - Value0dot05ms - - - - - Value0dot1ms - - - - - Value0dot4ms - - - - - Value0dot8ms - - - - - Value1dot6ms - - - - - Value3dot2ms - - - - - Value12dot8ms - - - - - Value20dot0ms - - - - - Value0dot001ms - - - - - Value0dot003ms - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayDI7 - - - - - Value0dot05ms - - - - - Value0dot1ms - - - - - Value0dot4ms - - - - - Value0dot8ms - - - - - Value1dot6ms - - - - - Value3dot2ms - - - - - Value12dot8ms - - - - - Value20dot0ms - - - - - Value0dot001ms - - - - - Value0dot003ms - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayDI8 - - - - - Value0dot05ms - - - - - Value0dot1ms - - - - - Value0dot4ms - - - - - Value0dot8ms - - - - - Value1dot6ms - - - - - Value3dot2ms - - - - - Value12dot8ms - - - - - Value20dot0ms - - - - - Value0dot001ms - - - - - Value0dot003ms - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputDelayDI9 - - - - - Value0dot05ms - - - - - Value0dot1ms - - - - - Value0dot4ms - - - - - Value0dot8ms - - - - - Value1dot6ms - - - - - Value3dot2ms - - - - - Value12dot8ms - - - - - Value20dot0ms - - - - - Value0dot001ms - - - - - Value0dot003ms - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property InputN - - - - - None - - - - - X11Clamp3 - - - - - X11Clamp6 - - - - - X11Clamp11 - - - - - X11Clamp13 - - - - - X11Clamp16 - - - - - X12Clamp3 - - - - - X12Clamp6 - - - - - X12Clamp11 - - - - - Possible values for property InputOrOutputType - - - - - None - - - - - Value1 - - - - - Value2 - - - - - InputOrOutput - - - - - Value4And4 - - - - - Value8 - - - - - Value12And8 - - - - - Value16 - - - - - Value16Or0 - - - - - Value20And16 - - - - - Value24Or16 - - - - - Value32 - - - - - Value1And1 - - - - - Value40Or32 - - - - - Value48And48 - - - - - Value52And48 - - - - - Value64And64 - - - - - Value72Or64 - - - - - Value80And80 - - - - - Value84And80 - - - - - Value96And96 - - - - - Value100And96 - - - - - Value112And112 - - - - - Value116And112 - - - - - Value128Or128 - - - - - Value132And128 - - - - - Value136Or128 - - - - - Value144And128 - - - - - Value16And16 - - - - - Value2And2 - - - - - Value32And32 - - - - - Value8And8 - - - - - Value8And0 - - - - - Input - - - - - Output - - - - - Value4 - - - - - Value36And32 - - - - - Value68And64 - - - - - Value240Or240 - - - - - Possible values for property InspectionOrBackupLevel - - - - - None - - - - - SameTypeV1Dot0WithoutBackupRestore - - - - - TypeCompatibleV1Dot1WithoutBackupRestore - - - - - TypeCompatibleV1Dot1WithBackupRestore - - - - - TypeCompatibleV1Dot1WithRestore - - - - - Possible values for property InspectionOrBackupLevelPort1 - - - - - None - - - - - SameTypeV1Dot0WithoutBackupRestore - - - - - TypeCompatibleV1Dot1WithoutBackupandRestore - - - - - SameTypeV1Dot0WithoutDataBackup - - - - - TypeCompatibleV1Dot1WithBackupandRestore - - - - - TypeCompatibleV1Dot1WithBackupRestore3 - - - - - TypeCompatibleV1Dot1WithRestore - - - - - TypeCompatibleV1Dot1WithoutDataBackup - - - - - Possible values for property InspectionOrBackupLevelPort2 - - - - - None - - - - - SameTypeV1Dot0WithoutBackupRestore - - - - - TypeCompatibleV1Dot1WithoutBackupandRestore - - - - - SameTypeV1Dot0WithoutDataBackup - - - - - TypeCompatibleV1Dot1WithBackupandRestore - - - - - TypeCompatibleV1Dot1WithBackupRestore3 - - - - - TypeCompatibleV1Dot1WithRestore - - - - - TypeCompatibleV1Dot1WithoutDataBackup - - - - - Possible values for property InspectionOrBackupLevelPort3 - - - - - None - - - - - SameTypeV1Dot0WithoutBackupRestore - - - - - TypeCompatibleV1Dot1WithoutBackupandRestore - - - - - SameTypeV1Dot0WithoutDataBackup - - - - - TypeCompatibleV1Dot1WithBackupandRestore - - - - - TypeCompatibleV1Dot1WithBackupRestore3 - - - - - TypeCompatibleV1Dot1WithRestore - - - - - TypeCompatibleV1Dot1WithoutDataBackup - - - - - Possible values for property InspectionOrBackupLevelPort4 - - - - - None - - - - - SameTypeV1Dot0WithoutBackupRestore - - - - - TypeCompatibleV1Dot1WithoutBackupandRestore - - - - - SameTypeV1Dot0WithoutDataBackup - - - - - TypeCompatibleV1Dot1WithBackupandRestore - - - - - TypeCompatibleV1Dot1WithBackupRestore3 - - - - - TypeCompatibleV1Dot1WithRestore - - - - - TypeCompatibleV1Dot1WithoutDataBackup - - - - - Possible values for property InspectionOrBackupLevelPort5 - - - - - None - - - - - SameTypeV1Dot0WithoutBackupRestore - - - - - TypeCompatibleV1Dot1WithoutBackupRestore - - - - - TypeCompatibleV1Dot1WithBackupRestore - - - - - TypeCompatibleV1Dot1WithRestore - - - - - Possible values for property InspectionOrBackupLevelPort6 - - - - - None - - - - - SameTypeV1Dot0WithoutBackupRestore - - - - - TypeCompatibleV1Dot1WithoutBackupRestore - - - - - TypeCompatibleV1Dot1WithBackupRestore - - - - - TypeCompatibleV1Dot1WithRestore - - - - - Possible values for property InspectionOrBackupLevelPort7 - - - - - None - - - - - SameTypeV1Dot0WithoutBackupRestore - - - - - TypeCompatibleV1Dot1WithoutBackupRestore - - - - - TypeCompatibleV1Dot1WithBackupRestore - - - - - TypeCompatibleV1Dot1WithRestore - - - - - Possible values for property InspectionOrBackupLevelPort8 - - - - - None - - - - - SameTypeV1Dot0WithoutBackupRestore - - - - - TypeCompatibleV1Dot1WithoutBackupRestore - - - - - TypeCompatibleV1Dot1WithBackupRestore - - - - - TypeCompatibleV1Dot1WithRestore - - - - - Possible values for property InterfaceOperatingModes - - - - - None - - - - - IoController - - - - - IoDevice - - - - - Possible values for property InterfaceStandard - - - - - Rs422Symmetrical - - - - - Ttl5VAsymmetrical - - - - - Possible values for property InterfaceType - - - - - Unknown - - - - - Profibus - - - - - Mpi - - - - - Ethernet - - - - - Asi - - - - - Ptp - - - - - Link - - - - - PcInternal - - - - - ProfibusIntegrated - - - - - Wan - - - - - ProfidriveIntegrated - - - - - Possible values for property InterferenceFrequencySuppression - - - - - Value50 - - - - - Value60 - - - - - Value400 - - - - - None - - - - - Value10 - - - - - Value300 - - - - - Value3600 - - - - - Value16Dot67 - - - - - Value50Or60Or400 - - - - - FastMode - - - - - Value16Dot6 - - - - - Value50Dot20ms - - - - - Value16Dot7Dot60ms - - - - - Value16Dot6I67Dot5ms - - - - - Value1200 - - - - - Value4800 - - - - - Value50I22Dot5ms - - - - - Value60I18Dot75ms - - - - - Value600 - - - - - Value2400 - - - - - Deactivated - - - - - Value16Dot7Dot180ms - - - - - Value60Dot16Dot7ms - - - - - Possible values for property InternalGroundFaultTripResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property InternalGroundFaultWarningResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Represents an IO connector - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Connects to the IO System - - The IO system to be connected - - - - Disconnects a device from the given IO system - - - - - Returns the IO controller for this connector - - Siemens.Engineering.HW.IoController - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The connected IO system - - - - - - Associated IO connectors - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Composition of IoConnectors - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents an IO controller - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Creates an IO system - - The name of the IO system to be created - Siemens.Engineering.HW.IoSystem - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of addresses - - - - - - Composition of IO system - - - - - - EOM parent of this object - - - - - - Composition of IoControllers - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents an IO system - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of HW identifiers - - - - - - EOM parent of this object - - - - - - The connected IO devices - - - - - - The name of the IO system - - - - - - The number of this IO system - - - - - - Associated Subnet - - - - - - Associated IO systems - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - IP protocol selection - - - - - no IP protocol selection - - - - - IP protocol selection: Project - - - - - IP protocol selection: Dhcp - - - - - IP protocol selection: User program - - - - - IP protocol selection: Other path - - - - - Address tailoring type - - - - - Possible values for property IsochronousTiToCalculationMode - - - - - None - - - - - FromOB - - - - - FromSubnet - - - - - AutomaticMinimum - - - - - Manual - - - - - Possible values for property KinematicViscosityUnits - - - - - Default - - - - - SquareMetersPerSecond - - - - - Stokes - - - - - Centistokes - - - - - Possible values for property Layer2VlanRingRedundancyActive - - - - - Deactivated - - - - - Active - - - - - Possible values for property LengthOfIORange - - - - - None - - - - - Value4Byte - - - - - Value8Byte - - - - - Value12Byte - - - - - Value16Byte - - - - - Value20Byte - - - - - Value24Byte - - - - - Value28Byte - - - - - Value32Byte - - - - - Value64Byte - - - - - Value96Byte - - - - - Value128Byte - - - - - Value160Byte - - - - - Value192Byte - - - - - Value224Byte - - - - - Value256Byte - - - - - Value288Byte - - - - - Possible values for property LevelSelection - - - - - ActivOnLowLevel - - - - - ActivOnHighLevel - - - - - Possible values for property LimitMonitor1ActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpf - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property LimitMonitor1Type - - - - - Overshoot - - - - - Undershoot - - - - - Possible values for property LimitMonitor2ActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpf - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property LimitMonitor2Type - - - - - Overshoot - - - - - Undershoot - - - - - Possible values for property LimitMonitor3ActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpf - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property LimitMonitor3Type - - - - - Overshoot - - - - - Undershoot - - - - - Possible values for property LimitMonitor4ActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpf - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property LimitMonitor4Type - - - - - Overshoot - - - - - Undershoot - - - - - Possible values for property LimitMonitor5ActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpf - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property LimitMonitor5Type - - - - - Overshoot - - - - - Undershoot - - - - - Possible values for property LimitMonitor6ActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpf - - - - - IfMotorIsRunningExceptTpf - - - - - IfMotorIsRunningExceptTpfWithStartupOverride - - - - - Possible values for property LimitMonitor6Type - - - - - Overshoot - - - - - Undershoot - - - - - Possible values for property LimitMonitoringActive - - - - - Deactivated - - - - - Activate - - - - - Possible values for property LimitSwitch - - - - - NormallyClosedContact - - - - - NormallyOpenContact - - - - - Possible values for property LimitValueType - - - - - HighLimit - - - - - LowLimit - - - - - Possible values for property LineFrequency - - - - - None - - - - - Value60Hz - - - - - Value50Hz - - - - - Set the type of distribution of frames on the individual links of an aggregation - - - - - No classification. - - - - - The distribution is based on a combination of the destination and source MAC address - - - - - The distribution is based on a combination of the destination and source IP address and MAC address - - - - - LinkAggregation Lacp Status - - - - - No classification. - - - - - Enables the sending of LACP frames - - - - - Disables the sending of LACP frames - - - - - LinkAggregation Port States - - - - - No classification. - - - - - Link aggregation is disabled. - - - - - The port sends LACP frames and is only involved in the link aggregation when LACP frames are received. - - - - - The port is only involved in the link aggregation when LACP frames are received. - - - - - The port is involved in the link aggregation and does not send any LACP frames. - - - - - Specify how the link aggregation is entered in a VLAN - - - - - No classification. - - - - - Access - - - - - The link aggregation only sends tagged frames and is automatically a member of all VLANs - - - - - The link aggregation sends tagged and untagged frames. It is not automatically a member of a VLAN - - - - - Possible values for property LoadType - - - - - ThreePhaseMotor - - - - - OnePhaseMotor - - - - - Possible values for property LowErrorLimit - - - - - Deactivated - - - - - Activated - - - - - Possible values for property LowLimitCurrent - - - - - None - - - - - Value18Dot75 - - - - - Value21Dot88 - - - - - Value25Dot00 - - - - - Value28Dot13 - - - - - Value31Dot25 - - - - - Value34Dot38 - - - - - Value37Dot50 - - - - - Value40Dot63 - - - - - Value43Dot75 - - - - - Value46Dot88 - - - - - Value50Dot00 - - - - - Value53Dot13 - - - - - Value56Dot25 - - - - - Value59Dot38 - - - - - Value62Dot50 - - - - - Value65Dot63 - - - - - Value68Dot75 - - - - - Value71Dot88 - - - - - Value75Dot00 - - - - - Value78Dot13 - - - - - Value81Dot25 - - - - - Value84Dot38 - - - - - Value87Dot50 - - - - - Value90Dot63 - - - - - Value93Dot75 - - - - - Value96Dot88 - - - - - Value100Dot00 - - - - - Possible values for property LowWarningLimit - - - - - Deactivated - - - - - Activated - - - - - Possible values for property LowerCurrentWarningLimit - - - - - None - - - - - Value18Dot75 - - - - - Value21Dot88 - - - - - Value25 - - - - - Value28Dot13 - - - - - Value31Dot25 - - - - - Value34Dot38 - - - - - Value37Dot50 - - - - - Value40Dot63 - - - - - Value43Dot75 - - - - - Value46Dot88 - - - - - Value50 - - - - - Value53Dot13 - - - - - Value56Dot25 - - - - - Value59Dot38 - - - - - Value62Dot50 - - - - - Value65Dot63 - - - - - Value68Dot75 - - - - - Value71Dot88 - - - - - Value75 - - - - - Value78Dot13 - - - - - Value81Dot25 - - - - - Value84Dot38 - - - - - Value87Dot50 - - - - - Value90Dot63 - - - - - Value93Dot75 - - - - - Value96Dot88 - - - - - Value100 - - - - - Possible values for property MacRtLicensePurchased - - - - - NoLicense - - - - - LicenseMacBasic - - - - - LicenseMacAdvanced - - - - - Possible values for property MainCountingDirection - - - - - None - - - - - Forward - - - - - Backward - - - - - Possible values for property MassFlowUnit - - - - - Default - - - - - KilogramPerSecond - - - - - KilogramPerMinute - - - - - KilogramPerHour - - - - - KilogramPerDay - - - - - MetricTonPerSecond - - - - - MetricTonPerMinute - - - - - MetricTonPerHour - - - - - MetricTonPerDay - - - - - PoundPerSecond - - - - - PoundPerMinute - - - - - PoundPerHour - - - - - PoundPerDay - - - - - TonPerSecond - - - - - TonPerMinute - - - - - TonPerHour - - - - - TonPerDay - - - - - TonUkPerSecond - - - - - TonUkPerMinute - - - - - TonUkPerHour - - - - - TonUkPerDay - - - - - OuncesPerSecond - - - - - OuncesPerMinute - - - - - OuncesPerHour - - - - - OuncesPerDay - - - - - Possible values for property MassValue - - - - - Af - - - - - Bbl - - - - - BblUs - - - - - BblBeer - - - - - Bu - - - - - Cl - - - - - CubicCm - - - - - CubicDm - - - - - FlOz - - - - - CubicFt - - - - - G - - - - - Gal - - - - - GalUk - - - - - Hl - - - - - CubicIn - - - - - Karat - - - - - Kg - - - - - Kl - - - - - L - - - - - Lb - - - - - LbT - - - - - CubicM - - - - - Mg - - - - - MegaG - - - - - CubicMiles - - - - - Ml - - - - - CubicMm - - - - - Nl - - - - - CubicNm - - - - - Oz - - - - - OzT - - - - - Pint - - - - - Quart - - - - - Scf - - - - - Sl - - - - - CubicSm - - - - - T - - - - - Ton - - - - - TonUk - - - - - CubicYd - - - - - Name of the Master Secret Protection Types - - - - - Master Secret feature is disabled - - - - - Master Secret feature is enabled and password configured - - - - - Master Secret feature is enabled and password yet to be configured - - - - - Possible values for property MaximumBufferedReceivedFrames - - - - - None - - - - - StandardFrame1PzdMinus2Or2 - - - - - Possible values for property MeasuredVariable - - - - - Frequency - - - - - PeriodDuration - - - - - Velocity - - - - - CompleteSsiFrame - - - - - Deactivated - - - - - Possible values for property MeasuringInput - - - - - None - - - - - DI1 - - - - - X11Clamp2 - - - - - X11Clamp3 - - - - - X11Clamp4 - - - - - X11Clamp5 - - - - - X11Clamp6 - - - - - X11Clamp7 - - - - - X11Clamp8 - - - - - X11Clamp11 - - - - - X11Clamp12 - - - - - X11Clamp13 - - - - - X11Clamp14 - - - - - X11Clamp15 - - - - - X11Clamp16 - - - - - X11Clamp17 - - - - - X11Clamp18 - - - - - X12Clamp1 - - - - - X12Clamp2 - - - - - X12Clamp3 - - - - - X12Clamp4 - - - - - X12Clamp5 - - - - - X12Clamp6 - - - - - X12Clamp7 - - - - - X12Clamp8 - - - - - X12Clamp11 - - - - - X12Clamp12 - - - - - X12Clamp13 - - - - - X12Clamp14 - - - - - X12Clamp15 - - - - - X12Clamp16 - - - - - X12Clamp17 - - - - - X12Clamp18 - - - - - X11Clamp1 - - - - - Possible values for property MeasuringRangeResolution - - - - - Deactivated - - - - - Value2DecimalPlaces - - - - - Value3DecimalPlaces - - - - - Possible values for property MeasuringTemperatureCoefficient - - - - - Deactivated - - - - - Pt0Dot003916 - - - - - Pt0Dot003902 - - - - - Pt0Dot003920 - - - - - Pt0Dot003851 - - - - - Pt0Dot003850Its90 - - - - - Pt0Dot00385055 - - - - - Ni0Dot006180 - - - - - Ni0Dot006720 - - - - - Pt0Dot003850 - - - - - LgNi0Dot005 - - - - - Pt0Dot003910 - - - - - Cu0Dot00427 - - - - - Cu0Dot00428 - - - - - Ni0Dot005000 - - - - - Cu0Dot00426 - - - - - Ni0Dot006170 - - - - - Media Redundancy Role - - - - - Media Redundancy Role: Not in ring - - - - - Media Redundancy Role: Manager - - - - - Media Redundancy Role: Client - - - - - Media Redundancy Role: Manager auto - - - - - Possible values for property MediumAttachmentType - - - - - None - - - - - Copper - - - - - FiberOptic - - - - - Possible values for property ModbusBaudRate - - - - - Auto - - - - - Value57Dot6Kbps - - - - - Value19Dot2Kbps - - - - - Value9Dot6Kbps - - - - - Value4Dot8Kbps - - - - - Value2Dot4Kbps - - - - - Value1Dot2Kbps - - - - - Value0Dot6Kbps - - - - - Value0Dot3Kbps - - - - - Possible values for property ModbusBaudRateDetected - - - - - Auto - - - - - Value57Dot6Kbps - - - - - Value19Dot2Kbps - - - - - Value9Dot6Kbps - - - - - Value4Dot8Kbps - - - - - Value2Dot4Kbps - - - - - Value1Dot2Kbps - - - - - Value0Dot6Kbps - - - - - Value0Dot3Kbps - - - - - Default - - - - - Possible values for property ModbusPortConfiguration - - - - - PortConfig8E1 - - - - - PortConfig8O1 - - - - - PortConfig8N2 - - - - - PortConfig8N1 - - - - - Possible values for property Mode - - - - - PositioningMode - - - - - TechnologyObject - - - - - Possible values for property ModuleDistribution - - - - - None - - - - - Value4SubmodulesWith1AnalogOutput - - - - - Value8SubmodulesWith1AnalogInput - - - - - Value4SubmodulesWith1AnalogInput2SubmodulesWith1AnalogOutput - - - - - Value2SubmodulesWith8DigitalInputs - - - - - Value4SubmodulesWith8DigitalInputs - - - - - Value2SubmodulesWith8DigitalInputs2SubmodulesWith8DigitalOutputs - - - - - Value2SubmodulesWith8DigitalOutputs - - - - - Value4SubmodulesWith8DigitalOutputs - - - - - Value2SubmodulesWith1AnalogOutput - - - - - Value8SubmodulesWith1AnalogOutput - - - - - Value2SubmodulesWith2DigitalOutputs - - - - - Value2SubmodulesWith4DigitalInputs - - - - - Value4SubmodulesWith2DigitalInputs - - - - - Value2SubmodulesWith4DigitalOutputs - - - - - Value4SubmodulesWith2DigitalOutputs - - - - - Value4SubmodulesWith1AnalogInput - - - - - Value9SubmodulesWith1AnalogInput - - - - - Value8SubmodulesWith8DigitalInputs - - - - - Value4SubmodulesWith8DigitalInputs4SubmodulesWith8DigitalOutputs - - - - - Value8SubmodulesWith8DigitalOutputs - - - - - Value2SubmodulesWith4AnalogInputs - - - - - Value1SubmoduleWith4AIsAnd1SubmoduleWith2AIsAnd2AIQs - - - - - Value4SubmodulesWith4DigitalOutputs - - - - - Possible values for property ModuleUseFromUserProgram - - - - - UseWithInstructionFromTimeBasedIoLibrary - - - - - UseWithTechnologyObjectMotionControl - - - - - Possible values for property ModuleVariant - - - - - Value32BytesIOr12BytesO - - - - - Value2BytesIOr2BytesO - - - - - UserSpecific - - - - - EeIndustryMeasuredDataProfileE0 - - - - - EeIndustryMeasuredDataProfileE1 - - - - - EeIndustryMeasuredDataProfileE2 - - - - - EeIndustryMeasuredDataProfileE3 - - - - - NormalOperation - - - - - PcMode - - - - - Possible values for property ModuloAxis - - - - - Deactivated - - - - - Active - - - - - Possible values for property MonitoringWindow - - - - - Value0Dot5 - - - - - Value1 - - - - - Value2 - - - - - Value3 - - - - - Value4 - - - - - Value5 - - - - - Value6 - - - - - Value7 - - - - - Value8 - - - - - Value9 - - - - - Value10 - - - - - Value11 - - - - - Value12 - - - - - Value13 - - - - - Value14 - - - - - Value15 - - - - - Value16 - - - - - Value17 - - - - - Value18 - - - - - Value19 - - - - - Value20 - - - - - Value21 - - - - - Value22 - - - - - Value23 - - - - - Value24 - - - - - Value25 - - - - - Value26 - - - - - Value27 - - - - - Value28 - - - - - Value29 - - - - - Value30 - - - - - Value31 - - - - - Value32 - - - - - Value33 - - - - - Value34 - - - - - Value35 - - - - - Value36 - - - - - Value37 - - - - - Value38 - - - - - Value39 - - - - - Value40 - - - - - Value41 - - - - - Value42 - - - - - Value43 - - - - - Value44 - - - - - Value45 - - - - - Value46 - - - - - Value47 - - - - - Value48 - - - - - Value49 - - - - - Value50 - - - - - Value51 - - - - - Value52 - - - - - Value53 - - - - - Value54 - - - - - Value55 - - - - - Value56 - - - - - Value57 - - - - - Value58 - - - - - Value59 - - - - - Value60 - - - - - Value61 - - - - - Value62 - - - - - Value63 - - - - - Value64 - - - - - Value65 - - - - - Value66 - - - - - Value67 - - - - - Value68 - - - - - Value69 - - - - - Value70 - - - - - Value71 - - - - - Value72 - - - - - Value73 - - - - - Value74 - - - - - Value75 - - - - - Value76 - - - - - Value77 - - - - - Value78 - - - - - Value79 - - - - - Value80 - - - - - Value81 - - - - - Value82 - - - - - Value83 - - - - - Value84 - - - - - Value85 - - - - - Value86 - - - - - Value87 - - - - - Value88 - - - - - Value89 - - - - - Value90 - - - - - Value91 - - - - - Value92 - - - - - Value93 - - - - - Value94 - - - - - Value95 - - - - - Value96 - - - - - Value97 - - - - - Value98 - - - - - Value99 - - - - - Value100 - - - - - Possible values for property MonoflopTime - - - - - Value16 - - - - - Value32 - - - - - Value48 - - - - - Value64 - - - - - Automatically - - - - - Possible values for property MotorHeating - - - - - Value0 - - - - - Value5 - - - - - Value10 - - - - - Value15 - - - - - Value20 - - - - - Value25 - - - - - Value30 - - - - - Value35 - - - - - Value40 - - - - - Value45 - - - - - Value50 - - - - - Value55 - - - - - Value60 - - - - - Value65 - - - - - Value70 - - - - - Value75 - - - - - Value80 - - - - - Value85 - - - - - Value90 - - - - - Value95 - - - - - Possible values for property MotorProtectionClass - - - - - None - - - - - Value5 - - - - - Value7 - - - - - Value10 - - - - - Value15 - - - - - Value20 - - - - - Value25 - - - - - Value30 - - - - - Value35 - - - - - Value40 - - - - - Possible values for property MotorProtectionReset - - - - - Manual - - - - - Auto - - - - - Possible values for property MotorProtectionResponseToPrewarning - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property MotorProtectionResponseToTripLevel - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property MotorProtectionStalledRotorResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property MotorProtectionTypeOfLoad - - - - - TriPhase - - - - - OnePhase - - - - - Possible values for property MotorProtectionUnbalanceResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Media Redundancy Protocol Domain - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Association of Network Interfaces - - - - - - Name of the Mrp Domain - - - - - - Composition of Mrp Domains - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create Mrp Domain on Subnet - - Name of Mrp Domain - Siemens.Engineering.HW.MrpDomain - - - - Finds a given Mrp Domain - - Name to find - Siemens.Engineering.HW.MrpDomain - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Address mapping between local and remote partner - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Local address of a transfer area - - - - - - Addresses of the transfer area - - - - - - EOM parent of this object - - - - - - Comment - - - - - - Transfer area data length - - - - - - Direction of data communication between local and partner device - - - - - - Name of the transfer area - - - - - - Partner transfer areas - - - - - - Transfer area type - - - - - - Association of multicastable transfer areas - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Composition of multicastable transfer areas - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create a transfer area - - The partner network interface - The type of the transfer area - Siemens.Engineering.HW.MulticastableTransferArea - - - - Create a transfer area - - The receiver network interface - The transfer area type - Siemens.Engineering.HW.MulticastableTransferArea - - - - Create transfer area - - The partner network interface - The type of the transfer area - The name of the transfer area - Siemens.Engineering.HW.MulticastableTransferArea - - - - Create a transfer area - - The partner network interface - The type of the transfer area - The name of the transfer area - The length of the transfer area - Siemens.Engineering.HW.MulticastableTransferArea - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Network type - - - - - The type of the network is unknown - - - - - The type of the network is Profibus. - - - - - The type of the network is MPI. - - - - - The type of the network is Ethernet. - - - - - The type of the network is ASi. - - - - - The type of the network is PtP. - - - - - Network Type: Link - - - - - The type of the network is PC internal - - - - - The type of the network is integrated Profibus. - - - - - The type of the network is Wide Area Network (WAN). - - - - - The type of the network is integrated Profidrive. - - - - - Possible values for property NeutralConductorCurrentTransformerSecondaryCurrent - - - - - None - - - - - Value1A - - - - - Value5A - - - - - Possible values for property NoValveVoltageOrEvsActive - - - - - Deactivated - - - - - Activated - - - - - Node is an object which is used as an interface from DeviceItem to Subnet - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Connects to the Subnet - - The subnet to be connected - - - - Create and connect to a subnet - - The name of the Subnet to create and connect - Siemens.Engineering.HW.Subnet - - - - Disconnects a device from the given Subnet - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The connected subnet - - - - - - The name of the node - - - - - - The id of this node - - - - - - Particular type e.g. Industrial Ethernet or Wireless LAN - - - - - - Associated nodes - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Composition of Nodes - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a given node - - The name of the Node instance to find - Siemens.Engineering.HW.Node - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Possible values for property NonVolatileElement1Type - - - - - NonInverting - - - - - Inverting - - - - - EdgeRisingWithMemory - - - - - EdgeFallingWithMemory - - - - - Possible values for property NonVolatileElement2Type - - - - - NonInverting - - - - - Inverting - - - - - EdgeRisingWithMemory - - - - - EdgeFallingWithMemory - - - - - Possible values for property NonVolatileElement3Type - - - - - NonInverting - - - - - Inverting - - - - - EdgeRisingWithMemory - - - - - EdgeFallingWithMemory - - - - - Possible values for property NonVolatileElement4Type - - - - - NonInverting - - - - - Inverting - - - - - EdgeRisingWithMemory - - - - - EdgeFallingWithMemory - - - - - Possible values for property NotchFilterActive - - - - - Active - - - - - Deactivated - - - - - Possible values for property NotificationsSnmpv1TrapsActive - - - - - Deactivated - - - - - Activated - - - - - Possible values for property NumberOfSequences - - - - - None - - - - - Value1 - - - - - Value2 - - - - - Value3 - - - - - Value4 - - - - - Possible values for property OPDFaults - - - - - DoNotDisplay - - - - - Display - - - - - Possible values for property OPDKeepIlluminationOnFor - - - - - Off - - - - - Value3Seconds - - - - - Value10Seconds - - - - - Value1Minute - - - - - Value5Minutes - - - - - Possible values for property OPDLanguage - - - - - English - - - - - German - - - - - French - - - - - Polish - - - - - Spanish - - - - - Portuguese - - - - - Italian - - - - - Suomi - - - - - Chinese - - - - - Russian - - - - - Language4Placeholder - - - - - Language5Placeholder - - - - - Language6Placeholder - - - - - Language7Placeholder - - - - - Language8Placeholder - - - - - Language9Placeholder - - - - - Possible values for property OPDProfiles - - - - - IL1IL2IL3A - - - - - IL1IL2IL3Percent - - - - - IMaxA - - - - - IMaxPercent - - - - - IMaxCos - - - - - IMaxUL1NCosS - - - - - IMaxUL1L2CosS - - - - - IMaxUL1NCosP - - - - - IMaxUL1L2CosP - - - - - In1AndOutAm1 - - - - - In2AndOutAm1 - - - - - InputsAm1 - - - - - In1AndOutAm2 - - - - - In2AndOutAm2 - - - - - InputsAm2 - - - - - MaxTempTm1C - - - - - TempTm1C - - - - - MaxTempTm1F - - - - - TempTm1F - - - - - MaxTempTm2C - - - - - TempTm2C - - - - - MaxTempTm2F - - - - - TempTm2F - - - - - UL1NUL2NUL3N - - - - - UL1L2UL2L3UL3L1 - - - - - IMaxUL1NCos - - - - - IMaxUL1L2Cos - - - - - IMaxUL1NC - - - - - IMaxUL1L2C - - - - - IMaxUL1nNF - - - - - IMaxUL1L2F - - - - - CalculatorModule1 - - - - - CalculatorModule2 - - - - - EnergyUsedKwh - - - - - Possible values for property OPDReturnToOperationsDisplayAfter - - - - - Manually - - - - - Value3Seconds - - - - - Value10Seconds - - - - - Value1Minute - - - - - Value5Minutes - - - - - Possible values for property OPDWarnings - - - - - DoNotDisplay - - - - - Display - - - - - Possible values for property OpcUaMinimumSamplingInterval - - - - - None - - - - - Value100 - - - - - Value250 - - - - - Value500 - - - - - Value1000 - - - - - Value5000 - - - - - Value10000 - - - - - Possible values for property OpcUaPurchasedLicense - - - - - NoLicense - - - - - SimaticOpcUaS71500Small - - - - - SimaticOpcUaS71500Medium - - - - - SimaticOpcUaS71500Large - - - - - OpcUaPlcForSinumerikOne - - - - - Possible values for property OpcUaRequiredLicense - - - - - NoLicense - - - - - SimaticOpcUaS71500Small - - - - - SimaticOpcUaS71500Medium - - - - - SimaticOpcUaS71500Large - - - - - Possible values for property OpcUaSecurityPolicies - - - - - None - - - - - OpcUaSecurityPoliciesNone - - - - - OpcUaSecurityPolicies128RSAS - - - - - OpcUaSecurityPolicies128RSASE - - - - - OpcUaSecurityPolicies256S - - - - - OpcUaSecurityPolicies256SE - - - - - OpcUaSecurityPolicies256SHAS - - - - - OpcUaSecurityPolicies256SHASE - - - - - OpcUaSecurityPolicies256RSAOAEPS - - - - - OpcUaSecurityPolicies256RSAOAEPSE - - - - - OpcUaSecurityPolicies256RSAPSSS - - - - - OpcUaSecurityPolicies256RSAPSSSE - - - - - Possible values for property OpcUaServerCertificateSettings - - - - - OpcUaCertificatesViaDownload - - - - - OpcUaCertificatesAtRuntime - - - - - Represents a OpcUa User Management object - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Set Password for OpcUa User - - Password of User - user password violates the security setting password policy - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the OpcUa User - - - - - - Composition of OpcUa Users - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates a OpcUa User - - Name of OpcUa User to be created - Password of User - Siemens.Engineering.HW.OpcUaUser - - - - Finds a given OpcUa User - - User Name to find - Siemens.Engineering.HW.OpcUaUser - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Possible values for property OperatingHoursMonitoringResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property OperatingMode - - - - - SlowMode - - - - - FastMode - - - - - CountContinuously - - - - - CountOnce - - - - - CountPeriodically - - - - - FrequencyMeasurement - - - - - Toggle1Hz - - - - - PulseWidthModulation - - - - - TimerDQ - - - - - None - - - - - Oversampling - - - - - PositioningWithDigitalOutputs - - - - - PositioningWithAnalogOutputs - - - - - FullDuplex4WireOperation - - - - - HalfDuplex2WireOperation - - - - - FullDuplex4WireOperationMultipointSlave - - - - - FullDuplex4WireOperationMultipointMaster - - - - - Counting - - - - - DiOversampling - - - - - FullDuplex4WireOperationPtPConnection - - - - - Toggle0Dot1Hz - - - - - Toggle0Dot5Hz - - - - - Toggle2Hz - - - - - WriteReadNeg - - - - - WriteRead - - - - - PeriodMeasurement - - - - - RotationalSpeedMeasurement - - - - - DosingMode - - - - - TimerDI - - - - - Value4ChannelsHardwareFilter - - - - - Value8ChannelsHardwareFilter - - - - - Value8ChannelsSoftwareFilter - - - - - Value2Channels - - - - - Value4Channels - - - - - Value8ARo - - - - - Value8ARoS - - - - - Measuring - - - - - PositionFeedback - - - - - CascadingFunction - - - - - DigitalInput - - - - - Trace - - - - - Control - - - - - HalfAndFullDuplex - - - - - DoOversampling - - - - - StandardMode - - - - - ButtonHga - - - - - Reserved2 - - - - - FillLevel - - - - - Window - - - - - ReflectionBarrier - - - - - Reserved6 - - - - - Reserved7 - - - - - AnalogMode - - - - - ElectronicShutdown - - - - - PhaseControlPhaseAngleProportional - - - - - PhaseControlPowerProportional - - - - - WavePacketControlFullWaves - - - - - WavePacketControlHalfWaves - - - - - ScalingMode - - - - - REALMode - - - - - ModularCamControl - - - - - ConstantCurrent - - - - - D - - - - - I - - - - - Id - - - - - P - - - - - Pd - - - - - Pi - - - - - Pid - - - - - PulseTrain - - - - - PulseOutput - - - - - OnOffDelay - - - - - FrequencyOutput - - - - - PwmWithDcMotor - - - - - Rs232c - - - - - MotionControl - - - - - Axis - - - - - PulseTrainABphaseshiftedFourfold - - - - - PulseTrainABphaseshifted - - - - - PulseTrainAcountupBcountdown - - - - - PulseTrainApulseBdirection - - - - - IncrementalEncoderABPhaseShifted - - - - - DigitalOutput - - - - - TechnologyObject - - - - - ManualOperation - - - - - Deactivated - - - - - OversamplingOutput - - - - - OversamplingInput - - - - - DigitalInputWith1CountChannel - - - - - DigitalInputWith2CountChannels - - - - - DigitalInputWith3CountChannels - - - - - DigitalInputWith4CountChannels - - - - - ISOMode - - - - - AnalogInput - - - - - AnalogOutput - - - - - Possible values for property OperatingRange - - - - - Deactivated - - - - - PlusMinus25mV - - - - - PlusMinus50mV - - - - - PlusMinus80mV - - - - - PlusMinus100mV - - - - - PlusMinus250mV - - - - - PlusMinus500mV - - - - - PlusMinus1V - - - - - PlusMinus2dot5V - - - - - PlusMinus5V - - - - - Value1To5V - - - - - PlusMinus10V - - - - - PlusMinus3dot2mA - - - - - PlusMinus5mA - - - - - PlusMinus10mA - - - - - Value0To20mA - - - - - Value4To20mA - - - - - PlusMinus20mA - - - - - Value1To5mA - - - - - Ni500ClimaticRange - - - - - TypeB - - - - - TypeN - - - - - TypeE - - - - - TypeR - - - - - TypeS - - - - - TypeJ - - - - - TypeL - - - - - TypeT - - - - - TypeK - - - - - TypeU - - - - - Value48Ohm - - - - - Value150Ohm - - - - - Value300Ohm - - - - - Value600Ohm - - - - - Value6KiloOhm - - - - - Ni100GostStandardRange - - - - - Pt100ClimaticRange - - - - - Pt200ClimaticRange - - - - - Pt500ClimaticRange - - - - - Pt1000ClimaticRange - - - - - Ni100ClimaticRange - - - - - Ni1000ClimaticRange - - - - - Pt100StandardRange - - - - - Pt200StandardRange - - - - - Pt500StandardRange - - - - - Pt1000StandardRange - - - - - Ni100StandardRange - - - - - Ni1000StandardRange - - - - - Value0To10V - - - - - PTC - - - - - Value3KiloOhm - - - - - Ni120ClimaticRange - - - - - Ni120StandardRange - - - - - Ni200ClimaticRange - - - - - Ni200StandardRange - - - - - Ni500StandardRange - - - - - LgNi1000ClimaticRange - - - - - LgNi1000StandardRange - - - - - Kty83slash110Silicon - - - - - Kty84slash130Silicon - - - - - TypeC - - - - - TypeTxKslashXKL - - - - - Cu10ClimaticRange - - - - - Cu10GostClimaticRange - - - - - Cu10GostStandardRange - - - - - Cu10StandardRange - - - - - Cu100GostClimaticRange - - - - - Cu100GostStandardRange - - - - - Cu50GostClimaticRange - - - - - Cu50GostStandardRange - - - - - Ni100GostClimaticRange - - - - - Pt10GostClimaticRange - - - - - Pt10GostStandardRange - - - - - Pt100GostClimaticRange - - - - - Pt100GostStandardRange - - - - - Pt50GostClimaticRange - - - - - Pt50GostStandardRange - - - - - Pt500GostClimaticRange - - - - - Pt500GostStandardRange - - - - - Value10KiloOhm - - - - - Value0To2V - - - - - Value1000Ohm - - - - - TypeTxkOrXkL - - - - - Cu100ClimaticRange - - - - - Cu100StandardRange - - - - - Cu50ClimaticRange - - - - - Cu50StandardRange - - - - - Ni10ClimaticRange - - - - - Ni10StandardRange - - - - - Pt10ClimaticRange - - - - - Pt10StandardRange - - - - - Pt50ClimaticRange - - - - - Pt50StandardRange - - - - - TypeTxk - - - - - Value0To10mA - - - - - Value4To20mAHART - - - - - Value100V - - - - - Value110V - - - - - Value115V - - - - - Value120V - - - - - Value127V - - - - - Value190V - - - - - Value200V - - - - - Value208V - - - - - Value220V - - - - - Value230V - - - - - Value240V - - - - - Value277V - - - - - Value12V - - - - - Value24V - - - - - Value300V - - - - - Possible values for property OperatingRangeOutput - - - - - Deactivated - - - - - PlusMinus20mA - - - - - Value0To10V - - - - - Value0To20mA - - - - - Value1To5V - - - - - Value4To20mA - - - - - PlusMinus10V - - - - - Possible values for property OperatingType - - - - - Deactivated - - - - - Voltage - - - - - Current - - - - - Current4WireTransducer - - - - - Current2WireTransducer - - - - - Resistor4Wire - - - - - Resistor3Wire - - - - - Resistor2Wire - - - - - ThermalResistor4Wire - - - - - ThermalResistor3Wire - - - - - Thermocouple - - - - - ThermocoupleExtComp - - - - - ThermocoupleIntCompLinear - - - - - ThermocoupleExtCompLinear - - - - - Resistance - - - - - RtdThermalResistorLinear - - - - - ThermocoupleIntComp - - - - - Thermocouple0CCompLinear - - - - - Thermocouple50CCompLinear - - - - - Hart - - - - - ThermalResistor2Wire - - - - - CountingOrPositionInput - - - - - Measuring - - - - - Voltage4WireStrainGaugeFullBridge - - - - - Voltage6WireStrainGaugeFullBridge - - - - - Possible values for property OperatingTypeAndRange - - - - - Deactivated - - - - - VoltagePlusMinus80mV - - - - - Current0To20mA - - - - - Current2WireTransducer4To20mA - - - - - Current4WireTransducerPlusMinus20mA - - - - - VoltagePlusMinus2dot5V - - - - - VoltagePlusMinus5V - - - - - Voltage1To5V - - - - - ThermocoupleTypeK - - - - - VoltagePlusMinus10V - - - - - Current4To20mA - - - - - CurrentPlusMinus20mA - - - - - ThermocoupleTypeB - - - - - ThermocoupleTypeE - - - - - ThermocoupleTypeJ - - - - - ThermocoupleTypeL - - - - - ThermocoupleTypeN - - - - - ThermocoupleTypeR - - - - - ThermocoupleTypeS - - - - - ThermocoupleTypeT - - - - - Current4WireTransducer4To20mA - - - - - ThermocoupleTypeC - - - - - Possible values for property OperatingTypeOutput - - - - - Deactivated - - - - - Voltage - - - - - Current - - - - - Possible values for property OperationalProtectionOffResponsePositioner - - - - - Closed - - - - - Open - - - - - Possible values for property OperationalProtectionOffStandardFunctionsType - - - - - NOContact - - - - - NCContact - - - - - Possible values for property OutputA - - - - - None - - - - - X11Clamp21 - - - - - X11Clamp22 - - - - - X11Clamp23 - - - - - X11Clamp24 - - - - - X11Clamp25 - - - - - X11Clamp26 - - - - - X11Clamp27 - - - - - X11Clamp28 - - - - - X11Clamp31 - - - - - X11Clamp32 - - - - - X11Clamp33 - - - - - X11Clamp34 - - - - - X11Clamp35 - - - - - X11Clamp36 - - - - - X11Clamp37 - - - - - X11Clamp38 - - - - - Possible values for property OutputB - - - - - None - - - - - X11Clamp21 - - - - - X11Clamp22 - - - - - X11Clamp23 - - - - - X11Clamp24 - - - - - X11Clamp25 - - - - - X11Clamp26 - - - - - X11Clamp27 - - - - - X11Clamp28 - - - - - X11Clamp31 - - - - - X11Clamp32 - - - - - X11Clamp33 - - - - - X11Clamp34 - - - - - X11Clamp35 - - - - - X11Clamp36 - - - - - X11Clamp37 - - - - - X11Clamp38 - - - - - Possible values for property OutputFilterDown - - - - - NoFilter - - - - - Value500ms - - - - - Value1s - - - - - Value5s - - - - - Value10s - - - - - Value30s - - - - - Value60s - - - - - Possible values for property OutputFilterUp - - - - - NoFilter - - - - - Value500ms - - - - - Value1s - - - - - Value5s - - - - - Value10s - - - - - Value30s - - - - - Value60s - - - - - Possible values for property ParameterAssignmentOfPnInterfaceByHigherLevelIoController - - - - - Deactivated - - - - - Active - - - - - Possible values for property ParameterSettings - - - - - Manual - - - - - FromTemplate - - - - - Possible values for property Parity - - - - - None - - - - - Odd - - - - - Even - - - - - Mark - - - - - Space - - - - - Any - - - - - Interface assignment type for assignable interfaces - - - - - None, or a different Windows setting - - - - - SIMATIC PC Station - - - - - Software Plc - - - - - Possible values for property PcStationType - - - - - NotInstalled - - - - - PcStationV1Dot0 - - - - - PcStationV2Dot0 - - - - - PcStationV2Dot1 - - - - - PcStationV2Dot2 - - - - - PcStationV2Dot3 - - - - - PcStationV2Dot4 - - - - - PcStationV2Dot7 - - - - - PcStationV2Dot8 - - - - - PcStationV2Dot9 - - - - - PcStationV3Dot0 - - - - - Possible values for property PhysicalQuantity - - - - - Deactivated - - - - - S7Format - - - - - Temperature - - - - - Pressure - - - - - Length - - - - - Flow - - - - - Brightness - - - - - Illuminance - - - - - Force - - - - - Torque - - - - - Mass - - - - - Current - - - - - Voltage - - - - - Power - - - - - Area - - - - - Volume - - - - - Angle - - - - - Viscosity - - - - - Speed - - - - - Velocity - - - - - Density - - - - - Frequency - - - - - Possible values for property PilotValve - - - - - Deactivated - - - - - Activated - - - - - Possible values for property PlatinL - - - - - NormallyClosedContact - - - - - NormallyOpenContact - - - - - X - - - - - Possible values for property PlatinM - - - - - Led - - - - - X - - - - - Possible values for property PlatinR - - - - - NormallyClosedContact - - - - - NormallyOpenContact - - - - - X - - - - - UMAC mode entries - - - - - Disabled : no change in accessing the PLC through AS(Automated System). - - - - - EnabledWithAccessControl : there wont be separate configuration for different modes of accessing the PLC like (AccessLevel,WebServer,OPCUA) . - - - - - EnabledWithAccessControlViaAccessLevel : there wont be separate configuration for different modes of accessing the PLC like (WebServer,OPCUA) however user can access the PLC through access level passwords. - - - - - Access Level entries -enum - - - - - No classification. - - - - - Full Access to all the functions. - - - - - Read access to all the functions. - - - - - HMI applications can access all the functions. - - - - - No access to any functions. - - - - - Full Access including fail safe to all the functions. - - - - - Name resolution via DNS - - - - - DNS configuration is deactivated - - - - - Set DNS servers in the project - - - - - Set DNS servers remotely(e.g. DHCP) - - - - - Set DNS servers directly at the device(e.g. PLC program, display) - - - - - Possible values for property PortBehaviour - - - - - ClassAPlusDiPin2 - - - - - ClassB - - - - - Possible values for property PortConfiguration - - - - - DigitalInput - - - - - DigitalOutput - - - - - IoLink1IOr1OPlusPqi - - - - - IoLink2IPlusPqi - - - - - IoLink2IOr2OPlusPqi - - - - - IoLink4IOr4OPlusPqi - - - - - IoLink8IOr8OPlusPqi - - - - - IoLink16IOr16OPlusPqi - - - - - IoLink32IOr32OPlusPqi - - - - - Deactivated - - - - - PortConfigurationSpecificValue - - - - - Possible values for property PortConfigurationSpecific - - - - - Empty - - - - - ValueEt200AlDi16 - - - - - ValueEt200AlDi8 - - - - - ValueEt200AlDq8 - - - - - Possible values for property PortCycleTime - - - - - Empty - - - - - Value1Dot6Milisecond - - - - - Value120Dot0Milisecond - - - - - Value20Dot8Milisecond - - - - - Value3Dot2Milisecond - - - - - Value4Dot8Milisecond - - - - - Value40Dot0Milisecond - - - - - Value8Dot0Milisecond - - - - - Value80Dot0Milisecond - - - - - AsFastAsPossible - - - - - Possible values for property PortMode - - - - - IoLinkAutostart - - - - - IoLinkManual - - - - - Possible values for property PortModePort1 - - - - - None - - - - - IoLinkManual - - - - - Di - - - - - Dq - - - - - Deactivated - - - - - IoLinkAutostart - - - - - Possible values for property PortModePort2 - - - - - None - - - - - IoLinkManual - - - - - Di - - - - - Dq - - - - - Deactivated - - - - - IoLinkAutostart - - - - - Possible values for property PortModePort3 - - - - - None - - - - - IoLinkManual - - - - - Di - - - - - Dq - - - - - Deactivated - - - - - IoLinkAutostart - - - - - Possible values for property PortModePort4 - - - - - None - - - - - IoLinkManual - - - - - Di - - - - - Dq - - - - - Deactivated - - - - - IoLinkAutostart - - - - - Possible values for property PortModePort5 - - - - - None - - - - - IoLinkManual - - - - - Di - - - - - Dq - - - - - Deactivated - - - - - IoLinkAutostart - - - - - Possible values for property PortModePort6 - - - - - None - - - - - IoLinkManual - - - - - Di - - - - - Dq - - - - - Deactivated - - - - - IoLinkAutostart - - - - - Possible values for property PortModePort7 - - - - - None - - - - - IoLinkManual - - - - - Di - - - - - Dq - - - - - Deactivated - - - - - IoLinkAutostart - - - - - Possible values for property PortModePort8 - - - - - None - - - - - IoLinkManual - - - - - Di - - - - - Dq - - - - - Deactivated - - - - - IoLinkAutostart - - - - - Possible values for property PortType - - - - - Deactivated - - - - - DigitalInput1 - - - - - DigitalOutput2 - - - - - IoLink1IOr1OPlusPqi - - - - - IoLink2IOr2QPlusPqi - - - - - IoLink2IOr2OPlusPqi - - - - - IoLink4IOr4OPlusPqi - - - - - IoLink16IOr16QPlusPqi - - - - - IoLink16IOr16OPlusPqi - - - - - Deactivated9 - - - - - DigitalInput - - - - - DigitalOutput - - - - - IoLink1IOr1QPlusPqi - - - - - IoLink2IPlusPqi - - - - - IoLink2IPlusPqi4 - - - - - IoLink32IOr32OPlusPqi - - - - - IoLink32IOr32QPlusPqi - - - - - IoLink4IOr4QPlusPqi - - - - - IoLink8IOr8OPlusPqi - - - - - IoLink8IOr8QPlusPqi - - - - - NotSet - - - - - Possible values for property PotentialGroup - - - - - DarkBaseUnit - - - - - LightBaseUnit - - - - - Possible values for property PowerConfigSignalLamp1 - - - - - NotCalculated - - - - - Red - - - - - Green - - - - - Orange - - - - - White - - - - - Blue - - - - - Possible values for property PowerConfigSignalLamp2 - - - - - NotCalculated - - - - - Multicolor - - - - - Red - - - - - Green - - - - - Orange - - - - - White - - - - - Blue - - - - - Possible values for property PowerConfigSignalLamp3 - - - - - NotCalculated - - - - - Multicolor - - - - - Red - - - - - Green - - - - - Orange - - - - - White - - - - - Blue - - - - - Possible values for property PowerConfigSignalLamp4 - - - - - NotCalculated - - - - - Multicolor - - - - - Red - - - - - Green - - - - - Orange - - - - - White - - - - - Blue - - - - - Possible values for property PowerConfigSirenOrSignalLamp - - - - - NotCalculated - - - - - Red - - - - - Green - - - - - Orange - - - - - White - - - - - Blue - - - - - Value2ToneSiren - - - - - Value8ToneSiren - - - - - Possible values for property PowerFailureMonitoringType - - - - - Deactivated - - - - - ServiceSupplyIsNotInterrupted - - - - - Possible values for property PreConfigurationForDIDQ - - - - - None - - - - - FreeParameterization - - - - - DI8AndDQ8 - - - - - DQ16 - - - - - Possible values for property PreferenceDirection - - - - - StandardDirection - - - - - InvertDirection - - - - - Possible values for property PressureIndicator - - - - - Deactivated - - - - - Permanent - - - - - AlternatingWithValveStatus - - - - - Possible values for property PressureMeasurement - - - - - Deactivated - - - - - Activated - - - - - Possible values for property PressureOutsideTheDefinedRangeActive - - - - - Deactivated - - - - - Activated - - - - - Possible values for property PressureUnit - - - - - Default - - - - - Pascals - - - - - GigaPascals - - - - - MegaPascals - - - - - KiloPascals - - - - - MilliPascals - - - - - MicroPascals - - - - - HectoPascals - - - - - Bars - - - - - MilliBars - - - - - MillimetersOfMercury - - - - - StandardAtmospheres - - - - - PoundsPerSquareInch - - - - - GramsForcePerSquareCentimeter - - - - - KilogramsForcePerSquareCentimeter - - - - - InchesOfWaterAt4Celcius - - - - - InchesOfWaterAt68Fahrenheit - - - - - MillimetersOfWaterAt4Celcius - - - - - MillimetersOfWaterAt68Fahrenheit - - - - - FeetOfWaterAt4Celcius - - - - - FeetOfWaterAt68Fahrenheit - - - - - InchesOfMercuryAt0Celcius - - - - - MillimetersOfMercuryAt0Celcius - - - - - Possible values for property PrewarningLimitForMotorHeating - - - - - Limit0 - - - - - Limit1 - - - - - Limit2 - - - - - Limit3 - - - - - Limit4 - - - - - Limit5 - - - - - Limit6 - - - - - Limit7 - - - - - Limit8 - - - - - Limit9 - - - - - Limit10 - - - - - Limit11 - - - - - Limit12 - - - - - Limit13 - - - - - Limit14 - - - - - Limit15 - - - - - Limit16 - - - - - Limit17 - - - - - Limit18 - - - - - Limit19 - - - - - Limit20 - - - - - Limit21 - - - - - Limit22 - - - - - Limit23 - - - - - Limit24 - - - - - Limit25 - - - - - Limit26 - - - - - Limit27 - - - - - Limit28 - - - - - Limit29 - - - - - Limit30 - - - - - Limit31 - - - - - Limit32 - - - - - Limit33 - - - - - Limit34 - - - - - Limit35 - - - - - Limit36 - - - - - Limit37 - - - - - Limit38 - - - - - Limit39 - - - - - Limit40 - - - - - Limit41 - - - - - Limit42 - - - - - Limit43 - - - - - Limit44 - - - - - Limit45 - - - - - Limit46 - - - - - Limit47 - - - - - Limit48 - - - - - Limit49 - - - - - Limit50 - - - - - Limit51 - - - - - Limit52 - - - - - Limit53 - - - - - Limit54 - - - - - Limit55 - - - - - Limit56 - - - - - Limit57 - - - - - Limit58 - - - - - Limit59 - - - - - Limit60 - - - - - Limit61 - - - - - Limit62 - - - - - Limit63 - - - - - Limit64 - - - - - Limit65 - - - - - Limit66 - - - - - Limit67 - - - - - Limit68 - - - - - Limit69 - - - - - Limit70 - - - - - Limit71 - - - - - Limit72 - - - - - Limit73 - - - - - Limit74 - - - - - Limit75 - - - - - Limit76 - - - - - Limit77 - - - - - Limit78 - - - - - Limit79 - - - - - Limit80 - - - - - Limit81 - - - - - Limit82 - - - - - Limit83 - - - - - Limit84 - - - - - Limit85 - - - - - Limit86 - - - - - Limit87 - - - - - Limit88 - - - - - Limit89 - - - - - Limit90 - - - - - Limit91 - - - - - Limit92 - - - - - Limit93 - - - - - Limit94 - - - - - Limit95 - - - - - Limit96 - - - - - Limit97 - - - - - Limit98 - - - - - Limit99 - - - - - Possible values for property Priority - - - - - Low - - - - - High - - - - - Possible values for property ProDiagUsedLicenses - - - - - NoLicense - - - - - Value1X - - - - - Value2X - - - - - Value3X - - - - - Value4X - - - - - Value5X - - - - - Possible values for property ProcessDataMode - - - - - Standard - - - - - Fragmented - - - - - Possible values for property ProcessDataVariant - - - - - Disable - - - - - UserSpecificUserDataHex01 - - - - - UserSpecificUserDataHex02 - - - - - Hex80 - - - - - EeIndustryMeasuredDataProfileE0Hex81 - - - - - EeIndustryMeasuredDataProfileE1Hex82 - - - - - EeIndustryMeasuredDataProfileE2Hex83 - - - - - EeIndustryMeasuredDataProfileE3Hex84 - - - - - SinglePhaseMeasurementL3WithVoltageScalingValueHex9A - - - - - BasicVariablesSinglePhaseMeasurementL3Hex9B - - - - - SinglePhaseMeasurementL2WithVoltageScalingValueHex9C - - - - - BasicVariablesSinglePhaseMeasurementL2Hex9D - - - - - SinglePhaseMeasurementL1WithVoltageScalingValueHex9E - - - - - BasicVariablesSinglePhaseMeasurementL1Hex9F - - - - - EeIndustryMeasuredDataProfileE0HexE0 - - - - - EeIndustryMeasuredDataProfileE1HexE1 - - - - - EeIndustryMeasuredDataProfileE2HexE2 - - - - - EeIndustryMeasuredDataProfileE3HexE3 - - - - - EnergyL1l2l3OverflowCounterHexEf - - - - - QualityValuesThreePhaseMeasurementL1l2l3HexF0 - - - - - ReactivePowerCompensationL1l2l3HexF4 - - - - - BasicVariablesThreePhaseMeasurementL1l2l3HexF5 - - - - - EnergyL3HexF6 - - - - - EnergyL2HexF7 - - - - - EnergyL1HexF8 - - - - - TotalEnergyL1l2l3HexF9 - - - - - BasicMeasuredValuesL1l2l3HexFa - - - - - ApparentPowerL1l2l3HexFb - - - - - ReactivePowersL1l2l3HexFc - - - - - ActivePowersL1l2l3HexFd - - - - - TotalPowersL1l2l3HexFe - - - - - Possible values for property ProcessValue - - - - - Mass - - - - - Volume - - - - - Standardvolume - - - - - TotalFraktionA - - - - - TotalFraktionB - - - - - Possible values for property ProtectionUnitForSummarizeOfSecurityEvents - - - - - None - - - - - Seconds - - - - - Minutes - - - - - Hours - - - - - Possible values for property ProtocolCompatibility - - - - - Mstp - - - - - Rstp - - - - - Stp - - - - - Possible values for property PulseOutput - - - - - None - - - - - X11Clamp21 - - - - - X11Clamp22 - - - - - X11Clamp23 - - - - - X11Clamp24 - - - - - X11Clamp25 - - - - - X11Clamp26 - - - - - X11Clamp27 - - - - - X11Clamp28 - - - - - X11Clamp31 - - - - - X11Clamp32 - - - - - X11Clamp33 - - - - - X11Clamp34 - - - - - X11Clamp35 - - - - - X11Clamp36 - - - - - X11Clamp37 - - - - - X11Clamp38 - - - - - Possible values for property PulsePauseOnReversalOfDirection - - - - - Value0Ms - - - - - Value1Ms - - - - - Value4Ms - - - - - Value10Ms - - - - - Possible values for property PulseStretching - - - - - None - - - - - Value0Dot5s - - - - - Value1s - - - - - Value2s - - - - - Value0Dot05s - - - - - Value0Dot1s - - - - - Value0Dot2s - - - - - Possible values for property PulseWidthModulationFrequency - - - - - None - - - - - Value01Kilohertz - - - - - Value02Kilohertz - - - - - Value04Kilohertz - - - - - Value08Kilohertz - - - - - Value16Kilohertz - - - - - Possible values for property PulseWidthModulationTimePeriod - - - - - Off - - - - - Value5ms - - - - - Value2ms - - - - - Value1ms - - - - - Value0Dot20ms - - - - - Value0Dot40ms - - - - - Value0Dot93ms - - - - - Value1Dot33ms - - - - - Value4Dot27ms - - - - - Value10Dot67ms - - - - - Value21Dot33ms - - - - - Value34Dot13ms - - - - - Value59Dot73ms - - - - - Value0Dot5ms - - - - - Value10ms - - - - - Possible values for property PwmOutputFormat - - - - - PerMil - - - - - S7AnalogValue - - - - - Possible values for property ReactionToCountingLimit - - - - - StopCounting - - - - - ContinueCounting - - - - - Possible values for property ReactionToCpuStop - - - - - OutputHasNoCurrentOrVoltage - - - - - KeepLastValue - - - - - SubstituteAValue - - - - - Stop - - - - - Continue - - - - - ExitActiveCommand - - - - - Shutdown - - - - - DoNotTurnOffOutputsAndContinueActiveProcess - - - - - StopSubstituteValueOutputToOutputsAndActiveProcesses - - - - - TurnOffOutputsAndStopActiveProcess - - - - - SubstituteValue1 - - - - - Deactivated - - - - - Set00h - - - - - SetFFh - - - - - ContinueOperation - - - - - OutputSubstituteValue - - - - - TurnOff - - - - - SubstituteValue0 - - - - - Outputsubstitutevalue1 - - - - - DisableAllOutputs - - - - - TakeOverFromTmFastApplication - - - - - Possible values for property ReactionToCpuStopforDQ1 - - - - - None - - - - - SubstituteValue - - - - - Continue - - - - - Possible values for property ReactionToError - - - - - SubstituteAValue - - - - - KeepLastValue - - - - - SubstituteValue0 - - - - - Possible values for property ReactionToGateStart - - - - - SetToStartValue - - - - - ContinueWithCurrentValue - - - - - Possible values for property ReactionToSignalN - - - - - NoReactionToSignalN - - - - - SynchronizationAtSignalN - - - - - CaptureAtSignalN - - - - - Possible values for property ReceiveLineInitialState - - - - - None - - - - - SignalRA5VSignalRB0VBreakDetection - - - - - SignalRA0VSignalRB5V - - - - - Possible values for property RedundancyMode - - - - - None - - - - - Redundancy mode S1 - - - - - Redundancy mode Switched S1 - - - - - Redundancy mode S2 - - - - - Redundancy mode S2 IDevice - - - - - Redundancy mode R1 - - - - - Redundancy mode R2 - - - - - Possible values for property ReferenceJunction - - - - - None - - - - - Yes - - - - - ReferenceChannelOfTheModule - - - - - InternalReferenceJunction - - - - - RTD - - - - - Deactivated - - - - - DynamicReferenceTemperature - - - - - FixedReferenceTemperature - - - - - ReferenceChannelOfGroup0 - - - - - ReferenceChannelOfGroup1 - - - - - ExternalReferenceJunction - - - - - ReferenceChannelOfGroup2 - - - - - ReferenceChannelOfGroup3 - - - - - ReferenceChannelOfTheModuleOnChannel8 - - - - - NoCompensation - - - - - Possible values for property ReferenceSwitchInput - - - - - None - - - - - X11Clamp1 - - - - - X11Clamp2 - - - - - X11Clamp3 - - - - - X11Clamp4 - - - - - X11Clamp5 - - - - - X11Clamp6 - - - - - X11Clamp7 - - - - - X11Clamp8 - - - - - X11Clamp11 - - - - - X11Clamp12 - - - - - X11Clamp13 - - - - - X11Clamp14 - - - - - X11Clamp15 - - - - - X11Clamp16 - - - - - X11Clamp17 - - - - - X11Clamp18 - - - - - X12Clamp16 - - - - - X12Clamp18 - - - - - Possible values for property RelationMeasuredVariable - - - - - Disable - - - - - LineConductor1 - - - - - LineConductor2 - - - - - LineConductor3 - - - - - NeutralConductor - - - - - Module - - - - - Possible values for property ResetWhenCountingLimitIsViolated - - - - - ToOppositeCountingLimit - - - - - ToStartValue - - - - - Possible values for property ResponseToOverload - - - - - ShutdownWithoutRestart - - - - - ShutdownWithRestart - - - - - Warn - - - - - Possible values for property ResponseToOvershoot - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property ResponseToPrewarning - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property ResponseToResidualCurrentDetection - - - - - Warn - - - - - Trip - - - - - Possible values for property ResponseToThermalMotorModelAtRestart - - - - - RestartWithLastValueOfThermalMotorModel - - - - - ResetThermalMotorModel - - - - - Possible values for property RetentiveDataMemoryUsage - - - - - PcMassStorage - - - - - NvramOfThePcSystem - - - - - Possible values for property ReverseCurrentDirection - - - - - Deactivated - - - - - Activated - - - - - Possible values for property RtClass - - - - - None - - - - - RT - - - - - IRT - - - - - Possible values for property RunCurrent - - - - - Value0 - - - - - CouldNotCalculateTheDynamicDisplayName - - - - - CouldNotCalculateTheDynamicDisplayName2 - - - - - CouldNotCalculateTheDynamicDisplayName3 - - - - - CouldNotCalculateTheDynamicDisplayName4 - - - - - CouldNotCalculateTheDynamicDisplayName5 - - - - - CouldNotCalculateTheDynamicDisplayName6 - - - - - CouldNotCalculateTheDynamicDisplayName7 - - - - - CouldNotCalculateTheDynamicDisplayName8 - - - - - CouldNotCalculateTheDynamicDisplayName9 - - - - - CouldNotCalculateTheDynamicDisplayName10 - - - - - CouldNotCalculateTheDynamicDisplayName11 - - - - - CouldNotCalculateTheDynamicDisplayName12 - - - - - CouldNotCalculateTheDynamicDisplayName13 - - - - - CouldNotCalculateTheDynamicDisplayName14 - - - - - CouldNotCalculateTheDynamicDisplayName15 - - - - - CouldNotCalculateTheDynamicDisplayName16 - - - - - CouldNotCalculateTheDynamicDisplayName17 - - - - - CouldNotCalculateTheDynamicDisplayName18 - - - - - CouldNotCalculateTheDynamicDisplayName19 - - - - - CouldNotCalculateTheDynamicDisplayName20 - - - - - CouldNotCalculateTheDynamicDisplayName21 - - - - - CouldNotCalculateTheDynamicDisplayName22 - - - - - CouldNotCalculateTheDynamicDisplayName23 - - - - - CouldNotCalculateTheDynamicDisplayName24 - - - - - CouldNotCalculateTheDynamicDisplayName25 - - - - - CouldNotCalculateTheDynamicDisplayName26 - - - - - CouldNotCalculateTheDynamicDisplayName27 - - - - - CouldNotCalculateTheDynamicDisplayName28 - - - - - CouldNotCalculateTheDynamicDisplayName29 - - - - - CouldNotCalculateTheDynamicDisplayName30 - - - - - CouldNotCalculateTheDynamicDisplayName31 - - - - - CouldNotCalculateTheDynamicDisplayName32 - - - - - CouldNotCalculateTheDynamicDisplayName33 - - - - - CouldNotCalculateTheDynamicDisplayName34 - - - - - CouldNotCalculateTheDynamicDisplayName35 - - - - - Possible values for property RunningCurrentIncreaseTime - - - - - Value1 - - - - - Value2 - - - - - Value4 - - - - - Value6 - - - - - Value8 - - - - - Value10 - - - - - Value12 - - - - - Value14 - - - - - Value16 - - - - - Value20 - - - - - Value40 - - - - - Value60 - - - - - Value100 - - - - - Value200 - - - - - Value500 - - - - - Value1000 - - - - - Possible values for property SafetyRelatedTrippingReset - - - - - Manual - - - - - Auto - - - - - Possible values for property SafetyRelatedTrippingResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property SelectLevel - - - - - ActiveWithHighLevel - - - - - ActiveWithLowLevel - - - - - AtFallingEdge - - - - - AtRisingEdge - - - - - Possible values for property SelectLevelDI0 - - - - - ActiveWithHighLevel - - - - - ActiveWithLowLevel - - - - - Possible values for property SelectLevelDI1 - - - - - ActiveWithHighLevel - - - - - ActiveWithLowLevel - - - - - Possible values for property SelectLevelDI2 - - - - - ActiveWithHighLevel - - - - - ActiveWithLowLevel - - - - - Possible values for property SensorType - - - - - DifferentialSignal5V - - - - - NamurSensor - - - - - SingleContactUnwired - - - - - SingleContactWiredWith10Kilohms - - - - - NamurChangeoverContact - - - - - ChangeoverUnwired - - - - - ChangeoverWiredWith10Kilohms - - - - - DiffuseSensor - - - - - RetroReflectiveSensor - - - - - SinkingOutput - - - - - SourcingOutput - - - - - PushPull - - - - - NoSensor - - - - - Ssi - - - - - Ttl - - - - - Stepper - - - - - Initiator24V - - - - - PulseAndDirection24V - - - - - TrackAPlusBPhaseShifted24V - - - - - InternalTimeBase1Mhz - - - - - PulseAndDirection82V - - - - - ChannelDisabled - - - - - Ssi13Bits - - - - - Ssi21Bits - - - - - Ssi25Bits - - - - - Ssi14Bits - - - - - Ssi15Bits - - - - - Ssi16Bits - - - - - Ssi17Bits - - - - - Ssi18Bits - - - - - Ssi19Bits - - - - - Ssi20Bits - - - - - Ssi22Bits - - - - - Ssi23Bits - - - - - Ssi24Bits - - - - - Standard - - - - - Hydrocarbon - - - - - Gas - - - - - Possible values for property SerialProtocolMode - - - - - None - - - - - UssMaster - - - - - Freeport - - - - - FreeportModbus - - - - - Modbus - - - - - Rk512 - - - - - Ascii - - - - - Value3964R - - - - - Printer - - - - - ModbusMaster - - - - - ModbusSlave - - - - - Possible values for property SetOutputDO - - - - - OffDqEqualTo0 - - - - - BetweenComparisonValueAndHighCountingLimit - - - - - BetweenComparisonValueAndLowCountingLimit - - - - - BetweenComparisonValueAndHighLimit - - - - - BetweenComparisonValueAndLowLimit - - - - - BetweenComparisonValue0And1 - - - - - NotBetweenComparisonValue0And1 - - - - - OffDqEqualTo1 - - - - - Deactivated - - - - - Possible values for property SetOutputDQ0 - - - - - UseByUserProgram - - - - - BetweenComparisonValue0AndHighLimit - - - - - BetweenComparisonValue0AndLowLimit - - - - - AtComparisonValue0ForAPulseDuration - - - - - AfterSetCommandFromCpuUntilCompValue0 - - - - - MeasuredValueLessthanEqualtoComparisonValue0 - - - - - MeasuredValueGeaterthanEqualtoComparisonValue0 - - - - - NoFunction - - - - - Possible values for property SetOutputDQ1 - - - - - UseByUserProgram - - - - - BetweenComparisonValue1AndHighLimit - - - - - BetweenComparisonValue1AndLowLimit - - - - - AtComparisonValue1ForAPulseDuration - - - - - BetweenComparisonValue0And1 - - - - - AfterSetCommandFromCpuUntilCompValue1 - - - - - MeasuredValueLessthanEqualtoComparisonValue1 - - - - - MeasuredValueGeaterthanEqualtoComparisonValue1 - - - - - NoFunction - - - - - NotBetweenComparisonValue0And1 - - - - - BetweenComparisonValueAndHighCounterValue - - - - - BetweenComparisonValueAndLowCounterValue - - - - - Possible values for property SharedDeviceCopyOfModule - - - - - None - - - - - Value1AdditionalCopyOfAnInput - - - - - Value2AdditionalCopiesOfAnInput - - - - - Value3AdditionalCopiesOfAnInput - - - - - Possible values for property SignalConditioning1Type - - - - - NonInverting - - - - - Inverting - - - - - EdgeRisingWithMemory - - - - - EdgeFallingWithMemory - - - - - Possible values for property SignalConditioning2Type - - - - - NonInverting - - - - - Inverting - - - - - EdgeRisingWithMemory - - - - - EdgeFallingWithMemory - - - - - Possible values for property SignalConditioning3Type - - - - - NonInverting - - - - - Inverting - - - - - EdgeRisingWithMemory - - - - - EdgeFallingWithMemory - - - - - Possible values for property SignalConditioning4Type - - - - - NonInverting - - - - - Inverting - - - - - EdgeRisingWithMemory - - - - - EdgeFallingWithMemory - - - - - Possible values for property SignalConditioning5Type - - - - - NonInverting - - - - - Inverting - - - - - EdgeRisingWithMemory - - - - - EdgeFallingWithMemory - - - - - Possible values for property SignalConditioning6Type - - - - - NonInverting - - - - - Inverting - - - - - EdgeRisingWithMemory - - - - - EdgeFallingWithMemory - - - - - Possible values for property SignalDelaySelection - - - - - None - - - - - CableLength - - - - - SignalDelayTime - - - - - Possible values for property SignalEvaluation - - - - - Single - - - - - Double - - - - - Quadruple - - - - - Possible values for property SignalInterface - - - - - Value24VAsymmetrical - - - - - Rs422SymmetricalOrTtl5VAsymmetrical - - - - - Possible values for property SignalSelectionForReferenceMark0 - - - - - SignalNOfIncrementalEncoder - - - - - Di0 - - - - - None - - - - - Possible values for property SignalType - - - - - PulseA - - - - - PulseAAndDirectionB - - - - - CountUpACountDownB - - - - - IncrementalEncoderABPhaseShifted - - - - - IncrementalEncoderABN - - - - - AbsoluteEncoderSsi - - - - - IncrementalEncoderABPhaseShiftedQuadruple - - - - - PulsePAndDirectionD - - - - - Possible values for property SimocodeAnalogConnections - - - - - NotConnected - - - - - FixedLevel - - - - - Timer1ActualValue - - - - - Timer2ActualValue - - - - - Timer3ActualValue - - - - - Timer4ActualValue - - - - - Counter1ActualValue - - - - - Counter2ActualValue - - - - - Counter3ActualValue - - - - - Counter4ActualValue - - - - - Counter5ActualValue - - - - - Counter6ActualValue - - - - - Timer5ActualValue - - - - - Timer6ActualValue - - - - - MaxCurrentIMaxPercentageOfIs - - - - - CurrentIL1PercentageOfIs - - - - - CurrentIL2PercentageOfIs - - - - - CurrentIL3PercentageOfIs - - - - - PhaseUnbalance - - - - - InternalGroundFaultGroundFaultCurrent - - - - - InternalGroundFaultLastTrippingCurrent - - - - - VoltageUMin - - - - - LineToLineVoltageUl1L2 - - - - - LineToLineVoltageUl2L3 - - - - - LineToLineVoltageUl3L1 - - - - - CosPhi - - - - - Frequency - - - - - NumberOfOverloadTrips - - - - - IntNumberOfOverloadTrips - - - - - ThermalMotorModel - - - - - TimeToTrip - - - - - RemainingCoolingDownPeriod - - - - - LastTripCurrentPercentageOfIs - - - - - TemperatureModule1MaxTemperature - - - - - TemperatureModule1Temperature1 - - - - - TemperatureModule1Temperature2 - - - - - TemperatureModule1Temperature3 - - - - - PermissibleStartsActualValue - - - - - StopTime - - - - - MonitoringIntervalForMandatoryTestingTimeUntilTest - - - - - EmLastTrippingCurrent - - - - - AnalogModule1Input1 - - - - - AnalogModule1Input2 - - - - - EmGroundFaultCurrent - - - - - AcyclicReceiveAnalogValue - - - - - CyclicReceiveAnalogValue - - - - - CyclicReceiveAnalogValue2 - - - - - NumberOfParameterizations - - - - - MotorOperatingHoursHWord - - - - - MotorOperatingHoursLWord - - - - - IntMotorOperatingHoursHWord - - - - - IntMotorOperatingHoursLWord - - - - - DeviceOperatingHoursHWord - - - - - DeviceOperatingHoursLWord - - - - - NumberOfStartsHWord - - - - - NumberOfStartsLWord - - - - - IntNumberOfStartsCwHWord - - - - - IntNumberOfStartsCwLWord - - - - - IntNumberOfStartsCcwHWord - - - - - IntNumberOfStartsCcwLWord - - - - - ConsumedEnergyHWord - - - - - ConsumedEnergyLWord - - - - - ExternalGroundFault3Uf7510GroundFaultCurrent - - - - - ActivePowerHWord - - - - - ActivePowerLWord - - - - - ApparentPowerHWord - - - - - ApparentPowerLWord - - - - - Calculator1Output - - - - - Calculator2Output - - - - - Calculator3Output - - - - - Calculator4Output - - - - - AnalogMultiplexerOutput - - - - - MaxCurrentIMax10Ma - - - - - CurrentIL110Ma - - - - - CurrentIL210Ma - - - - - CurrentIL310Ma - - - - - MaxCurrentIMax100Ma - - - - - CurrentIL1100Ma - - - - - CurrentIL2100Ma - - - - - CurrentIL3100Ma - - - - - TemperatureModule2MaxTemperature - - - - - TemperatureModule2Temperature1 - - - - - TemperatureModule2Temperature2 - - - - - TemperatureModule2Temperature3 - - - - - AnalogModule2Input1 - - - - - AnalogModule2Input2 - - - - - CyclicReceiveAnalogValue1 - - - - - OpcUaReceiveAnalogValue - - - - - PhaseVoltageUL1N - - - - - PhaseVoltageUL2N - - - - - PhaseVoltageUL3N - - - - - Possible values for property SimocodeDigitalConnections - - - - - NotConnected - - - - - FixedLevel0 - - - - - FixedLevel1 - - - - - EventAm2WarningLevelUpperLimit - - - - - EventAm2WarningLevelLowerLimit - - - - - EventAm2TripLevelUpperLimit - - - - - EventAm2TripLevelLowerLimit - - - - - BuTestOrResetButton - - - - - BuInput1 - - - - - BuInput2 - - - - - BuInput3 - - - - - BuInput4 - - - - - Dm1InputDMFL - - - - - Dm1Input2 - - - - - Dm1FeedbackCircuitDmfl - - - - - Dm1CascadingInput - - - - - Dm2Input1 - - - - - Dm2Input2 - - - - - Dm2Input3 - - - - - Dm2Input4 - - - - - Dm1SensorChannel1 - - - - - Dm1SensorChannel2 - - - - - EventTm2SensorFault - - - - - EventTm2OutOfRange - - - - - EventTm2WarningLevelUpperLimit - - - - - EventTm2TripLevelUpperLimit - - - - - OpTestOrResetButton - - - - - OpButton1 - - - - - OpButton2 - - - - - OpButton3 - - - - - OpButton4 - - - - - EventLimitMonitor5 - - - - - EventLimitMonitor6 - - - - - AcyclicReceiveByte0Bit0 - - - - - AcyclicReceiveByte0Bit1 - - - - - AcyclicReceiveByte0Bit2 - - - - - AcyclicReceiveByte0Bit3 - - - - - AcyclicReceiveByte0Bit4 - - - - - AcyclicReceiveByte0Bit5 - - - - - AcyclicReceiveByte0Bit6 - - - - - AcyclicReceiveByte0Bit7 - - - - - AcyclicReceiveByte1Bit0 - - - - - AcyclicReceiveByte1Bit1 - - - - - AcyclicReceiveByte1Bit2 - - - - - AcyclicReceiveByte1Bit3 - - - - - AcyclicReceiveByte1Bit4 - - - - - AcyclicReceiveByte1Bit5 - - - - - AcyclicReceiveByte1Bit6 - - - - - AcyclicReceiveByte1Bit7 - - - - - CyclicReceiveByte0Bit0 - - - - - CyclicReceiveByte0Bit1 - - - - - CyclicReceiveByte0Bit2 - - - - - CyclicReceiveByte0Bit3 - - - - - CyclicReceiveByte0Bit4 - - - - - CyclicReceiveByte0Bit5 - - - - - CyclicReceiveByte0Bit6 - - - - - CyclicReceiveByte0Bit7 - - - - - CyclicReceiveByte1Bit0 - - - - - CyclicReceiveByte1Bit1 - - - - - CyclicReceiveByte1Bit2 - - - - - CyclicReceiveByte1Bit3 - - - - - CyclicReceiveByte1Bit4 - - - - - CyclicReceiveByte1Bit5 - - - - - CyclicReceiveByte1Bit6 - - - - - CyclicReceiveByte1Bit7 - - - - - OnReverseFastEnabledControlCommand - - - - - OnReverseEnabledControlCommand - - - - - OffEnabledControlCommand - - - - - OnForwardEnabledControlCommand - - - - - OnForwardFastEnabledControlCommand - - - - - ContactorControl1Qe1 - - - - - ContactorControl2Qe2 - - - - - ContactorControl3Qe3 - - - - - ContactorControl4Qe4 - - - - - ContactorControl5Qe5 - - - - - DisplayQleReversefast - - - - - DisplayQleReverse - - - - - DisplayQlaOff - - - - - DisplayQleForward - - - - - DisplayQleForwardFast - - - - - DisplayQlsFault - - - - - StatusGroupFault - - - - - StatusGroupWarning - - - - - StatusDeviceOK - - - - - StatusBusOK - - - - - StatusPlcDcsInRun - - - - - StatusCurrentFlowing - - - - - StatusProfienergyCommandStartPausePending - - - - - StatusOnReverseFast - - - - - StatusOnReverse - - - - - StatusOff - - - - - StatusOnForward - - - - - StatusOnForwardFast - - - - - StatusStartActive - - - - - StatusInterlockingTimeActive - - - - - StatusChangeOverPauseActive - - - - - StatusPositionerRunsInOpenDirection - - - - - StatusPositionerRunsInClosedDirection - - - - - StatusFeedbackClosedFc - - - - - StatusFeedbackOpenFo - - - - - StatusTorqueClosedTc - - - - - StatusTorqueOpenTo - - - - - StatusTestPositionFeedback - - - - - StatusOperationalProtectionOff - - - - - StatusRemoteMode - - - - - StatusEmergencyStartExecuted - - - - - StatusCoolingDownPeriodActive - - - - - StatusPauseTimeActive - - - - - StatusDeviceTestActive - - - - - StatusPhaseSequence123 - - - - - StatusPhaseSequence321 - - - - - StatusEnablingCircuitClosed - - - - - EventPrewarningOverload - - - - - EventUnbalance - - - - - EventOverload - - - - - EventOverloadAndPhaseFailure - - - - - EventInternalGroundFault - - - - - EventExternalGroundFault - - - - - EventExternalGroundFaultWarning - - - - - EventThermistorTripLevel - - - - - EventThermistorShortCircuit - - - - - EventThermistorOpenCircuit - - - - - EventTm1WarningLevelUpperLimit - - - - - EventTm1TripLevelUpperLimit - - - - - EventTm1SensorFault - - - - - EventTm1OutOfRange - - - - - EventEmOpenCircuit - - - - - EventEmShortCircuit - - - - - EventWarningLevelIUpperLimit - - - - - EventWarningLevelILowerLimit - - - - - EventWarningLevelPUpperLimit - - - - - EventWarningLevelPLowerLimit - - - - - EventWarningLevelCosPhi - - - - - EventWarningLevelULowerLimit - - - - - EventAm1WarningLevelUpperLimit - - - - - EventAm1WarningLeveLowerLimit - - - - - EventTripLevelIUpperLimit - - - - - EventTripLevelILowerLimit - - - - - EventTripLevelPUpperLimit - - - - - EventTripLevelPLowerLimit - - - - - EventTripLevelCosPhi - - - - - EventTripLevelULowerLimit - - - - - EventAm1TripLevelUpperLimit - - - - - EventAm1TripLevelLowerLimit - - - - - EventStalledRotor - - - - - EventInternalGroundFaultWarning - - - - - EventNoStartPermitted - - - - - EventNumberOfStarts - - - - - EventJustOneStartPossible - - - - - EventMotorOperatingHours - - - - - EventStopTime - - - - - EventLimitMonitor1 - - - - - EventLimitMonitor2 - - - - - EventLimitMonitor3 - - - - - EventLimitMonitor4 - - - - - EventExternalFault1 - - - - - EventExternalFault2 - - - - - EventExternalFault3 - - - - - EventExternalFault4 - - - - - EventExternalFault5 - - - - - EventExternalFault6 - - - - - EventAm2OpenCircuit - - - - - EventAm1OpenCircuit - - - - - EventSafetyRelatedTripping - - - - - EventMonitoringPeriodForMandatoryTestingTestRequirement - - - - - EventTimestampfctActive - - - - - EventDmFLocalOK - - - - - EventProfisafeActive - - - - - EventConfiguredOperatorPanelMissing - - - - - WarningFeedbackCircuit - - - - - WarningSimultaneity - - - - - FaultHardwareFaultBasicUnit - - - - - FaultModuleFault - - - - - FaultTemporaryComponents - - - - - FaultConfigurationError - - - - - FaultParameterization - - - - - FaultBus - - - - - FaultPlcDcs - - - - - DryRunningProtectionTripLevel - - - - - FaultExecutionOnCommand - - - - - FaultExecutionStopCommand - - - - - FaultFeedbackOn - - - - - FaultFeedbackOff - - - - - FaultStalledPositioner - - - - - FaultDouble0 - - - - - FaultDouble1 - - - - - FaultEndPosition - - - - - FaultAntivalence - - - - - FaultTestPositionFeedback - - - - - FaultPowerFailure - - - - - FaultOperationalProtectionOff - - - - - SignalConditioning5Output - - - - - SignalConditioning6Output - - - - - TruthTable1Output - - - - - TruthTable2Output - - - - - TruthTable3Output - - - - - TruthTable4Output - - - - - TruthTable5Output - - - - - TruthTable6Output - - - - - TruthTable7Output - - - - - TruthTable8Output - - - - - TruthTable9Output1 - - - - - TruthTable9Output2 - - - - - TruthTable10Output - - - - - TruthTable11Output - - - - - Counter5Output - - - - - Counter6Output - - - - - Timer5Output - - - - - Timer6Output - - - - - Timer1Output - - - - - Timer2Output - - - - - Timer3Output - - - - - Timer4Output - - - - - Counter1Output - - - - - Counter2Output - - - - - Counter3Output - - - - - Counter4Output - - - - - Dm1FeedbackCircuitDmfp - - - - - Dm1Input1 - - - - - Dm1Input3 - - - - - Dm1Input4 - - - - - Dm1Start - - - - - NonVolatileElement2Output - - - - - NonVolatileElement3Output - - - - - NonVolatileElement4Output - - - - - Flashing1Output - - - - - Flashing2Output - - - - - Flashing3Output - - - - - Flicker1Output - - - - - Flicker2Output - - - - - Flicker3Output - - - - - NonVolatileElement1Output - - - - - CloseSolenoidValve - - - - - ClosePositioner - - - - - OpcUaReceiveByte0Bit0 - - - - - OpcUaReceiveByte0Bit1 - - - - - OpcUaReceiveByte0Bit2 - - - - - OpcUaReceiveByte0Bit3 - - - - - OpcUaReceiveByte0Bit4 - - - - - OpcUaReceiveByte0Bit5 - - - - - OpcUaReceiveByte0Bit6 - - - - - OpcUaReceiveByte0Bit7 - - - - - OpcUaReceiveByte1Bit0 - - - - - OpcUaReceiveByte1Bit1 - - - - - OpcUaReceiveByte1Bit2 - - - - - OpcUaReceiveByte1Bit3 - - - - - OpcUaReceiveByte1Bit4 - - - - - OpcUaReceiveByte1Bit5 - - - - - OpcUaReceiveByte1Bit6 - - - - - OpcUaReceiveByte1Bit7 - - - - - Open - - - - - PwmOutput - - - - - SignalConditioning1Output - - - - - SignalConditioning2Output - - - - - SignalConditioning3Output - - - - - SignalConditioning4Output - - - - - Stop - - - - - Represents a WebserverUser - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Set Password for Web server user - - Password of User - user password violates the security setting password policy - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - get and set user activation - - - - - - Represents webserver permission for WebserverUser - - - - - - The name of the WebServer User - - - - - - Represent list of Webserver Users - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a given webserver user - - Username of webserver user - Siemens.Engineering.HW.SimpleWebserverUser - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents Webserver User Permissions - - - - - reading access - - - - - reading access - - - - - read and write access - - - - - Possible values for property SizeLengthField - - - - - None - - - - - Value1 - - - - - Value2 - - - - - Value4 - - - - - Possible values for property Smoothing - - - - - None - - - - - Weak - - - - - Medium - - - - - Strong - - - - - Deactivated - - - - - Value2x - - - - - Value4x - - - - - Value8x - - - - - Value16x - - - - - Value32x - - - - - Value64x - - - - - Activated50Hertz - - - - - Activated60Hertz - - - - - Possible values for property Snmpv1Orv2cReadOnly - - - - - Deactivated - - - - - Active - - - - - Possible values for property Snmpv1TrapsActive - - - - - Deactivated - - - - - Active - - - - - Represents a base class of an object containing software components - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the software base - - - - - - Possible values for property SoundVelocityUnit - - - - - Default - - - - - MetersPerSecond - - - - - MilliMetersPerSecond - - - - - MetersPerHoure - - - - - KiloMetersPerHoure - - - - - Knots - - - - - InchesPerSecond - - - - - FeetPerSecond - - - - - YardsPerSecond - - - - - InchesPerMinute - - - - - FeetPerMinute - - - - - YardsPerMinute - - - - - InchesPerHour - - - - - FeetPerHour - - - - - YardsPerHour - - - - - MilesPerHour - - - - - Network type - - - - - The type of the network is Manual - - - - - The type of the network is AutomaticMinimum. - - - - - The type of the network is LocalSendClock. - - - - - The type of the network is ProfinetSendClock. - - - - - Possible values for property StandardVolumeFlow - - - - - NormLiterPerDay - - - - - NormLiterPerHour - - - - - NormLiterPerMinute - - - - - NormLiterPerSecond - - - - - NormCubicMeterPerDay - - - - - NormCubicMeterPerHour - - - - - NormCubicMeterPerMinute - - - - - NormCubicMeterPerSecond - - - - - ScfPerDay - - - - - ScfPerHour - - - - - ScfPerMinute - - - - - ScfPerSecond - - - - - StandardLiterPerDay - - - - - StandardLiterPerHour - - - - - StandardLiterPerMinute - - - - - StandardLiterPerSecond - - - - - StandardCubicMeterPerDay - - - - - StandardCubicMeterPerHour - - - - - StandardCubicMeterPerMinute - - - - - StandardCubicMeterPerSecond - - - - - Possible values for property StandardVolumeUnit - - - - - Nl - - - - - CubicNm - - - - - Scf - - - - - Sl - - - - - CubicSm - - - - - Possible values for property StartDetectionOfAReceivedFrame - - - - - StartOnSpecialCondition - - - - - StartOnAnyCharacter - - - - - Possible values for property StartupActionAfterPowerOn - - - - - NoRestartRemainInStopMode - - - - - WarmRestartRun - - - - - ColdRestart - - - - - WarmRestartOperatingModeBeforePowerOff - - - - - WarmRestart - - - - - HotRestart - - - - - Possible values for property StartupComparisonPresetToActualModule - - - - - FromCpu - - - - - StartupCpuOnlyIfCompatible - - - - - StartupCpuIfMismatch - - - - - Possible values for property StartupDelay - - - - - NoDelay - - - - - Value100ms - - - - - Value1s - - - - - Value2s - - - - - Value3s - - - - - Value4s - - - - - Value5s - - - - - Value10s - - - - - Possible values for property StateSignalFailureActive - - - - - SignalFailureOff - - - - - SignalFailureOn - - - - - Possible values for property StateSignalFunctionControlActive - - - - - SignalFunctionControlOff - - - - - SignalFunctionControlOn - - - - - Possible values for property StateSignalMaintenanceActive - - - - - SignalMaintainceOff - - - - - SignalMaintainceOn - - - - - Possible values for property StateSignalOutOfSpecificationActive - - - - - OutOfSpecificationOff - - - - - OutOfSpecificationOn - - - - - Possible values for property StepResolution - - - - - Value1Or1 - - - - - Value1Or2 - - - - - Value1Or4 - - - - - Value1Or8 - - - - - Value1Or16 - - - - - Value1Or32 - - - - - Value1Or64 - - - - - Value1Or128 - - - - - Value1Or256 - - - - - Value1Or10 - - - - - Value1Or25 - - - - - Value1Or20 - - - - - Value1Or5 - - - - - Value1Or512 - - - - - Possible values for property StopBits - - - - - None - - - - - Value1 - - - - - Value2 - - - - - Possible values for property StopCurrent - - - - - Value0 - - - - - CouldNotCalculateTheDynamicDisplayName - - - - - CouldNotCalculateTheDynamicDisplayName2 - - - - - CouldNotCalculateTheDynamicDisplayName3 - - - - - CouldNotCalculateTheDynamicDisplayName4 - - - - - CouldNotCalculateTheDynamicDisplayName5 - - - - - CouldNotCalculateTheDynamicDisplayName6 - - - - - CouldNotCalculateTheDynamicDisplayName7 - - - - - CouldNotCalculateTheDynamicDisplayName8 - - - - - CouldNotCalculateTheDynamicDisplayName9 - - - - - CouldNotCalculateTheDynamicDisplayName10 - - - - - CouldNotCalculateTheDynamicDisplayName11 - - - - - CouldNotCalculateTheDynamicDisplayName12 - - - - - CouldNotCalculateTheDynamicDisplayName13 - - - - - CouldNotCalculateTheDynamicDisplayName14 - - - - - CouldNotCalculateTheDynamicDisplayName15 - - - - - CouldNotCalculateTheDynamicDisplayName16 - - - - - CouldNotCalculateTheDynamicDisplayName17 - - - - - CouldNotCalculateTheDynamicDisplayName18 - - - - - CouldNotCalculateTheDynamicDisplayName19 - - - - - CouldNotCalculateTheDynamicDisplayName20 - - - - - CouldNotCalculateTheDynamicDisplayName21 - - - - - CouldNotCalculateTheDynamicDisplayName22 - - - - - CouldNotCalculateTheDynamicDisplayName23 - - - - - CouldNotCalculateTheDynamicDisplayName24 - - - - - CouldNotCalculateTheDynamicDisplayName25 - - - - - CouldNotCalculateTheDynamicDisplayName26 - - - - - CouldNotCalculateTheDynamicDisplayName27 - - - - - CouldNotCalculateTheDynamicDisplayName28 - - - - - CouldNotCalculateTheDynamicDisplayName29 - - - - - CouldNotCalculateTheDynamicDisplayName30 - - - - - CouldNotCalculateTheDynamicDisplayName31 - - - - - CouldNotCalculateTheDynamicDisplayName32 - - - - - CouldNotCalculateTheDynamicDisplayName33 - - - - - CouldNotCalculateTheDynamicDisplayName34 - - - - - CouldNotCalculateTheDynamicDisplayName35 - - - - - Possible values for property StopTimeOperatingHoursMonitoringResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property SubCategory - - - - - None - - - - - LineConductorCurrent - - - - - NeutralConductorCurrent - - - - - LineToNeutralVoltageLN - - - - - LineToLineVoltageLL - - - - - ApparentPowers - - - - - ActivePowers - - - - - ReactivePowers - - - - - PowerFactorsOrPhaseAngle - - - - - ApparentEnergies - - - - - ActiveEnergies - - - - - ReactiveEnergies - - - - - MeasuredVariableRelatedQualityData - - - - - General - - - - - LimitMonitoring - - - - - Frequencies - - - - - OperatingHoursCounter - - - - - Times - - - - - PowerFactors - - - - - PhaseAngles - - - - - ActiveFactorsCosPhi - - - - - Asymmetries - - - - - TotalHarmonicDistortions - - - - - Qualifier - - - - - HarmonicOfTheLineToNeutralVoltageLN - - - - - HarmonicOfTheLineConductorCurrent - - - - - Possible values for property SubmoduleSlotNumber - - - - - If1 - - - - - If2 - - - - - If3 - - - - - If4 - - - - - Represents a Subnet, one of the following (SubnetMpi or SubnetIE) represents the net object - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Associated IO systems - - - - - - The name of the Subnet - - - - - - Particular subnet net type - - - - - - Associated nodes - - - - - - The type identifier of this Subnet - - - - - - Composition of Subnets - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create subnet from MasterCopy - - The source MasterCopy - Siemens.Engineering.HW.Subnet - - - - Creates a Subnet - - Type identifier of the Subnet to be created - Name of Subnet to be created - Siemens.Engineering.HW.Subnet - - - - Finds a given Subnet - - Name to find - Siemens.Engineering.HW.Subnet - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Possible values for property SubnetsOverviewInterVlanRouting - - - - - Deactivated - - - - - Active - - - - - Possible values for property SubstituteValue - - - - - Value0 - - - - - Value1 - - - - - Possible values for property SubstituteValueDQ0 - - - - - Value0 - - - - - Value1 - - - - - Possible values for property SubstituteValueDQ1 - - - - - Value0 - - - - - Value1 - - - - - Possible values for property SubstituteValueDQ4 - - - - - Value0 - - - - - Value1 - - - - - Possible values for property SubstituteValueDQ6 - - - - - Value0 - - - - - Value1 - - - - - Possible values for property SubstituteValueDQA - - - - - Value0 - - - - - Value1 - - - - - Possible values for property SubstituteValueDQB - - - - - Value0 - - - - - Value1 - - - - - Possible values for property SupplyVoltage - - - - - NoConnectionToSupplyVoltageLPlus - - - - - ConnectionToSupplyVoltageLPlus - - - - - Possible values for property SwitchingCycleCounterActuatorInclDiagnostics - - - - - Deactivated - - - - - Activated - - - - - Possible values for property SwitchingCycleCounterPilotValveInclDiagnostics - - - - - Deactivated - - - - - Activated - - - - - Possible values for property SwitchingFrequencyOverdrive - - - - - Value1 - - - - - Value2 - - - - - Value4 - - - - - Value8 - - - - - Value10 - - - - - Value15 - - - - - Value20 - - - - - OverdriveOff - - - - - Sync Domain - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Converted name of the Sync Domain - - - - - - Association of Sync Domain Participants - - - - - - Default state of the Sync Domain - - - - - - Name of the Sync Domain - - - - - - Composition of Sync Domains - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create Sync Domain on Subnet - - Name of Sync Domain - Siemens.Engineering.HW.SyncDomain - - - - Finds a given Sync Domain - - Name to find - Siemens.Engineering.HW.SyncDomain - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Possible values for property SyncRole - - - - - NotSynchronized - - - - - SyncMaster - - - - - SyncSlave - - - - - RedundantSyncMaster - - - - - Possible values for property SynchronizationFrequency - - - - - Once - - - - - Periodic - - - - - Represents types of transport protocol for system logging. - - - - - None - - - - - TLSServerAndClientAuthentication - - - - - TLSOnlyServerAuthentication - - - - - UDP - - - - - Possible values for property SyslogClientActive - - - - - Deactivated - - - - - Active - - - - - Possible values for property SystemPowerSupplyExternal - - - - - NoConnectionToExternal24VSupply - - - - - ConnectionToExternal24VSupply - - - - - Possible values for property TM1InputsActiveSensors - - - - - Value1Sensor - - - - - Value2Sensors - - - - - Value3Sensors - - - - - Possible values for property TM1InputsResponseToSensorFaultOutOfRange - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property TM1InputsSensorType - - - - - Pt100 - - - - - Pt1000 - - - - - Kty83 - - - - - Kty84 - - - - - Ntc - - - - - Possible values for property TM1TripLevelResponse - - - - - None - - - - - Signal - - - - - Trip - - - - - Possible values for property TM1WarningLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property TM2InputsActiveSensors - - - - - Value1Sensor - - - - - Value2Sensors - - - - - Value3Sensors - - - - - Possible values for property TM2InputsResponseToSensorFaultOutOfRange - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property TM2InputsSensorType - - - - - Pt100 - - - - - Pt1000 - - - - - Kty83 - - - - - Kty84 - - - - - Ntc - - - - - Possible values for property TM2TripLevelResponse - - - - - None - - - - - Signal - - - - - Trip - - - - - Possible values for property TM2WarningLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property TemperatureShutdown - - - - - OutputActiveEvenUnderOvertemperatureConditions - - - - - OutputDisabledUnderOvertemperatureConditions - - - - - Possible values for property TemperatureUnit - - - - - Deactivated - - - - - DegreesCelsius - - - - - DegreesFahrenheit - - - - - Kelvin - - - - - Rankine - - - - - Possible values for property Terminal0Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal16Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal17Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal18Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal19Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal1Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal20Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal21Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal22Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal23Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal24Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal25Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal26Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal27Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal28Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal29Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal2Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal30Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal31Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal3Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal4Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal5Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal6Function - - - - - Input - - - - - Output - - - - - Possible values for property Terminal7Function - - - - - Input - - - - - Output - - - - - Possible values for property TestPositionFeedbackTPFStandardFunctionsType - - - - - NOContact - - - - - NCContact - - - - - Possible values for property TestResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property ThermistorResponseToSensorFault - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property ThermistorResponseToTripLevel - - - - - None - - - - - Signal - - - - - Warn - - - - - Trip - - - - - Possible values for property TimeBaseForVelocityMeasurement - - - - - Value1ms - - - - - Value10ms - - - - - Value100ms - - - - - Value1s - - - - - Value60sOr1m - - - - - Possible values for property TimeOfDayDaylightSavingTimeStartHour - - - - - Midnight - - - - - Value0100AM - - - - - Value0200AM - - - - - Value0300AM - - - - - Value0400AM - - - - - Value0500AM - - - - - Value0600AM - - - - - Value0700AM - - - - - Value0800AM - - - - - Value0900AM - - - - - Value1000AM - - - - - Value1100AM - - - - - Value1200PM - - - - - Value0100PM - - - - - Value0200PM - - - - - Value0300PM - - - - - Value0400PM - - - - - Value0500PM - - - - - Value0600PM - - - - - Value0700PM - - - - - Value0800PM - - - - - Value0900PM - - - - - Value1000PM - - - - - Value1100PM - - - - - Possible values for property TimeOfDayDaylightSavingTimeStartMonth - - - - - None - - - - - January - - - - - February - - - - - March - - - - - April - - - - - May - - - - - June - - - - - July - - - - - August - - - - - September - - - - - October - - - - - November - - - - - December - - - - - Possible values for property TimeOfDayDaylightSavingTimeStartWeek - - - - - None - - - - - First - - - - - Second - - - - - Third - - - - - Fourth - - - - - Last - - - - - Possible values for property TimeOfDayDaylightSavingTimeStartWeekday - - - - - None - - - - - Sunday - - - - - Monday - - - - - Tuesday - - - - - Wednesday - - - - - Thursday - - - - - Friday - - - - - Saturday - - - - - Possible values for property TimeOfDayLocalTimeZone - - - - - UtcMinus1200EniwetokKwajalein - - - - - UtcPlus1300Samoa - - - - - UtcMinus1000Hawaii - - - - - UtcMinus0900Alaska - - - - - UtcMinus0800TijuanaLosAngelesSeattleVancouver - - - - - UtcMinus0700Arizona - - - - - UtcMinus0700MountainStandardTimeUsaCanada - - - - - UtcMinus0600CentralStandardTimeUsaCanada - - - - - UtcMinus0600GuadalajaraMexicoCityMonterrey - - - - - UtcMinus0600Saskatchewan - - - - - UtcMinus0500BogotaLimaQuito - - - - - UtcMinus0500EasternStandardTimeUsaCanada - - - - - UtcMinus0500IndianaEast - - - - - UtcMinus0430Caracas - - - - - UtcMinus0400GeorgetownLaPazManausSanJuan - - - - - UtcMinus0330Newfoundland - - - - - UtcMinus0300Brasilia - - - - - UtcMinus0300BuenosAires - - - - - UtcMinus0200MidMinusatlanticMinusOld - - - - - UtcMinus0100Azores - - - - - UtcMinus0100CapeVerde - - - - - UtcCasablanca - - - - - UtcDublinEdinburghLisbonLondon - - - - - UtcMonroviaReykjavik - - - - - UtcPlus0100AmsterdamBerlinBernRomeStockholmVienna - - - - - UtcPlus0100BrusselsCopenhagenMadridParis - - - - - UtcPlus0100SarajevoSkopjeWarsawZagreb - - - - - UtcPlus0100BelgradeBratislavaBudapestLjubljanaPrague - - - - - UtcPlus0200AthensBucharest - - - - - UtcPlus0200HararePretoria - - - - - UtcPlus0200Jerusalem - - - - - UtcPlus0200Cairo - - - - - UtcPlus0200HelsinkiKievRigaSofiaTallinnWilna - - - - - UtcPlus0200EasternEurope - - - - - UtcPlus0200Istanbul - - - - - UtcPlus0300Baghdad - - - - - UtcPlus0300KuwaitRiyadh - - - - - UtcPlus0300Nairobi - - - - - UtcPlus0330Teheran - - - - - UtcPlus0300Qatar - - - - - UtcPlus0400AbuDhabiMuscat - - - - - UtcPlus0400Baku - - - - - UtcPlus0400Tbilisi - - - - - UtcPlus0430Kabul - - - - - UtcPlus0500IslamabadKarachi - - - - - UtcPlus0500AshgabatTashkent - - - - - UtcPlus0530MumbaiKolkataChennaiNewDelhi - - - - - UtcPlus0545Nepal - - - - - UtcPlus0600Astana - - - - - UtcPlus0630YangonRangoon - - - - - UtcPlus0700BangkokHanoiJakarta - - - - - UtcPlus0800BeijingChongqingHongKongUrumchi - - - - - UtcPlus0800Perth - - - - - UtcPlus0900Irkutsk - - - - - UtcPlus0930AdelaideDarwin - - - - - UtcPlus0930Darwin - - - - - UtcPlus1000BrisbaneCanberraMelbourneSydney - - - - - UtcPlus1000CanberraMelbourneSydney - - - - - UtcPlus1000GuamPortMoresby - - - - - UtcPlus1000Hobart - - - - - UtcPlus1100SolomonIslandsNewCaledonia - - - - - UtcPlus1100Vladivostok - - - - - UtcPlus1200AucklandWellington - - - - - UtcPlus1100Magadan - - - - - UtcPlus1200Fiji - - - - - UtcMinus1100MidwayIslands - - - - - UtcMinus0700ChihuahuaLaPazMazatlan - - - - - UtcMinus0600CentralAmerica - - - - - UtcMinus0400Asuncion - - - - - UtcMinus0400AtlanticStandardTimeCanada - - - - - UtcMinus0400Cuiaba - - - - - UtcMinus0400Santiago - - - - - UtcMinus0300CayenneFortaleza - - - - - UtcMinus0300Greenland - - - - - UtcMinus0300Montevideo - - - - - UtcMinus0300Salvador - - - - - UtcMinus0200MidMinusatlantic - - - - - UtcCoordinatedUniversalTime - - - - - UtcPlus0100TripoliOld - - - - - UtcPlus0100WestCentralAfrica - - - - - UtcPlus0100Windhoek - - - - - UtcPlus0200Beirut - - - - - UtcPlus0200Damascus - - - - - UtcPlus0300AmmanOld - - - - - UtcPlus0300KaliningradMinsk - - - - - UtcPlus0400Yerevan - - - - - UtcPlus0400PortLouis - - - - - UtcPlus0530SriJayawardenepura - - - - - UtcPlus0600Daka - - - - - UtcPlus0600Yekaterinburg - - - - - UtcPlus0700Novosibirsk - - - - - UtcPlus0800Krasnoyarsk - - - - - UtcPlus0800KualaLumpurSingapore - - - - - UtcPlus0800Taipei - - - - - UtcPlus0800UlaanbaatarUlanBator - - - - - UtcPlus0900OsakaSapporoTokyo - - - - - UtcPlus0900Seoul - - - - - UtcPlus1000Yakutsk - - - - - UtcPlus1200CoordinatedUniversalTimePlus12 - - - - - UtcPlus1300Nukualofa - - - - - UtcPlus0100Tripoli - - - - - UtcPlus0300Amman - - - - - Possible values for property TimeOfDayStandardTimeStartHour - - - - - Midnight - - - - - Value0100AM - - - - - Value0200AM - - - - - Value0300AM - - - - - Value0400AM - - - - - Value0500AM - - - - - Value0600AM - - - - - Value0700AM - - - - - Value0800AM - - - - - Value0900AM - - - - - Value1000AM - - - - - Value1100AM - - - - - Value1200PM - - - - - Value0100PM - - - - - Value0200PM - - - - - Value0300PM - - - - - Value0400PM - - - - - Value0500PM - - - - - Value0600PM - - - - - Value0700PM - - - - - Value0800PM - - - - - Value0900PM - - - - - Value1000PM - - - - - Value1100PM - - - - - Possible values for property TimeOfDayStandardTimeStartMonth - - - - - None - - - - - January - - - - - February - - - - - March - - - - - April - - - - - May - - - - - June - - - - - July - - - - - August - - - - - September - - - - - October - - - - - November - - - - - December - - - - - Possible values for property TimeOfDayStandardTimeStartWeek - - - - - None - - - - - First - - - - - Second - - - - - Third - - - - - Fourth - - - - - Last - - - - - Possible values for property TimeOfDayStandardTimeStartWeekday - - - - - None - - - - - Sunday - - - - - Monday - - - - - Tuesday - - - - - Wednesday - - - - - Thursday - - - - - Friday - - - - - Saturday - - - - - Possible values for property TimeOfDayTimeIntervalOnDp - - - - - None - - - - - Value1Second - - - - - Value10Seconds - - - - - Value1Minute - - - - - Value10Minutes - - - - - Value1Hour - - - - - Value12Hours - - - - - Value24Hours - - - - - Possible values for property TimeOfDayTypeOfSynchronizationOnDp - - - - - None - - - - - AsMaster - - - - - AsSlave - - - - - Possible values for property TimeSynchronizationNtp - - - - - Deactivated - - - - - Active - - - - - Possible values for property Timer1Type - - - - - WithClosingDelay - - - - - ClosingDelayWithMemory - - - - - WithOpeningDelay - - - - - WithFleetingClosing - - - - - Possible values for property Timer2Type - - - - - WithClosingDelay - - - - - ClosingDelayWithMemory - - - - - WithOpeningDelay - - - - - WithFleetingClosing - - - - - Possible values for property Timer3Type - - - - - WithClosingDelay - - - - - ClosingDelayWithMemory - - - - - WithOpeningDelay - - - - - WithFleetingClosing - - - - - Possible values for property Timer4Type - - - - - WithClosingDelay - - - - - ClosingDelayWithMemory - - - - - WithOpeningDelay - - - - - WithFleetingClosing - - - - - Possible values for property Timer5Type - - - - - WithClosingDelay - - - - - ClosingDelayWithMemory - - - - - WithOpeningDelay - - - - - WithFleetingClosing - - - - - Possible values for property Timer6Type - - - - - WithClosingDelay - - - - - ClosingDelayWithMemory - - - - - WithOpeningDelay - - - - - WithFleetingClosing - - - - - Possible values for property TraceTriggerEdge - - - - - Positive - - - - - Negative - - - - - Addressmapping between local I-Slave / I-device and remote partner - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Local addresses of a transfer area - - - - - - EOM parent of this object - - - - - - Partner addresses of a transfer area - - - - - - Mapping rules for transfer areas - - - - - - Direction of data communication between local and partner device - - - - - - Subslotnumber / Slotnumber of transfer area - - - - - - Length of transferred data from local to partner device - - - - - - Name of the transfer area - - - - - - Length of transferred data from partner to local device - - - - - - Subslotnumber / Slotnumber of transfer area - - - - - - Transfer area type - - - - - - Composition of transfer areas - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create a transfer area - - Name of the transfer area - Type of transfer area - Siemens.Engineering.HW.TransferArea - - - - Create a transfer area - - Name of the transfer area - Type of transfer area - Slotnumber of transfer area - Siemens.Engineering.HW.TransferArea - - - - Find a transfer area by position number - - Subslotnumber / Slotnumber of transfer area - Siemens.Engineering.HW.TransferArea - - - - Find a transfer area by position number - - Slotnumber of transfer area - Subslotnumber of transfer area - Siemens.Engineering.HW.TransferArea - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Direction of data communication between local and partner device - - - - - None - - - - - Transfer data from local device to partner device - - - - - Transfer data from partner device to local device - - - - - Bidirectional mapping between local and partner device - - - - - Mapping rule for transfer area - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Bit address of the begin of the mapped data - - - - - - Bit address of the end of the mapped data - - - - - - Type of data to be mapped (Input or Output) - - - - - - Offset of the transfered data - - - - - - Transfer area mapping rule number - - - - - - I/O module or sub-module to be mapped - - - - - - Mapping rules for transfer areas - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Mapping rules for transfer areas - - Siemens.Engineering.HW.TransferAreaMappingRule - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Type of transfer area - - - - - Default value - - - - - Master - Slave transfer area - - - - - Controller - Device transfer area - - - - - F - PROFIsafe transfer area - - - - - Transfer mapping rule - - - - - Transfer area Input - - - - - Transfer area Output - - - - - Transfer area Shared Input (MSI) - - - - - Transfer area Shared Output (MSO) - - - - - Transfer area Local Shared Output (MSO_LOCAL) - - - - - Transfer area for Record Data Write up to 8 data records will be buffered - - - - - Transfer area for Record Data Write overwrites previous data record - - - - - Transfer area for Record Data Read reads the oldest data record in the buffer - - - - - Transfer area for Record Data Read reads data record written last - - - - - Transfer area Shared Input (MSI) / Transfer area Shared Output (MSO) - - - - - Transfer area Input / Transfer area Output - - - - - Transfer area for local data record coupling, up to 8 data records are buffered - - - - - Transfer area for local data record coupling, overwrites previous data record - - - - - Transfer area copy of Shared Input (MSI) - - - - - Transfer area copy of Shared Output (MSO) - - - - - Transfer area for Record Data Read for reading the oldest data record in the buffer - - - - - Transfer area for Record Data Read for reading the most recently written data record - - - - - Transfer area with 12 byte input and 6 byte output - - - - - Transfer area with 6 byte input and 12 byte output - - - - - F-Proxy: PROFIsafe Controller-Device transfer area - - - - - Direct Data Exchange - - - - - Possible values for property TransmissionRate - - - - - Value125kHz - - - - - Value250kHz - - - - - Value500kHz - - - - - Value1MHz - - - - - Value15MHz - - - - - Value2MHz - - - - - Possible values for property TransmissionRateAndDuplex - - - - - None - - - - - AUI10Mbps - - - - - Automatic - - - - - TP10MbpsHalfDuplex - - - - - TP10MbpsFullDuplex - - - - - AsyncFiber10MbpsHalfDuplex - - - - - AsyncFiber10MbpsFullDuplex - - - - - TP100MbpsHalfDuplex - - - - - TP100MbpsFullDuplex - - - - - FO100MbpsFullDuplex - - - - - X1000MbpsFullDuplex - - - - - FO1000MbpsFullDuplexLD - - - - - FO1000MbpsFullDuplex - - - - - TP1000MbpsFullDuplex - - - - - FO10000MbpsFullDuplex - - - - - FO100MbpsFullDuplexLD - - - - - POFPCF100MbpsFullDuplex - - - - - Possible values for property TripLevelActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpfOn - - - - - IfMotorIsRunningExceptTpf - - - - - Possible values for property TrippingClass - - - - - Class10 - - - - - Class20 - - - - - Class510A - - - - - Class15 - - - - - ClassOff - - - - - Possible values for property TypeInputS1 - - - - - Nc - - - - - Ncc - - - - - No - - - - - Noc - - - - - Open - - - - - Close - - - - - Possible values for property TypeInputS2 - - - - - Nc - - - - - Ncc - - - - - No - - - - - Noc - - - - - Open - - - - - Close - - - - - Possible values for property TypeInputS3 - - - - - Nc - - - - - Ncc - - - - - No - - - - - Noc - - - - - Open - - - - - Close - - - - - Possible values for property TypeOfConsumerLoad - - - - - Motor - - - - - ResistiveLoad - - - - - Possible values for property UnitsOfMeasure - - - - - Deactivated - - - - - Mm3DecimalPlaces - - - - - Inch4DecimalPlaces - - - - - Degrees4DecimalPlaces - - - - - Degrees2DecimalPlaces - - - - - Pulses - - - - - Degrees3DecimalPlaces - - - - - Degrees - - - - - DegreesPerSecond - - - - - DegreesCelsius - - - - - DegreesFahrenheit - - - - - MicroMeter - - - - - OnePerMinute - - - - - OnePerSecond - - - - - Ampere - - - - - At - - - - - Atm - - - - - Bar - - - - - BarPerd - - - - - BarPerHour - - - - - BarPerMinute - - - - - BarPerSecond - - - - - Cd - - - - - Cm - - - - - CubiccmPerd - - - - - CubiccmPerHour - - - - - CubiccmPerMinute - - - - - CubiccmPerSecond - - - - - Cp - - - - - Cubicdm - - - - - Dyn - - - - - Fc - - - - - Ft - - - - - FtLb - - - - - FtPerH - - - - - FtPerMinute - - - - - FtPerSecond - - - - - Squareft - - - - - Cubicft - - - - - CubicftPerd - - - - - CubicftPerHour - - - - - CubicftPerMinute - - - - - CubicftPerSecond - - - - - G - - - - - GPerCubiccm - - - - - GPerml - - - - - Gal - - - - - GalPerd - - - - - GalPerHour - - - - - GalPermin - - - - - GalPerSecond - - - - - GradPerSecond - - - - - Hp - - - - - HPa - - - - - Hz - - - - - In - - - - - InPerHour - - - - - InPerMinute - - - - - InPerSecond - - - - - Squarein - - - - - Cubicin - - - - - K - - - - - Kg - - - - - KgPerMeterSecond - - - - - KgPerl - - - - - KgfSecondPerSquareMeter - - - - - KgPerCubicm - - - - - Km - - - - - KmPerHour - - - - - KW - - - - - L - - - - - LPerd - - - - - LPerHour - - - - - LPerMinute - - - - - LPerSecond - - - - - Lb - - - - - LbPerftSecond - - - - - LbPerbu - - - - - LbPerd - - - - - LbPerGal - - - - - LbPerHour - - - - - LbPerCubicin - - - - - LbPerMinute - - - - - LbPerSecond - - - - - LbPerCubicyd - - - - - LbfHourPerSquareft - - - - - LbfSecondPerSquareFt - - - - - Lux - - - - - Meter - - - - - MeterPerMinute - - - - - MeterPerSecond - - - - - SquareMeter - - - - - SquareMeterPerSecond - - - - - CubicMeter - - - - - CubicMeterPerd - - - - - CubicMeterPerHour - - - - - CubicMeterPerMinute - - - - - CubicMeterPerSecond - - - - - Mile - - - - - SquareMile - - - - - Mm - - - - - MmPerSecond - - - - - SquareMilliMeter - - - - - N - - - - - Nm - - - - - NsPerSquareMeter - - - - - Oz - - - - - OzPerCubicin - - - - - P - - - - - Pa - - - - - PaSeconds - - - - - Pl - - - - - Psi - - - - - Rad - - - - - RadPerSecond - - - - - T - - - - - Ton - - - - - Torr - - - - - V - - - - - VA - - - - - W - - - - - Squareyd - - - - - Cubicyd - - - - - Barrel - - - - - USBarrel - - - - - BarrelBeer - - - - - Bushel - - - - - Centiliter - - - - - AcreFeet - - - - - CubicCentimeter - - - - - FluidOunce - - - - - GalUk - - - - - Hectoliter - - - - - Carat - - - - - Kl - - - - - TroyPound - - - - - Milligram - - - - - Megagram - - - - - CubicMiles - - - - - Milliliter - - - - - CubicMillimeter - - - - - Normliter - - - - - NormCubicMeter - - - - - TroyOunce - - - - - Pint - - - - - Quart - - - - - Scf - - - - - StandardLiter - - - - - StandardCubicMeter - - - - - TonUk - - - - - Possible values for property UpperCurrentWarningLimit - - - - - None - - - - - Value50 - - - - - Value53Dot13 - - - - - Value56Dot25 - - - - - Value59Dot38 - - - - - Value62Dot50 - - - - - Value65Dot63 - - - - - Value68Dot75 - - - - - Value71Dot88 - - - - - Value75 - - - - - Value78Dot13 - - - - - Value81Dot25 - - - - - Value84Dot38 - - - - - Value87Dot50 - - - - - Value90Dot63 - - - - - Value93Dot75 - - - - - Value96Dot88 - - - - - Value100 - - - - - Value103Dot13 - - - - - Value106Dot25 - - - - - Value109Dot38 - - - - - Value112Dot50 - - - - - Value115Dot63 - - - - - Value118Dot75 - - - - - Value121Dot88 - - - - - Value125 - - - - - Value128Dot13 - - - - - Value131Dot25 - - - - - Value134Dot38 - - - - - Value137Dot50 - - - - - Value140Dot63 - - - - - Value143Dot75 - - - - - Value146Dot88 - - - - - Value150 - - - - - Value153Dot13 - - - - - Value156Dot25 - - - - - Value159Dot38 - - - - - Value162Dot50 - - - - - Value165Dot63 - - - - - Value168Dot75 - - - - - Value171Dot88 - - - - - Value175 - - - - - Value178Dot13 - - - - - Value181Dot25 - - - - - Value184Dot38 - - - - - Value187Dot50 - - - - - Value190Dot63 - - - - - Value193Dot75 - - - - - Value196Dot88 - - - - - Value200 - - - - - Value203Dot13 - - - - - Value206Dot25 - - - - - Value209Dot38 - - - - - Value212Dot50 - - - - - Value215Dot63 - - - - - Value218Dot75 - - - - - Value221Dot88 - - - - - Value225 - - - - - Value228Dot13 - - - - - Value231Dot25 - - - - - Value234Dot38 - - - - - Value237Dot50 - - - - - Value240Dot63 - - - - - Value243Dot75 - - - - - Value246Dot88 - - - - - Value250 - - - - - Value253Dot13 - - - - - Value256Dot25 - - - - - Value259Dot38 - - - - - Value262Dot50 - - - - - Value265Dot63 - - - - - Value268Dot75 - - - - - Value271Dot88 - - - - - Value275 - - - - - Value278Dot13 - - - - - Value281Dot25 - - - - - Value284Dot38 - - - - - Value287Dot50 - - - - - Value290Dot63 - - - - - Value293Dot75 - - - - - Value296Dot88 - - - - - Value300 - - - - - Value303Dot13 - - - - - Value306Dot25 - - - - - Value309Dot38 - - - - - Value312Dot50 - - - - - Value315Dot63 - - - - - Value318Dot75 - - - - - Value321Dot88 - - - - - Value325 - - - - - Value328Dot13 - - - - - Value331Dot25 - - - - - Value334Dot38 - - - - - Value337Dot50 - - - - - Value340Dot63 - - - - - Value343Dot75 - - - - - Value346Dot88 - - - - - Value350 - - - - - Value353Dot13 - - - - - Value356Dot25 - - - - - Value359Dot38 - - - - - Value362Dot50 - - - - - Value365Dot63 - - - - - Value368Dot75 - - - - - Value371Dot88 - - - - - Value375 - - - - - Value378Dot13 - - - - - Value381Dot25 - - - - - Value384Dot38 - - - - - Value387Dot50 - - - - - Value390Dot63 - - - - - Value393Dot75 - - - - - Value396Dot88 - - - - - Value400 - - - - - The list of possible views in the HW editor - - - - - Device value - - - - - Network view of HW editor - - - - - Topology view of HW editor - - - - - Possible values for property VirtualSubType - - - - - Empty - - - - - MsoLocal - - - - - MsoSub - - - - - Possible values for property VirtualType - - - - - Empty - - - - - MsoLocal - - - - - Possible values for property VoltageDisplay - - - - - PhaseVoltage - - - - - LineToLineVoltage - - - - - Possible values for property VoltageLowerTripLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Trip - - - - - Possible values for property VoltageLowerWarningLevelActiveStatus - - - - - AlwaysOn - - - - - AlwaysExceptWithTpfOn - - - - - IfMotorIsRunningExceptTpf - - - - - Possible values for property VoltageLowerWarningLevelResponse - - - - - Deactivated - - - - - Signal - - - - - Warn - - - - - Possible values for property VoltageState - - - - - NoStatusAvailable - - - - - StatusOfSupplyVoltageLPlus - - - - - StatusOfSupplyVoltageLPlusAndFeedbackVoltage - - - - - Possible values for property VoltageTypeOfLoadForVoltageCosPhiAndPower - - - - - TriPhase - - - - - OnePhase - - - - - Possible values for property VolumeFlowUnit - - - - - MicroBarrelPerDay - - - - - MicroBarrelPerHour - - - - - MicroBarrelPerMinute - - - - - MicroBarrelPerSecond - - - - - MicroGalUKPerDay - - - - - MicroGalUKPerHour - - - - - MicroGalUKPerMinute - - - - - MicroGalUKPerSecond - - - - - MicroGalPerDay - - - - - MicroGalPerHour - - - - - MicroGalPerMinute - - - - - MicroGalPerSecond - - - - - MicroCubicmeterPerDay - - - - - MicroCubicmeterPerHour - - - - - MicroCubicmeterPerMinute - - - - - MicroCubicmeterPerSecond - - - - - AcreFeetPerDay - - - - - AcreFeetPerHour - - - - - AcreFeetPerMinute - - - - - AcreFeetPerSecond - - - - - USBarrelPerSecond - - - - - USBarrelPerDay - - - - - USBarrelPerHour - - - - - USBarrelPerMinute - - - - - BarrelPerDay - - - - - BarrelPerHour - - - - - BarrelPerMinute - - - - - BarrelPerSecond - - - - - BarrelBeerPerDay - - - - - BarrelBeerPerHour - - - - - BarrelBeerPerMinute - - - - - BarrelBeerPerSecond - - - - - BushelPerDay - - - - - BushelPerHour - - - - - BushelPerMinute - - - - - BushelPerSecond - - - - - CubiccmPerDay - - - - - CubiccmPerHour - - - - - CubiccmPerMinute - - - - - CubiccmPerSecond - - - - - FluidOuncePerDay - - - - - FluidOuncePerHour - - - - - FluidOuncePerMinute - - - - - FluidOuncePerSecond - - - - - MegalitersPerDay - - - - - CubicFeetPerDay - - - - - CubicFeetPerHour - - - - - CubicFeetPerMinute - - - - - CubicFeetPerSecond - - - - - GalUKPerDay - - - - - GalUKPerHour - - - - - GalUKPerMinute - - - - - GalUKPerSecond - - - - - GalPerDay - - - - - GalPerHour - - - - - GalPerMinute - - - - - GalPerSecond - - - - - HektorliterPerDay - - - - - HektorliterPerHour - - - - - HektorliterPerMinute - - - - - HektorliterPerSecond - - - - - CubicInchPerDay - - - - - CubicInchPerHour - - - - - CubicInchPerMin - - - - - CubicInchPerSecond - - - - - KilobarrelPerDay - - - - - KilobarrelPerHour - - - - - KilobarrelPerMinute - - - - - KilobarrelPerSecond - - - - - KiloGalUKPerDay - - - - - KiloGalUKPerHour - - - - - KiloGalUKPerMinute - - - - - KiloGalUKPerSecond - - - - - KiloGalPerDay - - - - - KiloGalPerHour - - - - - KiloGalPerMinute - - - - - KiloGalPerSecond - - - - - KlPerDay - - - - - KlPerHour - - - - - KlPerMinute - - - - - KlPerSecond - - - - - CubicKmPerDay - - - - - CubicKmPerHour - - - - - CubicKmPerMinute - - - - - CubicKmPerSecond - - - - - LitrePerDay - - - - - LitrePerHour - - - - - LitrePerMinute - - - - - LitrePerSecond - - - - - CubicmeterPerDay - - - - - CubicmeterPerHour - - - - - CubicmeterPerMinute - - - - - CubicmeterPerSecond - - - - - MilibarrelPerDay - - - - - MegabarrelPerDay - - - - - MilibarrelPerHour - - - - - MegabarrelPerHour - - - - - MilibarrelPerMinute - - - - - MegabarrelPerMinute - - - - - MilibarrelPerSecond - - - - - MegabarrelPerSecond - - - - - BegafeetPerDay - - - - - MiligalUKPerDay - - - - - MegagalUKPerDay - - - - - MiligalUKPerHour - - - - - MegagalUKPerHour - - - - - MiligalUKPerMinute - - - - - MegagalUKPerMinute - - - - - MiligalUKPerSecond - - - - - MegagalUKPerSecond - - - - - MiligalPerDay - - - - - MegagalPerDay - - - - - MiligalPerHour - - - - - MegagalPerHour - - - - - MiligalPerMinute - - - - - MegagalPerMinute - - - - - MiligalPerSecond - - - - - MegagalPerSecond - - - - - MililiterPerDay - - - - - MililiterPerHour - - - - - MililiterPerMinute - - - - - MililiterPerSecond - - - - - CubicmmPerDay - - - - - CubicmmPerHour - - - - - CubicmmPerMinute - - - - - CubicmmPerSecond - - - - - CubicyardPerDay - - - - - CubicyardPerHour - - - - - CubicyardPerMinute - - - - - CubicyardPerSecond - - - - - MillionCubicMeterPerSecond - - - - - MillionCubicMeterPerMinute - - - - - MillionCubicMeterPerHour - - - - - MillionCubicMeterPerDay - - - - - MillionCubicFeetPerDay - - - - - Possible values for property VolumeUnit - - - - - AF - - - - - Bbl - - - - - BblUS - - - - - BblBeer - - - - - Bu - - - - - Cl - - - - - Cm - - - - - Dm - - - - - FlOz - - - - - Ft - - - - - Gal - - - - - GalUk - - - - - Hl - - - - - CubicIn - - - - - Kl - - - - - L - - - - - CubicM - - - - - CubicMiles - - - - - Ml - - - - - Cubicmm - - - - - Pints - - - - - Quart - - - - - CubicYd - - - - - Possible values for WebAccess - - - - - None - - - - - Read - - - - - Write - - - - - Represents a Watch Table Access Rule - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents web server access - - - - - - Represents Plc WatchTable - - - - - - Composition of Watch Table Access - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates a WatchTableAccessRule - - Represents Plc WatchTable - Represents web server access - Siemens.Engineering.HW.WatchTableAccessRule - - - - Finds a given WatchTableAccessRule by PlcWatchTable - - Watch Table - Siemens.Engineering.HW.WatchTableAccessRule - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Possible values for property WatchdogBusPLCFaultReset - - - - - Manual - - - - - Auto - - - - - Possible values for property WebserverEntryPage - - - - - IntroPage - - - - - Awp1 - - - - - Represents a WebserverUser - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Set Password for Web server user - - Password of User - user password violates the security setting password policy - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents webserver permission for WebserverUser - - - - - - The name of the WebServer User - - - - - - Represent list of Webserver Users - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates the webserver user - - Username of webserver user - Web server permission for WebserverUser - Password of the webserver user - Siemens.Engineering.HW.WebserverUser - - - - Finds a given webserver user - - Username of webserver user - Siemens.Engineering.HW.WebserverUser - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents Webserver User Permissions - - - - - no rights at all - - - - - DoDiagnosis WebserverUserPermission - - - - - ReadTag WebserverUserPermission - - - - - ModifyTag WebserverUserPermission - - - - - ReadTagStatus WebserverUserPermission - - - - - ModifyTagStatus WebserverUserPermission - - - - - AcknowledgeMessages WebserverUserPermission - - - - - OpenUserDefinedWebPages WebserverUserPermission - - - - - WriteUserDefinedWebPages WebserverUserPermission - - - - - ReadFiles WebserverUserPermission - - - - - ModifyFiles WebserverUserPermission - - - - - ChangeOperatingMode WebserverUserPermission - - - - - FlashLed WebserverUserPermission - - - - - WriteFirmware WebserverUserPermission - - - - - ChangeSystemParameter WebserverUserPermission - - - - - ChangeApplicationParameter WebserverUserPermission - - - - - Backup WebserverUserPermission - - - - - Restore WebserverUserPermission - - - - - FAdmin WebserverUserPermission - - - - - ManageUserDefinedWebPages WebserverUserPermission - - - - - Represents Webserver User Permissions - - - - - no rights at all - - - - - DoDiagnosis WebserverUserPermission - - - - - ReadTag WebserverUserPermission - - - - - ModifyTag WebserverUserPermission - - - - - ReadTagStatus WebserverUserPermission - - - - - ModifyTagStatus WebserverUserPermission - - - - - AcknowledgeMessages WebserverUserPermission - - - - - OpenUserDefinedWebPages WebserverUserPermission - - - - - WriteUserDefinedWebPages WebserverUserPermission - - - - - ReadFiles WebserverUserPermission - - - - - ModifyFiles WebserverUserPermission - - - - - ChangeOperatingMode WebserverUserPermission - - - - - FlashLed WebserverUserPermission - - - - - WriteFirmware WebserverUserPermission - - - - - ChangeTimeSettings WebserverUserPermission - - - - - DownloadServiceData WebserverUserPermission - - - - - Backup WebserverUserPermission - - - - - Restore WebserverUserPermission - - - - - FAdmin WebserverUserPermission - - - - - ManageUserDefinedWebPages WebserverUserPermission - - - - - ChangeWebserverDefaultPage WebserverUserPermission - - - - - ReadAbsoluteAddresses WebserverUserPermission - - - - - WriteAbsoluteAddresses WebserverUserPermission - - - - - Possible values for property WithBlockCheck - - - - - Deactivated - - - - - Activated - - - - - Represents custom data type attribute (StructuredData) on hardware object. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Composition of Structured Data - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates a new empty row - - Siemens.Engineering.HW.CustomDataTypes.StructuredData - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents Complex data in the form of Table - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Collection of Structured Data - - - - - - Information about a free slot. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The label of the free slot. - - - - - - The position number of the free slot - - - - - - Address controller device - - - - - Base class for all DeviceItem related services - - - - - Base class for all HW related services - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - DeviceItem Object that owns this role - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Associated registered address - - - - - - Associated address controllers - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Service for PLC dynamic certificate configurations - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition for CertificateSupportedServices - - - - - - Enable or Disable the Certificate expiration setting of the Certificate Management Configuration . - - - - - - Get or Set the value for showing event for remaining certificate life time of the Certificate Management Configuration - - - - - - Gets or sets the Usage of the Certificate Management Configuration . This property allows two options user to choose either certificates configured and download using TIA Portal or certificates provided by certificate management during runtime - - - - - - Base class for all Device related services - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Device Object that owns this role - - - - - - Represents the Display Protection Service - - - - - Sets password for display - - password for display - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Represents the Front Panel Display - - - - - Sets the Logo on the Display - - Specifies the file info of the logo - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Adapt the logo to the display - - - - - - Activate or deactivate the User Defined Logo - - - - - - Represents a Gsd device - - - - - Properties of a Gsd hardware object - - - - - The Gsd ID of the Gsd object - - - - - - The Gsd Name of the Gsd object - - - - - - The Gsd Type of the Gsd object - - - - - - Indicates if this Gsd device item supports Profibus - - - - - - Indicates if this Gsd object supports Profinet - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - The Gsd ID of the Gsd object - - - - - - The Gsd Name of the Gsd object - - - - - - The Gsd Type of the Gsd object - - - - - - Indicates if this Gsd device item supports Profibus - - - - - - Indicates if this Gsd object supports Profinet - - - - - - Represents a Gsd device item - - - - - Returns the Prm Data for this Gsd device item - - Specifies which dsNumber to set the Prm Data to this Gsd device item - The byte offset - Specifies which length to get the Prm Data from this Gsd device item - System.Byte[] - - - - Sets the Prm Data for this Gsd device item - - Specifies which dsNumber to set the Prm Data to this Gsd device item - The byte offset - Specifies which Prm data is to be set to this Gsd device item - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - The Gsd ID of the Gsd object - - - - - - The Gsd Name of the Gsd object - - - - - - The Gsd Type of the Gsd object - - - - - - Indicates if this Gsd device item supports Profibus - - - - - - Indicates if this Gsd object supports Profinet - - - - - - Represents a HW identifier controller - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Associated registered HW identifiers - - - - - - Associated Hw identifier controllers - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents the IM connection - - - - - Connects to the partner port - - Specifies which partner port to which the connection needs to be established - - - - Disconnects from the partner port - - - - - Gets the partner port details - - Siemens.Engineering.HW.DeviceItem - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Represents the ModuleDescriptionUpdater - - - - - Update module description of the deviceItem or deviceItems - - System.Boolean - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Exists a new version of deviceitem to update - - - - - - Represents a Mrp Domain owner - - - - - Base class for Subnet related services - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Subnet Object that owns this role - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of Mrp Domain - - - - - - EOM parent of this object - - - - - - Represents a HW interface - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of IO connectors - - - - - - Composition of IO controllers - - - - - - Composition of multicastable transfer areas - - - - - - Composition of nodes - - - - - - Composition of transfer areas - - - - - - The operating mode of this interface - - - - - - The type of this interface - - - - - - Associated ports - - - - - - Association of Network Interfaces - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Adds an . - - The item to be added. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a port on a device item - - - - - Connects to the Port - - The partner port to be disconnected - - - - Disconnects a device from the given port - - The partner port to be disconnected - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Internal use only - - - - - - The interface supported by this port - - - - - - Associated ports - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a OpcUa User Management - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of OpcUaUsers - - - - - - Interface Assignment Provider - - - - - Assign interface to one of the following( None, PC Station) - - assignment type for interface - - - - Assign interface to Software PLC - - assignment type for interface - if interface assignment will be to CPU, provide cpu device item - - - - Get available IPC expansion list that can be selected - - System.Collections.Generic.IEnumerable<System.String> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Get or set hardware resource of interface - - - - - - Get or set hardware IPC Expansion of interface - - - - - - Returns type of interface assignment - - - - - - Returns cpu DeviceItem - - - - - - Represents the Access Control Configuration of the PLC 3.1 onwards - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - To set the Access Control Configuration of the PLC - - - - - - Represents the Access level of the PLC Plus - - - - - Reset the password for the specific Access Level Type - - Specifies the Access level type - - - - set the password for the specific Access Level Type - - Specifies the protection Access level type - Specifies the password for the access level type - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - To set the protection access level type - - - - - - Represents the Master Secret configuration for the PLC - - - - - Change the Master Secret key for the protected PLC - - Specifies the old master secret key - Specifies the new master secret key - - - - Protect the PLC with the Master Secret key(password) - - Specifies the Master Secret key - - - - Removes PLC configuration data from the TIA Portal project and the PLC - - - - - Unprotects the PLC configuration data from the TIA Portal project and the PLC - - - - - Unprotects the PLC configuration data from the TIA Portal project and the PLC - - Specifies the Master Secret password - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Indicates the PLC protection type - - - - - - Represent the webserver usermanagement - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of webserver users - - - - - - Represents a class containing software components - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the software target containing the software elements of the device - - - - - - Represents a Subnet owner - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of Subnets - - - - - - Represents a Sync Domain owner - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Composition of Sync Domain - - - - - - The SysLogConfigurationManager Class, Provides information about system logging configuration and means to manipulate the configuration. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Represents composition of all the server configurations of the system logging configurations. - - - - - - Enable or Disable the System Logging setting of the SysLog Configuration. - - - - - - Gets or sets the Transport Protocol of the System Logging Configuration. - - - - - - Represents server configuration of the system logging configurations. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents server address of the server configuration. - - - - - - Represents port number of the server configuration. - - - - - - Represents composition all the server configurations of the system logging configurations. - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates Server Configuation for syslog - - Represents server address of the server configuration. - Represents port number of the server configuration. - Siemens.Engineering.HW.Features.SysLogServerConfiguration - - - - Find SysLog Server details by Address - - Server Address - Siemens.Engineering.HW.Features.SysLogServerConfiguration - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a Webserver watch And forceTables - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of ForcetableAccess - - - - - - Composition of Watch Table Access Rules - - - - - - The list of possible generate options for actions - - - - - Throw if exists - - - - - Override existing - - - - - Represents the Web Server user defined pages service - - - - - Generate blocks - - Options to use for Generate - System.Collections.Generic.IList<Siemens.Engineering.SW.Blocks.PlcBlock> - - - - Generate blocks - - HTML directory of the webpage - Default HTML page file - The application name - Options to use for Generate - System.Collections.Generic.IList<Siemens.Engineering.SW.Blocks.PlcBlock> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Represent the webserver usermanagement - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of webserver users - - - - - - Hardware Catalog Entry - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Article number of hardware object - - - - - - CatalogPath of item - - - - - - Hardware catalog entry's description - - - - - - TypeIdentifier of item - - - - - - Normalized TypeIdentifier of item - - - - - - Type name of the device - - - - - - Hardware catalog entry's version - - - - - - HardwareCatalog related features implemented here - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - This action finds hardware catalog entries - - filter string - System.Collections.Generic.IList<Siemens.Engineering.HW.HardwareCatalog.CatalogEntry> - - - - This action filter the search result for compatible/pluggable devices filtered for a given TypeIdentifier. - - filter string - typeidentiifer string - System.Collections.Generic.IList<Siemens.Engineering.HW.HardwareCatalog.CatalogEntry> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - This class is used to export and import system diagnostics project relevant settings - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - This method is used to export system diagnostics project relevant settings - - Path for system diagnostics settings export file - Siemens.Engineering.HW.Systemdiagnostics.Settings.SystemdiagnosticsSettingsExportImportResult - - - - This method is used to import system diagnostics project relevant settings - - Path for system diagnostics settings import file - Siemens.Engineering.HW.Systemdiagnostics.Settings.SystemdiagnosticsSettingsExportImportResult - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Result of an diagnostic class export or import - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Result state of the process - - - - - - Result state of system diagnostics settings export or import - - - - - Succesful process - - - - - Succesful process with warnings - - - - - Failed process - - - - - Card reader provider utility for .psc file - - - - - Abstract base class for all extensions to the HW model - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Identifier for this HW extension - - - - - - Exports device configuration to file - - device to be exported - file name that will be saved(*.psc) - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Composition of HardwareUtilities - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a given extension - - Identifier to find - Siemens.Engineering.HW.Utilities.HardwareUtility - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Service provider for module information - - - - - Finds the possible container types - - The type identifier to use to find a given container type - System.String[] - - - - Finds the possible module types - - The partial type identifier to be used to find a given module type - System.String[] - - - - Gets the TypeIdentifierNormalized - - The type identifier to be used to get TypeIdentifierNormalized - System.String - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Service provider for export of OPC UA - - - - - Simatic ML export of a OPC UA - - The device item to be exported - Path to the export file - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents the target device - - - - - Scope of the project to search when performing a 'Find instances in project' operation - - - - - Represents the scope of the project that may be updated - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Simatic ML import of screen global elements - - Path to the Simatic ML file - Options to use for Import - - - - Simatic ML import of a screen overview - - Path to the Simatic ML file - Options to use for Import - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of connections - - - - - - Composition of cycles - - - - - - Composition of graphic lists - - - - - - Gets the Hmi screen system folder - - - - - - Gets the Hmi screen global elements - - - - - - Gets the Hmi screen overview - - - - - - System folder for the HMI pop-up screens - - - - - - System folder for the HMI slide-in screens - - - - - - Composition of screen template folders - - - - - - Gets the Hmi tag system folder - - - - - - Composition of text lists - - - - - - Gets the VBScript system folder - - - - - - Author of the device - - - - - - The name of the Hmi target - - - - - - Defines the available acknowledgment model. - - - - - Alarm without acknowledgment. - - - - - Alarm with single (incoming) acknowledgment. - - - - - Alarm with dual (incoming/outgoing) acknowledgment. - - - - - New value alarm with single acknowledgment and flashing function. - - - - - New value alarm with dual acknowledgment and flashing function. - - - - - Initial value alarm with single acknowledgment and flashing function. - - - - - Alarm without outgoing state and with acknowledgment. - - - - - Alarm without outgoing state and without acknowledgment. - - - - - Alarm acknowledgment modes. - - - - - Separate alarm acknowledgment hotkey. - - - - - Single alarm acknowledgment. - - - - - Defines the alignment of alarm block texts. - - - - - Align alarm block contents to center. - - - - - Align alarm block contents to left. - - - - - Align alarm block contents to right. - - - - - Defines different modes when hysteresis will become active. - - - - - Without hysteresis. - - - - - Effective when exceeding the limit. - - - - - Effective when falling below the limit. - - - - - Effective for both. - - - - - Defines different delay time units. - - - - - Delay time in milliseconds. - - - - - Delay time in seconds. - - - - - Delay time in minutes. - - - - - Delay time in hours. - - - - - Defines for different trigger conditions. - - - - - Limit value is lower limit. - - - - - Limit value is upper limit. - - - - - Equal to limit. - - - - - Not equal to limit. - - - - - ID for selected process value blocks. - - - - - Process value alarm block 1. - - - - - Process value alarm block 2. - - - - - Process value alarm block 3. - - - - - Process value alarm block 4. - - - - - Process value alarm block 5. - - - - - Process value alarm block 6. - - - - - Process value alarm block 7. - - - - - Process value alarm block 8. - - - - - Process value alarm block 9. - - - - - Process value alarm block 10. - - - - - Date format for system blocks. - - - - - Display date in Day/Month/Year syntax with 2-digit year. - - - - - Display date in Day/Month/Year syntax with 2-digit year. - - - - - Display date in Day/Month/Year syntax with 2-digit year. - - - - - Display date in Day/Month/Year syntax with 4-digit year. - - - - - Display date in Day/Month/Year syntax with 4-digit year. - - - - - Display date in Day/Month/Year syntax with 4-digit year. - - - - - Format of system block duration. - - - - - Display the duration in hours. - - - - - Display the duration in hours.minutes. - - - - - Display the duration in hours:minutes:seconds. - - - - - Display duration in days. - - - - - Display the duration in days and hours. - - - - - Display the duration in days and hours:minutes. - - - - - Display the duration in days and hours:minutes:seconds. - - - - - Definition of the system block ID. - - - - - System alarm block: Date. - - - - - System alarm block: Time. - - - - - System alarm block: Message duration. - - - - - System alarm block: Daylight saving / standard time. - - - - - System alarm block: Status. - - - - - System alarm block: Acknowledged. - - - - - System alarm block: Number. - - - - - System alarm block: Class. - - - - - System alarm block: PLC / CPU number. - - - - - System alarm block: Tag. - - - - - System alarm block: Logging ID. - - - - - System alarm block: Report ID. - - - - - System alarm block: Comment. - - - - - System alarm block: Infotext. - - - - - System alarm block: Loop-in-alarm. - - - - - System alarm block: Computer name. - - - - - System alarm block: User name. - - - - - System alarm block: Priority. - - - - - System alarm block: Category. - - - - - System alarm block: PLC number (used for OPC event mapping). - - - - - System alarm block: CPU number (used for OPC event mapping). - - - - - Format of system block numbers. - - - - - Display numbers with leading zero. - - - - - Display numbers without leading zero. - - - - - Time format of system blocks. - - - - - Time display in 12-hour format. - - - - - Time display in 24-hour format. - - - - - Time display in hours:minutes with 12-hour format. - - - - - Time display in hours:minutes with 24-hour format. - - - - - Time display in hours:minutes:seconds with 12-hour format. - - - - - Time display in hours:minutes:seconds with 24-hour format. - - - - - Time display in hours:minutes:seconds:milliseconds with 12-hour format. - - - - - Time display in hours:minutes:seconds:milliseconds with 24-hour format. - - - - - Definition of system event types. - - - - - None - - - - - HMI system events. - - - - - S7 diagnostic alarms with number. - - - - - S7 diagnostic alarms with text. - - - - - Simotion diagnostic alarms. - - - - - Defines trigger modes for discrete alarms. - - - - - Discrete alarm will be triggered on a falling edge (1 -> 0). - - - - - Discrete alarm will be triggered on a rising edge (0 -> 1). - - - - - Definition of the user text block ID. - - - - - User text alarm block 1. - - - - - User text alarm block 2. - - - - - User text alarm block 3. - - - - - User text alarm block 4. - - - - - User text alarm block 5. - - - - - User text alarm block 6. - - - - - User text alarm block 7. - - - - - User text alarm block 8. - - - - - User text alarm block 9. - - - - - User text alarm block 10. - - - - - Represents a logical connection between an HMI device and a PLC device - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Simatic ML export of a connection - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the connection - - - - - - Composition of Connections - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Simatic ML import of a connection - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.Hmi.Communication.Connection> - - - - Finds a given connection - - Name to find - Siemens.Engineering.Hmi.Communication.Connection - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a time period for a pass with a possible starting point - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Simatic ML export of a cycle - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Gets a value that identifies this is as a system cycle - - - - - - The name of the cycle - - - - - - Composition of Cycles - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Simatic ML import of a cycle - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.Hmi.Cycle.Cycle> - - - - Finds a given cycle - - Name to find - Siemens.Engineering.Hmi.Cycle.Cycle - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - A class representing a faceplate library type - - - - - Represents a library type - - - - - A library type or folder. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Compares two type objects. - - The target type object to be compared - Siemens.Engineering.Library.Compare.DetailedCompareResult - - - - Updates the target library with the latest content from this type. Marking of default version in target is as per default forceUpdateMode parameter, i.e. SetOnlyHigherUpdatedVersionAsDefault. - - Target library to update - - - - Updates the target library with the latest content from this type. Marking of default version in target is as per forceUpdateMode parameter. - - Target library to update - This option controls whether unused versions should be deleted from updated types in the project library - Options used to select the 'Structure Conflict Resolution Mode' for the user during the operation. - This option controls whether force update should be done on the target library - - - - Updates the project with the latest content from this type. Marking of default version in target is as per default forceUpdateMode parameter, i.e. SetOnlyHigherUpdatedVersionAsDefault. - - The scope of the project that will be updated. - - - - Updates the project's instances with the latest content from this library. Marking of default version in target is as per forceUpdateMode parameter. - - The scope of the project that will be updated. - This option controls whether unused versions should be deleted from updated types in the project library - Options used to select the 'Structure Conflict Resolution Mode ' for the user during the operation. Project Library type supports only RetainStructure mode - This option controls whether force update should be done on the target library - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - The library type's comment - - - - - - EOM parent of this object - - - - - - Composition of library type versions - - - - - - Author of the library type - - - - - - Gets the GUID of this library type - - - - - - The minimum target device version of the library type - - - - - - The name of the library type - - - - - - The namespace of the library type - - - - - - The Set for Update property of the library type - - - - - - The consistency state of the library type - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Name - - - - - - A class representing a faceplate version - - - - - Represents a library type version - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Compares two version objects. - - The target version object to be compared - Siemens.Engineering.Library.Compare.DetailedCompareResult - - - - Export Version - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Export Version with ConfigureDocumentInfos - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) - - - - Find all instances in the given scope that are connected to this version. - - Scope within the project to search when performing a 'Find instance in project' operation. This may be a ControllerTarget, HmiTarget, etc. - System.Collections.Generic.IList<Siemens.Engineering.Library.Types.LibraryTypeInstanceInfo> - - - - Sets a version object as default version of a type. - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - The library type version's comment - - - - - - EOM parent of this object - - - - - - Author of the library type version - - - - - - Returns all versions that this version depends on - - - - - - Returns all versions that depend on this version - - - - - - Gets the GUID of this library version - - - - - - True if the version is a default version, otherwise false. - - - - - - Gets the master copies that contain instances of this version - - - - - - Gets the last modified date and time - - - - - - Gets the state of the version - - - - - - Gets the connected type object - - - - - - Gets the library version number. The format is Major.Minor.Build - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents a multilingual graphic object of the project - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Simatic ML export of a multilingual graphic - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the multilingual graphic - - - - - - Composition of MultiLingualGraphics - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Simatic ML import of a multilingual graphic - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.Hmi.Globalization.MultiLingualGraphic> - - - - Finds a given multilingual graphic - - Name to find - Siemens.Engineering.Hmi.Globalization.MultiLingualGraphic - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Acquisition modes available for logging tags. - - - - - Cyclic logging. - - - - - Cyclic logging between start and stop conditions. - - - - - Logging is triggered by a change to the tag value. - - - - - Logging must be triggered explicitly. - - - - - Defines the processing methods for logging tags whose source tag contains neither binary nor raw data. - - - - - The actual value of the logging tag is saved. - - - - - The maximum values are saved within the actual logging cycle. - - - - - The minimum values are saved within the actual logging cycle. - - - - - The total values are saved within the actual logging cycle. - - - - - The mean values are saved within the actual logging cycle. - - - - - The result of the selected calculation script is saved to the log file. - - - - - Defines the processing methods for logging tags whose source tag is binary. - - - - - The logging tag value is saved at every logging cycle. - - - - - The logging tag is saved if its value changes. - - - - - The logging tag is saved if its value changes from 0 to 1. - - - - - The logging tag is saved if its value changes from 1 to 0. - - - - - Defines the methods for processing compressed data logs. - - - - - The values of the logging tags/compressed logging tags of the specified period are compressed. The last calculated values of the logging tags/compressed logging tags of the period are retained and are written to the compressed data log. - - - - - The values of the logging tags/compressed logging tags of the specified period are compressed and are also copied to the compressed data log. The calculated values are also copied to the compressed data log. - - - - - The values of the logging tags/compressed logging tags of the specified period are compressed and are then deleted. The calculated values of the logging tags/compressed logging tags are retained with the last values of the logging tags/compressed logging tags. - - - - - The values of the logging tags/compressed logging tags of the specified period are compressed, copied to the compressed data log and are then deleted. The calculated values of the logging tags/compressed logging tags are retained with the last values of the logging tags/compressed logging tags and are copied to the compressed data log. - - - - - Defines the methods for processing compressed logging tags. - - - - - The maximum values are logged within the compression period. - - - - - The minimum values are logged within the compression period. - - - - - The mean values are logged within the compression period. - - - - - The total values are logged within the compression period. - - - - - The weighted average values are logged within the compression period. - - - - - Defines the available data source modes. - - - - - Users can specify the data source name. - - - - - Defines the available operating modes with hysteresis. - - - - - A hysteresis cannot be set. - - - - - The tag is only logged if the absolute difference between two consecutive incoming values is greater than or equal to the hysteresis value. - - - - - The tag is only logged if the precentage difference between two consecutive incoming values is greater than or equal to the hysteresis value. - - - - - Defines the scope of logging limiting. - - - - - Logging is only activated if the value of the logging tag is within limits. - - - - - Logging is only activated if the value of the logging tag is outside limits. - - - - - Specifies the restart mode of the data logs. - - - - - The data values are deleted from the log at the start of runtime. - - - - - The log is retained at the start of runtime. - - - - - Defines the available data logging methods. - - - - - The oldest entries are overwritten after the configured log size was reached. - - - - - These are separate logs of the same size which are filled successively. - - - - - A system alarm is triggered after a defined level was reached, e.g. 90%. - - - - - An "Overflow" event is triggered if the log runs out of space for further entries. - - - - - Defines the available logging setting types. - - - - - Fast data log on a server. - - - - - Slow data log on a server. - - - - - Alarm and event log on a server. - - - - - Defines the available units for the segment size. - - - - - Defines megabyte as segment unit. - - - - - Defines gigabyte as segment unit. - - - - - Defines the storage location the data logs. - - - - - Defines a database as storage location. - - - - - Defines a CSV file using ANSI codepage as storage location. - - - - - Defines memory as the storage location. - - - - - Defines a Unicode TXT file as storage location. - - - - - Defines a high performance binary file as storage location (fast access log). - - - - - Defines the storage format for Audit trail log - - - - - Defines a CSV file using ANSI codepage as storage location. - - - - - Defines a Unicode TXT file as storage location. - - - - - Enum for SupplyingTags. - - - - - System. - - - - - Manual input. - - - - - Defines the available units of the time period. - - - - - Defines the hour as time unit. - - - - - Defines the day as time unit. - - - - - Defines the week as time unit. - - - - - Defines the month as time unit. - - - - - Defines the year as time unit. - - - - - The toolbar is aligned relative to its sides in its parent window - - - - - Toolbar aligned to top - - - - - Toolbar aligned to bottom - - - - - Toolbar aligned to left - - - - - Toolbar aligned to right - - - - - The toolbar aligned dynamically - - - - - Specifies the communication type of a Recipe recipe. - - - - - There is no communication. - - - - - The communication is realized through HMI tags. - - - - - The communication is realized through a raw tag of the PLC. - - - - - Specifies the available data types in the Recipe subsystem. - - - - - The data type is not defined. - - - - - Data type that represents 8-bit characters. - - - - - Data type that represents true or false values. - - - - - Data type that represents signed 8-bit integers with values from -128 to +127. - - - - - Data type that represents unsigned 8-bit integers with values from 0 to 255. - - - - - Data type that represents signed 16-bit integers with values from -32768 to +32767. - - - - - Data type that represents unsigned 16-bit integers with values from 0 to 65535. - - - - - Data type that represents signed 32-bit integers with values from -2147483648 to +2147483647. - - - - - Data type that represents unsigned 32-bit integers with values from 0 to 4294967295. - - - - - A 32-bit floating point data type that represents values of an approx. range from 1.5 x 10 to 3.4 x 10 at a precision of 7 digits. - - - - - A 64-bit floating point data type that represents values of the approx. range from 5.0 x 10 to 1.7 x 10 at a precision of 15 to 16 digits. - - - - - Data type that represents a date and time value. - - - - - Specifies the size type of a Recipe recipe. - - - - - The number of records in the recipe is not limited. - - - - - The number of records in the recipe is limited. - - - - - values for the confirmation type - - - - - Storage media is Database - - - - - Storage media is File - - - - - Storage media is Memory - - - - - Specifies constants for the back style. - - - - - Draw with transparent shading. - - - - - Draw solid shading. - - - - - Specifies the border style. - - - - - Do not draw the line. - - - - - A solid line is drawn. - - - - - Specifies constants for the back style. - - - - - Show oldest alarm first. - - - - - Show recent alarm first. - - - - - Specifies the print area constants for the Siemens.Engineering.Hmi.Report.Hardcopy. - - - - - Show hardcopy of the desktop. - - - - - Show hardcopy of the active window (which has the focus). - - - - - Show hardcopy of the selected desktop section. - - - - - Specifies constants for the back style. - - - - - Draw with transparent shading. - - - - - Draw solid shading. - - - - - Specifies the border style. - - - - - Do not draw the line. - - - - - A solid line is drawn. - - - - - Specifies the content of a ScreenControlViewText. - - - - - The window header of the screen controlview type is shown. - - - - - The object name of the screen controlview type is shown. - - - - - The screen name (container) of the screen controlview type is shown. - - - - - Specifies constants which define the type of dialog shown at the start of reporting (at runtime). - - - - - No dialog is shown at runtime - - - - - Show property dialog at runtime. - - - - - Show printer dialog at runtime. - - - - - Specifies page format constants for the Siemens.Engineering.Hmi.Report.Report. - - - - - Identifies user-defined page sizes - - - - - Identifies A3 paper format (297x420 millimeters). - - - - - Identifies A4 paper format (210x297 millimeters). - - - - - Identifies A5 paper format (148x210 millimeters). - - - - - Identifies paper format Letter (8 1/2x11 inches). - - - - - Identifies paper format Legal (8 1/2x14 inches). - - - - - Specifies page orientation constants for the Siemens.Engineering.Hmi.Report.Report. - - - - - Identifies portrait page orientation. - - - - - Identifies landscape page orientation. - - - - - Specifies constants which define the type of page range for the Siemens.Engineering.Hmi.Report.PrintConfiguration. - - - - - Print all pages. - - - - - Print all pages within the range PageFrom to PageTo. - - - - - Specifies constant values of the time range for the Siemens.Engineering.Hmi.Report.PrintConfiguration. - - - - - Show all data (without selection). - - - - - Time range is specified in hours. - - - - - Time range is specified in days. - - - - - Time range is specified in weeks. - - - - - Time range is specified in months. - - - - - Time range is specified in years. - - - - - Specifies constants for the back style. - - - - - Draw with transparent shading. - - - - - Draw solid shading. - - - - - Specifies the border style. - - - - - Do not draw the line. - - - - - A solid line is drawn. - - - - - Specifies constants for the alarm columns of the Siemens.Engineering.Hmi.Report.PrintRecipe. - - - - - Recipe number column identifier - - - - - Recipe name column identifier - - - - - Record number column identifier - - - - - Record name column identifier - - - - - Variable name column identifier - - - - - Variable type column identifier - - - - - Entry name column identifier - - - - - Specifies constants for the drawing mode. - - - - - Draw in one line. - - - - - Draw in columns. - - - - - Specifies selection type for the recipe. - - - - - Select recipe by name. - - - - - Select recipe by number. - - - - - Select all recipes. - - - - - Specifies selection type for the recipe records. - - - - - Select recipe record by name. - - - - - Select recipe record by number. - - - - - Select all recipe records. - - - - - Specifies page format constants for the Siemens.Engineering.Hmi.Report.Report. - - - - - Identifies the ruler object. - - - - - Identifies the other control - - - - - Specifies constants for the type of time range for the Siemens.Engineering.Hmi.Report.PrintConfiguration. - - - - - Use relative time range. - - - - - Use absolute time range. - - - - - Specifies the unit style constants for the Siemens.Engineering.Hmi.Report.Report. - - - - - Report units in centimeters (metric). - - - - - Report units in inches (US). - - - - - Report units are characters / lines (line report). - - - - - Class representing a Cscript library type - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Name - - - - - - Class representing a Cscript library type version - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Represents a VBscript - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Simatic ML export of a VBScript - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the VBScript - - - - - - Composition of VBScripts - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create script from library type version - - library type version - Siemens.Engineering.Hmi.RuntimeScripting.VBScript - - - - Create VBScript from MasterCopy - - The source master copy - Siemens.Engineering.Hmi.RuntimeScripting.VBScript - - - - Simatic ML import of a VBScript - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.Hmi.RuntimeScripting.VBScript> - - - - Finds a given VBScript - - Name to find - Siemens.Engineering.Hmi.RuntimeScripting.VBScript - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Folder containing VBScripts & VBScript user folders - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of VBScript user folders - - - - - - EOM parent of this object - - - - - - Composition of VBScripts - - - - - - The name of the VBScript folder - - - - - - Represents a library type made from a VBScript - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Name - - - - - - Represents a library type version made from a VBScript - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - System folder containing VBScripts & VBScript user folders - - - - - Target for instantiation of a library type-version - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of VBScript user folders - - - - - - EOM parent of this object - - - - - - Composition of VBScripts - - - - - - User folder containing VBScripts & VBScript user folders - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of VBScript user folders - - - - - - EOM parent of this object - - - - - - Composition of VBScripts - - - - - - The name of the VBScript user folder - - - - - - Composition of VBScriptUserFolders - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates a VBScript user folder - - Name of folder to be created - Siemens.Engineering.Hmi.RuntimeScripting.VBScriptUserFolder - - - - Finds a given VBScript user folder - - Name to find - Siemens.Engineering.Hmi.RuntimeScripting.VBScriptUserFolder - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a screen - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Simatic ML export of a screen - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the screen - - - - - - Composition of Screens - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create screen from type version - - screen version - Siemens.Engineering.Hmi.Screen.Screen - - - - Create Screen from MasterCopy - - The source master copy - Siemens.Engineering.Hmi.Screen.Screen - - - - Simatic ML import of a screen - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.Hmi.Screen.Screen> - - - - Finds a given screen - - Name to find - Siemens.Engineering.Hmi.Screen.Screen - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a screen folder - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of screen user folders - - - - - - EOM parent of this object - - - - - - Composition of screens - - - - - - The name of the screen folder - - - - - - Represents the screen global elements - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Simatic ML export of screen global elements - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents a library type made from a screen - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Name - - - - - - Represents a library type version made from a screen - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Editor for elements in the overview - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Simatic ML export of a screen overview - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Pop-up screen - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Common export - - Path to the Simatic ML file - Determines whether the default values are exported or not - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Gets or sets the screen name. - - - - - - Composition of popup screens. - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create ScreenPopup from MasterCopy - - The source master copy - Siemens.Engineering.Hmi.Screen.ScreenPopup - - - - Import Action - - Path to the Simatic ML file - Options to use for the Import - System.Collections.Generic.IList<Siemens.Engineering.Hmi.Screen.ScreenPopup> - - - - Finds a given screen popup - - Name to find - Siemens.Engineering.Hmi.Screen.ScreenPopup - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Folder containing screen popups - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of screen popup user folders - - - - - - EOM parent of this object - - - - - - Composition of screen popups - - - - - - The name of the screen popup folder - - - - - - System folder containing screen popups - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of screen popup user folders - - - - - - EOM parent of this object - - - - - - Composition of screen popups - - - - - - User folder containing screen popups - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of screen popup user folders - - - - - - EOM parent of this object - - - - - - Composition of screen popups - - - - - - The name of the screen template user folder - - - - - - Composition of ScreenPopupUserFolders - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates a screen popup user folder - - Name of folder to be created - Siemens.Engineering.Hmi.Screen.ScreenPopupUserFolder - - - - Finds a given screen popup user folder - - Name to find - Siemens.Engineering.Hmi.Screen.ScreenPopupUserFolder - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Slide-In screen - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Common export - - Path to the Simatic ML file - Determines whether the default values are exported or not - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Type of a Slide-In screen. - - - - - - Composition of slidein screens. - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Import Action - - Path to the Simatic ML file - Options to use for the Import - System.Collections.Generic.IList<Siemens.Engineering.Hmi.Screen.ScreenSlidein> - - - - Find a slidein screen. - - Slidein to find - Siemens.Engineering.Hmi.Screen.ScreenSlidein - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Folder for slide-in screens - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Returns a collection of slide-in screens in that folder. - - - - - - System folder containing screens - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of screen user folders - - - - - - EOM parent of this object - - - - - - Composition of screens - - - - - - Represents a screen template - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Simatic ML export of a screen template - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the screen template - - - - - - Composition of ScreenTemplates - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create ScreenTemplate from MasterCopy - - The source master copy - Siemens.Engineering.Hmi.Screen.ScreenTemplate - - - - Simatic ML import of a screen template - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.Hmi.Screen.ScreenTemplate> - - - - Finds a given screen template - - Name to find - Siemens.Engineering.Hmi.Screen.ScreenTemplate - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Folder containing screen templates - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of screen template user folders - - - - - - EOM parent of this object - - - - - - Composition of screen templates - - - - - - The name of the screen template folder - - - - - - System folder containing screen templates - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of screen template user folders - - - - - - EOM parent of this object - - - - - - Composition of screen templates - - - - - - User folder containing screen templates - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of screen template user folders - - - - - - EOM parent of this object - - - - - - Composition of screen templates - - - - - - The name of the screen template user folder - - - - - - Composition of ScreenTemplateUserFolders - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates a screen template user folder - - Name of folder to be created - Siemens.Engineering.Hmi.Screen.ScreenTemplateUserFolder - - - - Finds a given screen template user folder - - Name to find - Siemens.Engineering.Hmi.Screen.ScreenTemplateUserFolder - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - User folder containing screens - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of screen user folders - - - - - - EOM parent of this object - - - - - - Composition of screens - - - - - - The name of the screen user folder - - - - - - Composition of ScreenUserFolders - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates a screen user folder - - Name of folder to be created - Siemens.Engineering.Hmi.Screen.ScreenUserFolder - - - - Finds a given screen user folder - - Name to find - Siemens.Engineering.Hmi.Screen.ScreenUserFolder - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Defines the available Slide-In screen types. - - - - - Slide-In screen type bottom. - - - - - Slide-In screen type left. - - - - - Slide-In screen type right. - - - - - Slide-In screen type top. - - - - - Represents a library type made from a style - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Name - - - - - - Represents a library type version made from a style - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Represents a library type made from a style sheet - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Name - - - - - - Represents a library type version made from a style sheet - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Defindes the VisibilityModes - - - - - VisibilityMode fade out - - - - - VisibilityMode show always - - - - - VisibilityMode show never - - - - - Represents a library type made from a Udt - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Name - - - - - - Represents a library type version made from a Udt - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents an Hmi tag - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Simatic ML export of a tag - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the tag - - - - - - Composition of (Hmi)Tags - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create Tag from MasterCopy - - The source master copy - Siemens.Engineering.Hmi.Tag.Tag - - - - Simatic ML import of a tag - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.Hmi.Tag.Tag> - - - - Finds a given tag - - Name to find - Siemens.Engineering.Hmi.Tag.Tag - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Folder containing Hmi tag tables & Hmi tag user folders - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of tag user folders - - - - - - EOM parent of this object - - - - - - Composition of Hmi tag tables - - - - - - The name of the tag folder - - - - - - System folder containing Hmi tag tables & Hmi tag user folders - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Get the default Hmi tag table - - - - - - Composition of tag user folders - - - - - - EOM parent of this object - - - - - - Composition of Hmi tag tables - - - - - - Represents an Hmi tag table - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Simatic ML export of a tag table - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Composition of Hmi tags - - - - - - Gets a value that identifies this is the default tag table - - - - - - The name of the tag table - - - - - - Composition of (Hmi)TagTables - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create TagTable from MasterCopy - - The source master copy - Siemens.Engineering.Hmi.Tag.TagTable - - - - Simatic ML import of a tag table - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.Hmi.Tag.TagTable> - - - - Finds a given tag table - - Name to find - Siemens.Engineering.Hmi.Tag.TagTable - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - User folder containing Hmi tag tables & Hmi tag user folders - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of tag user folders - - - - - - EOM parent of this object - - - - - - Composition of Hmi tag tables - - - - - - The name of the tag user folder - - - - - - Composition of (Hmi)TagUserFolders - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates a tag user folder - - Name of folder to be created - Siemens.Engineering.Hmi.Tag.TagUserFolder - - - - Finds a given tag user folder - - Name to find - Siemens.Engineering.Hmi.Tag.TagUserFolder - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a graphic list - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Simatic ML export of a graphic list - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the graphic list - - - - - - Composition of GraphicLists - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Simatic ML import of a graphic list - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.Hmi.TextGraphicList.GraphicList> - - - - Finds a given graphic list - - Name to find - Siemens.Engineering.Hmi.TextGraphicList.GraphicList - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a text list - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Simatic ML export of a text list - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the text list - - - - - - Composition of TextLists - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Simatic ML import of a text list - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.Hmi.TextGraphicList.TextList> - - - - Finds a given text list - - Name to find - Siemens.Engineering.Hmi.TextGraphicList.TextList - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents the software components of a Hmi - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - AlarmClasses collection - - - - - - Specifies HmiAlarmLog collection - - - - - - AnalogAlarm collection - - - - - - Specifies HmiAuditTrail collection - - - - - - HmiConnection Collection - - - - - - Specifies HmiDataLog collection - - - - - - DiscreteAlarms collection - - - - - - OpcUaAlarmTypes collection - - - - - - Plant object tags - - - - - - ScreenGroupComposition - - - - - - HmiScreen compostition - - - - - - Represents the HmiScripts - - - - - - Hmi system tag collection - - - - - - TagGroupComposition - - - - - - Hmi tagtables - - - - - - Hmi tag collection - - - - - - Runtime settings of the hmi device - - - - - - This class hold the common properties of AlarmClass, AnalogAlarm, DiscretAlarm - - - - - Validates the object - - - - - Validates the object - - System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Validates the HmiUnified object - - System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Name of the object - - - - - - Base class of user group - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Error object that notifies the errors associated with a particular property - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Errors associated with the property - - - - - - Name of the property - - - - - - Warnings associated with the property - - - - - - IChromDataExchangeExport Interface - - - - - Export script module - - Path of Destination - System.Collections.Generic.IEnumerable<System.IO.FileInfo> - - - - Export script module under a different file name - - Path of Destination - Name of File - System.Collections.Generic.IEnumerable<System.IO.FileInfo> - - - - Plant object - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Plant object interface members - - - - - - Plant object type - - - - - - Plant object interface - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Validates the object - - System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Get/set comment of interface - - - - - - Members of the plant object interface - - - - - - EOM parent of this object - - - - - - Plant object interface access mode - - - - - - The Acquisition cycle attribute - - - - - - Plant object interface AcquisitionMode - - - - - - The Hmi Connection - - - - - - Data type of the Plant object interface - - - - - - Hmi data type - - - - - - Plant object interface Data type length - - - - - - Name of Plant object interface - - - - - - The Persistence attribute - - - - - - The Plc Name Attribute - - - - - - The Plc Tag attribute - - - - - - Collection of Plant object interfaces - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds plant object interface - - Name of plant object interface - Siemens.Engineering.HmiUnified.Cpm.PlantObjectInterface - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Plant object interface member - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Validates the object - - System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Get/set comment of interface member - - - - - - Plant object logging tag collection - - - - - - Members of the plant object interface member - - - - - - EOM parent of this object - - - - - - DataType of the Plant object interface member - - - - - - Hmi data type - - - - - - Upper limit - - - - - - Lower limit - - - - - - Initial value attribute - - - - - - Plant object interface member DataTypeLength - - - - - - Name of Plant object interface member - - - - - - The SubstituteValue - - - - - - Collection of Plant object interface members - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds plant object interface member - - Name of plant object interface member - Siemens.Engineering.HmiUnified.Cpm.PlantObjectInterfaceMember - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents the plant object logging tag - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Compression Delay - - - - - - Compression Mode - - - - - - Logging Cycle - - - - - - Logging Cycle Factor - - - - - - Reference to the used data log configuration - - - - - - Defines the Higher limit - - - - - - LimitScope of Hmi Logging Tag - - - - - - Logging Mode - - - - - - Defines the Lower limit - - - - - - Name of the Logging Tag - - - - - - Smoothing delta value - - - - - - Smoothing max time - - - - - - Smoothing min time - - - - - - Smoothing mode of the logging tag - - - - - - Source Logging Tag - - - - - - TriggerMode property - - - - - - TriggerTag Value - - - - - - TriggerTagBitNumber - - - - - - PlantObject LoggingTag Aggregation Mode enum - - - - - None value of enum - - - - - Minimum - Mode - - - - - Maximum Mode - - - - - MinimumWithTimeStamp - - - - - MinimumWithTimeStamp - - - - - Sum - Compression mode - - - - - Time average stepped - - - - - Average - Compression Mode - - - - - End - Compression Mode - - - - - Represents plant object logging tag composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Find method for plant object logging tag - - Name of the plant object logging tag - Siemens.Engineering.HmiUnified.Cpm.PlantObjectLoggingTag - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Defines the limit scope for the plant object logging tag - - - - - Hmi LimitScope - NoLimitsUsed - - - - - Hmi LimitScope - Greater - - - - - Hmi LimitScope - Less - - - - - Hmi LimitScope - GreaterOrEqual - - - - - Hmi LimitScope - LessOrEqual - - - - - Hmi LimtScope - WithinLimits - - - - - Hmi LimitScope - WithinOrEqualLimits - - - - - Hmi LimitScope - OutsideLimits - - - - - Hmi LimtScope - OutsideOrEqualLimits - - - - - Plant object Logging mode enum - - - - - HmiLoggingMode - undefined - - - - - Logging mode - cyclic - - - - - Logging mode - on demand - - - - - Logging mode - on change - - - - - Plant object logging tag smoothing mode - - - - - No Smoothing Mode - - - - - Hmi Smoothing Mode - Value - - - - - Compare Values - - - - - Hmi Smoothing Mode - ValueRelative - - - - - Hmi Smoothing Mode - SwingingDoor - - - - - PlantObject LoggingTag TriggerMode - - - - - None value of enum - - - - - RisingEdge enum value - - - - - FallingEdge enum value - - - - - RisingAndFallingEdge - - - - - Plant object tag access mode - - - - - The none means zero - - - - - Address Access mode Absolute - - - - - Symbolic Address Access mode - - - - - AcquisitionMode of plant object tag - - - - - The None Means zero - - - - - cyclic on use - - - - - the CyclicContinuous mode - - - - - plant object tag limit value type - - - - - The None Means zero - - - - - Description for constant - - - - - Description for tag - - - - - Lower limit range - - - - - To set value range - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Value of upper/lower - - - - - - Get and set Vlaue type - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Plant object tag substitute value - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Get or set substitute value - - - - - - Get and set substitute value - - - - - - Plant object tag substitute value usage - - - - - No substitute value usage - - - - - communication error - - - - - limit is violated - - - - - communication error and limit violation - - - - - Range for limit high - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Plant View - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Collection of PlantViewNodes - - - - - - Assigned hmi device - - - - - - Name of the plant view - - - - - - Plant View composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds the view node by hierarchy path - - Hierarchy path of the plant view node - Siemens.Engineering.HmiUnified.Cpm.PlantViewNode - - - - Creates the view - - Name of view - Siemens.Engineering.HmiUnified.Cpm.PlantView - - - - Finds view - - Name of view - Siemens.Engineering.HmiUnified.Cpm.PlantView - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - View node - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Collection of PlantViewNodes - - - - - - Name of the plant view node - - - - - - Plant object - - - - - - PlantView of the node - - - - - - Path of the node in the hierarchy - - - - - - View node composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates view node - - Name of view node - Siemens.Engineering.HmiUnified.Cpm.PlantViewNode - - - - Creates a view node with plant object - - View node name - Name of the plant object type - Siemens.Engineering.HmiUnified.Cpm.PlantViewNode - - - - Finds view node - - Name of view node - Siemens.Engineering.HmiUnified.Cpm.PlantViewNode - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Specifies alarm class. - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies Alarm incoming outgoing acknowledge or AcknowledgedCleared status - - - - - - Specifies Alarm incoming acknowledge or acknowledged status - - - - - - Specifies Alarm coming going or cleared status - - - - - - Common Alarm Class for Alarm - - - - - - Specifies the alarm class number that identifies the alarm class in runtime - - - - - - Specifies if alarm class is system provided - - - - - - Alarm Log for alarm class - - - - - - Name - - - - - - Specifies the alarm priority - - - - - - Alarm incoming or raised status - - - - - - Defines the statemachine of the alarm class - - - - - - HmiAlarmClassComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create new object - - Name - Siemens.Engineering.HmiUnified.HmiAlarm.HmiAlarmClass - - - - Find - - Name - Siemens.Engineering.HmiUnified.HmiAlarm.HmiAlarmClass - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - HmiAnalogAlarm - - - - - This is base class for AnalogAlarm and DiscreteAlarm - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Specifies event/alarm text of alarm. - - - - - - Specifies event/alarm text of alarm 1. - - - - - - Specifies event/alarm text of alarm 2. - - - - - - Specifies event/alarm text of alarm 3. - - - - - - Specifies event/alarm text of alarm 4. - - - - - - Specifies event/alarm text of alarm 5. - - - - - - Specifies event/alarm text of alarm 6. - - - - - - Specifies event/alarm text of alarm 7. - - - - - - Specifies event/alarm text of alarm 8. - - - - - - Specifies event/alarm text of alarm 9. - - - - - - Specifies the multilingual InfoText of the alarm - - - - - - EOM parent of this object - - - - - - Specifies the alarm class - - - - - - Specifies the alarm pararmeters - - - - - - Specifies the area of the alarm - - - - - - Alarm row identification Number - - - - - - Specifies the origin of the alarm - - - - - - Specifies the alarm priority - - - - - - Specifies the tag that raise/trigger the alarm - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Specifies Limit Mode. - - - - - - Condition Value can be specified as constant value. - - - - - - Name - - - - - - Specifies the address of the trigger tag - - - - - - HmiAnalogAlarm Composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create - - Name - Siemens.Engineering.HmiUnified.HmiAlarm.HmiAnalogAlarm - - - - Find - - Name - Siemens.Engineering.HmiUnified.HmiAlarm.HmiAnalogAlarm - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - HmiDiscreteAlarm - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Control Tag for Acknowledgement of discrete alarm - - - - - - Control tag bit number for Acknowledgement of discrete alarm - - - - - - Acknowledgment tag for discrete alarm - - - - - - Acknowledgment tag bit number for discrete alarm - - - - - - Name - - - - - - Trigger bit on the trigger tag - - - - - - Specifies the address of the trigger bit - - - - - - Specify trigger mode for discrete alarm - - - - - - HmiDiscreteAlarmComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create - - Name - Siemens.Engineering.HmiUnified.HmiAlarm.HmiDiscreteAlarm - - - - Find - - Name - Siemens.Engineering.HmiUnified.HmiAlarm.HmiDiscreteAlarm - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Specifies the alarm status visuals - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the background color - - - - - - Specifies the flashing color - - - - - - Specifies the text color - - - - - - HmiAcknowledgedClearedState - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - HmiAcknowledgedState - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - HmiAlarmCondition - - - - - LowerLimit - - - - - UpperLimit - - - - - Equal - - - - - NotEqual - - - - - LowerLimitOrEqual - - - - - UpperLimitOrEqual - - - - - HmiAlarmStateMachine - - - - - Raise - - - - - RaiseClear - - - - - RaiseRequiresAcknowledgement - - - - - RaiseClearOptionalAcknowledgement - - - - - RaiseClearRequiresAcknowledgement - - - - - RaiseClearRequiresAcknowledgementAndReset - - - - - HmiClearedState - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - HmiDiscreteAlarmTriggerMode - - - - - OnRisingEdge - - - - - OnFallingEdge - - - - - HmiRaisedState - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Communication driver specific properties - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Interface property information - - - - - - Interface property name - - - - - - Value of interface property - - - - - - DriverPropertyComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds DriverProperty - - Name of DriverProperty - Siemens.Engineering.HmiUnified.HmiConnections.DriverProperty - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents the HmiConnection - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Validates the object - - System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Driver specific properties collection - - - - - - EOM parent of this object - - - - - - Additional comments if any - - - - - - Gives the communication driver - - - - - - Connection initially will be online or not in runtime. - - - - - - Parameters of connection provided in key value pair separated by semicolon. For Example: IntialAddress string for S7 300/400 connection “CommunicationInterface=Industrial Ethernet;HostAddress=192.168.0.2;HostAccessPoint=S7Online;PlcAddress=192.168.0.2;ExpansionSlot=2;Rack=0;IsCyclicOperation=true” - - - - - - Name of connection - - - - - - Shows access point of Partner (eg PLC) - - - - - - Name of connected partner - - - - - - Name of the station to which partner is located. - - - - - - Represents the Composition of Hmi Connections - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create method for Connection - - Connection Name - Siemens.Engineering.HmiUnified.HmiConnections.HmiConnection - - - - Find method for Connection - - Connection Name - Siemens.Engineering.HmiUnified.HmiConnections.HmiConnection - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Communication driver specific properties - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Returns the node id of an OPC UA alarm for a certain display name. - - The display name - System.String - - - - Reads the OPC UA alarm information from a xml file. - - Absolute file path to xml file - System.Boolean - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Returns the display names for opc ua alarms. - - - - - - Alarm logging - - - - - Base class for Alarm and Data logging - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Log backup - - - - - - Log segment for backup - - - - - - Logging settings - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Name - - - - - - Alarm log collection - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create method for alarm log - - Name - Siemens.Engineering.HmiUnified.HmiLogging.HmiAlarmLog - - - - Find method of alarmlog - - Name - Siemens.Engineering.HmiUnified.HmiLogging.HmiAlarmLog - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Audit trail configuration - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Name - - - - - - Audit trail collection - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Data log configuration - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Name - - - - - - Data log collection - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create Method of HmiDataLog - - Name - Siemens.Engineering.HmiUnified.HmiLogging.HmiDataLog - - - - Find method of HmiDataLog - - Name - Siemens.Engineering.HmiUnified.HmiLogging.HmiDataLog - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - DeviceNode - - - - - None enum value - - - - - Off enum value - - - - - Default enum value - - - - - Local enum value - - - - - Device Node SD-X51 - - - - - Device Node USB-X61 - - - - - Device Node -USB - X62 - - - - - HmiBackupMode - - - - - NoBackup - - - - - BackupToPrimaryPath - - - - - Logging backup configuration - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Defines the backup mode - - - - - - Logging backup path - - - - - - Specifies the time period type - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Return timeperiod in double - - System.Double - - - - Return Log Duration in String - - System.String - - - - Set timeperiod in double - - Day - hours - minutes - seconds - hundred nanoseconds - System.String - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies number of days - - - - - - Specifies number of hours - - - - - - Specifies minutes - - - - - - Specifies seconds - - - - - - Hundred Nonoseconds - - - - - - Logging segment configuration - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Defines the maximum size of a segment of the log on the storage medium in units of megabytes. When the value is set to 0, the size of the segment is not considered. - - - - - - Start time of the logging segment - - - - - - Segment Time Period - - - - - - Logging configuration - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Maximum size of data storage in MB - - - - - - Log Time period - - - - - - StorageDevice - - - - - - Path for storage - - - - - - Segment duration Class - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Method for getting segment timeperiod - - System.Double - - - - Return Segment Duration in String - - System.String - - - - Method for setting segment timeperiod - - days - hours - minutes - seconds - Hundred Nanoseconds - System.String - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Days - - - - - - Hours - - - - - - Minutes - - - - - - Seconds - - - - - - Hundred Nanoseconds - - - - - - Specifies OPC alarm and condition type class. - - - - - Sets NodeId and Connection together - - Describes Node Id - Describes Connection Name - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies Alarm class - - - - - - Specifies the Area Text - - - - - - Specifies Condition type ID - - - - - - Specifies Connection - - - - - - Name - - - - - - Specifies Node ID - - - - - - HmiOpcUaAlarmTypeComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create Opc Ua Alarm with Connection and NodeId - - Specifies NodeId - Specifies Connection - Specifies Name - Siemens.Engineering.HmiUnified.HmiOpcUaAlarm.HmiOpcUaAlarmType - - - - Find - - Name - Siemens.Engineering.HmiUnified.HmiOpcUaAlarm.HmiOpcUaAlarmType - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Hmi Tag Access Mode - - - - - The none means zero - - - - - Address Access mode Absolute - - - - - Symbolic Address Access mode - - - - - AcquisitionMode of Hmi Tag - - - - - The None Means zero - - - - - The OnDemand Mode - - - - - cyclic on use - - - - - the CyclicContinuous mode - - - - - Confirmation Type of Hmi Tag - - - - - None - - - - - Confirmation - - - - - Reason - - - - - ConfirmationAndComment - - - - - Signature - - - - - SignatureAndComment - - - - - Description for limit value type - - - - - The None Means zero - - - - - Description for constant - - - - - Description for tag - - - - - Description for substitute value - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Get or set substitute value - - - - - - Get and set substitute value - - - - - - Hmi Substitute Value Usage - - - - - No substitute value usage - - - - - communication error - - - - - limit is violated - - - - - communication error and limit violation - - - - - Hmi system tag - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Data type of the system tag - - - - - - Name of system tag - - - - - - Collection of hmi system tag - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds the hmi system tag based on the given name - - Hmi system tag name - Siemens.Engineering.HmiUnified.HmiTags.HmiSystemTag - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Hmi tag class - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Validates the object - - System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - MultilingualTextItemComposition for Comment property of Tag. Refer documentation for get and set of language specific comment - - - - - - Represents - - - - - - Members of the composite Hmi tag - - - - - - EOM parent of this object - - - - - - The Hmi Tag Access Mode - - - - - - The Acquisition cycle attribute - - - - - - Hmi Tag AcquisitionMode - - - - - - The Hmi Tag Address Attribute - - - - - - Provide different acknowledgement options to runtime user when the GMP tag is changed - - - - - - The Hmi Connection - - - - - - DataType of the Tag - - - - - - Determines whether Tag is GMP relevant or not - - - - - - Hmi data type - - - - - - Hmi end value - - - - - - Hmi start value - - - - - - Upper limit - - - - - - Lower limit - - - - - - Initial value attribute - - - - - - Linear scaling - - - - - - Mandatory Comments - - - - - - The hmi tag DataTypeLength - - - - - - Name of Hmi Tag - - - - - - The Persistence attribute - - - - - - Plc end value - - - - - - The Plc Name Attribute - - - - - - Plc start value - - - - - - The Plc Tag attribute - - - - - - The required rights for electronic signature - - - - - - Scope of the tag - - - - - - The SubstituteValue - - - - - - The parent tag table - - - - - - Indicates different types of hmi tag - - - - - - The Update Id Attribute - - - - - - Collection of hmi tags - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Export tags - - Destination Location where file is exported - System.Collections.Generic.IEnumerable<System.IO.FileInfo> - - - - Export tags - - Destination Location where file is exported - Name of the object to be exported - System.Collections.Generic.IEnumerable<System.IO.FileInfo> - - - - Import tags - - Source Location from where file is imported - System.Boolean - - - - Import tags - - Source Location from where file is imported - Name of the object to be imported - System.Boolean - - - - Creates hmi tag - - Name of the hmi tag - Siemens.Engineering.HmiUnified.HmiTags.HmiTag - - - - Creates hmi tag under a specified tag table - - Name of the hmi tag - Name of the parent hmi tagTable - Siemens.Engineering.HmiUnified.HmiTags.HmiTag - - - - Finds the hmi tag based on the given name - - Hmi tag name - Siemens.Engineering.HmiUnified.HmiTags.HmiTag - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Scope of the tag - - - - - System-wide tag - - - - - Session-local tag - - - - - Hmi tag tables - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Hmi tag collection - - - - - - Name of HmitagTable - - - - - - HmitagTable composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates hmi tag table - - Name of Hmi tag table - Siemens.Engineering.HmiUnified.HmiTags.HmiTagTable - - - - Finding the given tagtable - - Name of hmi tagtable - Siemens.Engineering.HmiUnified.HmiTags.HmiTagTable - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Specifies the tag table user group - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - TagTableGroupComposition - - - - - - EOM parent of this object - - - - - - Tag Table Composition - - - - - - Specifies name of tag table user group - - - - - - TagTableGroupComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create - - Name - Siemens.Engineering.HmiUnified.HmiTags.HmiTagTableGroup - - - - Find a tag group - - Name - Siemens.Engineering.HmiUnified.HmiTags.HmiTagTableGroup - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Indicates different types of hmi tag - - - - - Simple Tag - - - - - Tag with User Defined Datatype - - - - - Array member of the UDT - - - - - The hmi tag Update Scope - - - - - The none means zero - - - - - The Update Scope Client Server wide - - - - - The UpdateScopte Local Hmi Device - - - - - Lower limit range - - - - - To set value range - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Value of upper/lower - - - - - - Get and set Vlaue type - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Range for limit high - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - LibraryType for UnifiedTypes in Library - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Hmi Aggregation Mode enum - - - - - None value of enum - - - - - Minimum - Mode - - - - - Maximum Mode - - - - - MinimumWithTimeStamp - - - - - MinimumWithTimeStamp - - - - - Sum - Compression mode - - - - - Time average stepped - - - - - Average - Compression Mode - - - - - End - Compression Mode - - - - - Defines the limit scope for the logging tag - - - - - Hmi LimitScope - NoLimitsUsed - - - - - Hmi LimitScope - Greater - - - - - Hmi LimitScope - Less - - - - - Hmi LimitScope - GreaterOrEqual - - - - - Hmi LimitScope - LessOrEqual - - - - - Hmi LimtScope - WithinLimits - - - - - Hmi LimitScope - WithinOrEqualLimits - - - - - Hmi LimitScope - OutsideLimits - - - - - Hmi LimtScope - OutsideOrEqualLimits - - - - - Hmi Logging mode enum - - - - - HmiLoggingMode - undefined - - - - - Logging mode - cyclic - - - - - Logging mode - on demand - - - - - Logging mode - on change - - - - - Represents the LoggingTag - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Validates the object - - System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Compression Delay - - - - - - Compression Mode - - - - - - Logging Cycle - - - - - - Logging Cycle Factor - - - - - - Reference to the used data log configuration - - - - - - Defines the Higher limit - - - - - - LimitScope of Hmi Logging Tag - - - - - - Logging Mode - - - - - - Defines the Lower limit - - - - - - Name of the Logging Tag - - - - - - Smoothing delta value - - - - - - Smoothing max time - - - - - - Smoothing min time - - - - - - Smoothing mode of the logging tag - - - - - - Source Logging Tag - - - - - - TriggerMode property - - - - - - TriggerTag Value - - - - - - TriggerTagBitNumber - - - - - - Represensts Logging Tag Composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create method for Logging Tag - - Name of the Logging Tag - Siemens.Engineering.HmiUnified.LoggingTags.HmiLoggingTag - - - - Find method for Logging Tag - - Name of the Logging Tag - Siemens.Engineering.HmiUnified.LoggingTags.HmiLoggingTag - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Hmi Smoothing Mode - - - - - No Smoothing Mode - - - - - Hmi Smoothing Mode - Value - - - - - Compare Values - - - - - Hmi Smoothing Mode - ValueRelative - - - - - Hmi Smoothing Mode - SwingingDoor - - - - - HmiTiggerMode enum - - - - - None enum - - - - - RisingEdge enum - - - - - FallingEdge enum - - - - - RisingAndFallingEdge - - - - - Language and font - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Enables language and font - - - - - - Enables the language and font for logging - - - - - - Fixed font 1 - - - - - - Fixed font 2 - - - - - - Fixed font 3 - - - - - - Fixed font 4 - - - - - - Language name - - - - - - Order of language and font entry - - - - - - Language and font list - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Runtime Settings of MaxLogin - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Validates the object - - System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Enable locking user out after a number of unsuccessful attempts - - - - - - The number of unsuccessful attempts after a user is locked out - - - - - - Runtime Settings of OPC UA server - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Validates the object - - System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies whether hmi device should operate as OPC server - - - - - - It allows the alarms operations - - - - - - Enables the Alarm and conditions to allow the alarm operations - - - - - - Enables the guest user authentication - - - - - - Enables local discovery server for OPC UA server - - - - - - Enables the username and password authentication - - - - - - This port number will used to connect OPC UA server - - - - - - Maximum number of items to monitor per subscription count - - - - - - Maximum number of OPC UA sessions - - - - - - Maximum session timeout value - - - - - - Minimum interval for publishing - - - - - - 128bit signed security mode used for OPC UA server - - - - - - 128bit signed and encrypted security mode used for OPC UA server - - - - - - 256bit signed security mode used for OPC UA server - - - - - - 256bit signed and encrypted security mode used for OPC UA server - - - - - - 256 bit Sha signed security mode used for OPC UA server - - - - - - 256bit Sha 256 signed and encrypted security mode used for OPC UA server - - - - - - Aes128Sha256RsaOaepSign security for OPC UA server - - - - - - Aes128Sha256RsaOaepSignEncrypt security for OPC UA Server - - - - - - Aes256Sha256RsaPssSign security for OPC UA Server - - - - - - Aes256Sha256RsaPssSignEncrypt security for OPC UA Server - - - - - - No security is used for OPC UA server - - - - - - Runtime setting of Process diagnostics - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Expand alarm text with absolute address of faulty operand. - - - - - - Extend text with All faulty operands - - - - - - Expand alarm text with comment of faulty operand. - - - - - - Select which alarm text should be expanded with fault operand information. - - - - - - Expand alarm text with symbol of faulty operand. - - - - - - Expand alarm text with value of faulty operand. - - - - - - Indicates whether device participates in process diagnostics - - - - - - Runtime Settings of Reporting - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Activate Reporting - - - - - - ReportingDatabaseStorage Storage Medium - - - - - - ReportingDatabaseStoragePath Storage Medium - - - - - - ReportingMainStorage Storage Medium - - - - - - ReportingMainStoragePath Storage Medium - - - - - - Runtime resource settings - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Enable this setting to improve the Runtime performance when using high resolution graphics with screen objects. This might affect the zoom/declutter functionality. - - - - - - Runtime settings of hmi device - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Validates RuntimeSettings - - System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The attribute allow to configure URL, so that the runtime client is moved to url when is logged off - - - - - - Bit selection for multiple bit tag dynamization - - - - - - Indicates the setting for bit number evaluation strategy of resource lists. - - - - - - Indicates the bitselectionfortagdynamization in runtime settings. - - - - - - Determine whether device is GMP relevant or not - - - - - - Indicate Reporting Setting - - - - - - List of language and font entries - - - - - - Indicates the MaxLogin settings in runtime settings - - - - - - Indicated the opc ua settings in runtime settings - - - - - - Indicates the process diagnostics runtime settings - - - - - - Indicates the runtime resource settings.This functionality will be available in future version. - - - - - - Indicated the screen resolution in runtime settings - - - - - - Name of the start up screen for hmi device - - - - - - BitNumberEvaluationType enum to select values when multibit is on. - - - - - Exact match for bit selection - - - - - Least significant bit for bit selection - - - - - Criteria Analysis Extended Text - - - - - None - - - - - EventText - - - - - InfoText - - - - - AdditionalText1 - - - - - AdditionalText2 - - - - - AdditionalText3 - - - - - AdditionalText4 - - - - - AdditionalText5 - - - - - AdditionalText6 - - - - - AdditionalText7 - - - - - AdditionalText8 - - - - - AdditionalText9 - - - - - Extend text With - - - - - The First Faulty Operand - - - - - All Faulty Operand - - - - - ScreenResolution - - - - - ScreenResolution1980X1280 - - - - - ScreenResolution1920X1200 - - - - - ScreenResolution1920X1080 - - - - - ScreenResolution1680X1050 - - - - - ScreenResolution1600X1200 - - - - - ScreenResolution1440X900 - - - - - ScreenResolution1366X768 - - - - - ScreenResolution1280X1024 - - - - - ScreenResolution1280X800 - - - - - ScreenResolution1200X1920 - - - - - ScreenResolution1200X1600 - - - - - ScreenResolution1080X1980 - - - - - ScreenResolution1080X1920 - - - - - ScreenResolution1050X1680 - - - - - ScreenResolution1024X1280 - - - - - ScreenResolution1024X768 - - - - - ScreenResolution900X1440 - - - - - ScreenResolution800X1280 - - - - - ScreenResolution800X600 - - - - - ScreenResolution800X480 - - - - - ScreenResolution768X1366 - - - - - ScreenResolution768X1024 - - - - - ScreenResolution640X480 - - - - - ScreenResolution600X800 - - - - - ScreenResolution480X800 - - - - - ScreenResolution480X640 - - - - - ScreenResolution480X272 - - - - - ScreenResolution320X240 - - - - - ScreenResolution272X480 - - - - - ScreenResolution240X320 - - - - - ScreenResolution240X80 - - - - - StorageLocation - - - - - None Storage Medium - - - - - Off Storage Medium - - - - - Default StorageMedium - - - - - Local Storage Medium - - - - - SDX51 Storage Medium - - - - - USBX61 Storage Medium - - - - - USBX62 Storage Medium - - - - - Internal Storage Medium - - - - - ProjectFolder Storage Medium - - - - - Dummy Description - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Export script module - - Location where the script module should be exported - System.Collections.Generic.IEnumerable<System.IO.FileInfo> - - - - Export script module with specific file name - - Location where the script module should be exported - Name of the exported file - System.Collections.Generic.IEnumerable<System.IO.FileInfo> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Name attribute description - - - - - - Script Module Description - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Export scripts - - Path to destinationLocation - System.Collections.Generic.IEnumerable<System.IO.FileInfo> - - - - Import scripts - - path to sourcelocation - System.Boolean - - - - Import scripts - - path to sourcelocation - Name of the imported file - System.Boolean - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Base class for all screens and screen objects. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Validates the object - - System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Dynamization collection - - - - - - EOM parent of this object - - - - - - Property event handlers - - - - - - Migration hint: Was called RulerView in Classic - - - - - Base class for all controls that can be shown within a window - - - - - Base class for anything that is potentially displayed within a window, such as screen windows or advanced controls - - - - - Base class for all screen items that can be configured within a screen - - - - - This feature carries all properties that are shared by screen items and the TopLevelScreenWindow (which do not share some base class in the screen model) - - - - - Specifies whether the selected object can be operated in runtime - - - - - - Configured name of the screen item - - - - - - StyleItem's class will be resolved by name - - - - - - Screen items specifying a tab index of 0 are not part of the tab order - - - - - - Specifies whether the selected object is visible - - - - - - Specifies the identifier feature of the object - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Read-Only property to summarize the current quality of the complete screen item - - - - - - Specifes whether the specified object can be operated in runtime. - - - - - - Configured name of the screen item - - - - - - With this Property, screen items can be configured to show no focus rect even if they have focus - - - - - - Specifies the style which is applied to the object - - - - - - Screen items specifying a tab index of 0 are not part of the tab order - - - - - - Specifies the visiblity of screen item. - - - - - - This feature defines all properties that are needed for a bounding box (widgets, windows and controls) or surface (non-centric shapes) - - - - - Specifies height in device independent units - - - - - - Specifies X coordinates in device independent units - - - - - - Specifies Y coordinates in device independent units - - - - - - Specifies width in device independent units - - - - - - This feature carries all properties relevant for (screen) windows, since HmiTopLevelScreenWindow is a root element that cannot be configured within a screen and does therefor not inherit from HmiScreenItemBase - - - - - Text to be shown in the caption of a screen window or windowed control - - - - - - Specifies the color of the Caption - - - - - - Specifes the icon on the window - - - - - - Specifies the window configuration like ShowCaption, ShowBorder, AlwaysOnTop. - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Text to be shown in the caption of a screen window or windowed control - - - - - - Specifies the color of the Caption - - - - - - Specifies height of the control window - - - - - - specifies the icon on the control window - - - - - - Specifies the value of the X coordinates of control window - - - - - - Specifies the value of the Y coordinates of control window - - - - - - Specifies the width of the control window - - - - - - Specifies the window configuration like ShowCaption, ShowBorder, AlwaysOnTop. - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the background color - - - - - - Returns the StatusBar object - - - - - - Returns the ToolBar object - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies whether the TrendCompanion snaps to the window of the associated TrendControls - - - - - - Container base - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Contained type - - - - - - HmiCustomWebControlContainer - - - - - TODO: Description needs to updated - - - - - Specifies access control for the screen item - - - - - - If set to true, the screen item configured within the screen (or a parent screen if not configured locally) enables the screen item only when the release button while the button is pressed - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiCustomWebControlContainer - - - - - - Interface properties Collection - - - - - - EOM parent of this object - - - - - - Specifies access control for the screen item - - - - - - If set to true, the screen item configured within the screen (or a parent screen if not configured locally) enables the screen item only when the release button while the button is pressed - - - - - - HmiCustomWidgetContainer - - - - - This base class is used for all simple screen items, which are all shapes and widgets but no advanced controls - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies access control for the screen item - - - - - - Specifies the opacity of the object values ranging (0 to 1) - - - - - - If set to true, the screen item configured within the screen (or a parent screen if not configured locally) enables the screen item only when the release button while the button is pressed - - - - - - Specifies ToolTipText - - - - - - Represents rotation feature - - - - - Specifies the rotation angle of the screen item in degree - - - - - - Specifies the Rotation placement wrt center - - - - - - Specifies the X coordinate of the rotation point - - - - - - Specifies the Y coordinate of the rotation point - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiCustomWidgetContainer - - - - - - Interface properties Collection - - - - - - EOM parent of this object - - - - - - in DIU - - - - - - Coordinates in DIU - - - - - - Specifies the rotation angle of the screen item in degree - - - - - - Specifies the RotationCenterPlacement works - - - - - - Specifies the X coordinate of the rotation point - - - - - - Specifies the Y coordinate of the rotation point - - - - - - Coordinates in DIU - - - - - - Visualize Quality - - - - - - in DIU - - - - - - This is the base class used by screens and screen templates - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies display name propoerty of the screen - - - - - - Specifies name of the screen. - - - - - - HmiScreenItemBaseComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create new object - - Name - Siemens.Engineering.HmiUnified.UI.Base.HmiScreenItemBase - - - - Create new custom container object - - Name - ContainedType Value - Siemens.Engineering.HmiUnified.UI.Base.HmiScreenItemBase - - - - Find - - Name - Siemens.Engineering.HmiUnified.UI.Base.HmiScreenItemBase - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Migration hint: Combines HmiFunctionTrend and HmiOnlineTrend functionality - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The space between TrendAreas - - - - - - Specifies whether extend ruler to axis. - - - - - - Specifies legend of the trendcontrol. - - - - - - Online = Diagram is updated with new values, Offline = Diagram is frozen, no new values are added - - - - - - TODO: Description needs to updated - - - - - - Specify whether to show ruler - - - - - - Control to display active pending alarms from the alarm service - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiAlarmControl - - - - - - EOM parent of this object - - - - - - Defines the flashing rate for alarms which have to be acknowledged - - - - - - Only considered with source type "ActiveAlarms" - - - - - - Only considered with source type "AlarmDefinition" - - - - - - Specifies the source of the alarms of the alarm window - - - - - - Accepts only columns of type HmiAlarmStatisticsColumnPart - - - - - - Accepts only columns of type HmiAlarmColumnPart - - - - - - Migration hint: Was "AutoScroll" in Classic - - - - - - If none of the Columns has a sort criteria, the DefaultSortDirection of the control is applied to the time column - - - - - - The specification of the filter syntax is defined in SDS CHROM General (please refer to "Query Language" chapter 4 - - - - - - Defines the flashing rate for alarms which have to be reset - - - - - - Supresses any flashing at control level - - - - - - Positive numbers according to the Microsoft time zone index value specification, negative numbers from CHROM (-1 = RH local) - - - - - - Specifies whether the configured color of the alarm is used - - - - - - Screenitem for managing ParameterControl (successor of classic Panel RecipeView) - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiDetailedParameterControl - - - - - - EOM parent of this object - - - - - - Specifies the type of table editing - - - - - - Specifies the font of the text - - - - - - Specifies the font color - - - - - - By enabling this property, the visibility of table can be controlled to make sure data is displayed only to authorised user - - - - - - If configured, the control won't allow changing the parameter set type - - - - - - Accepts only columns of type HmiDetailedParameterControlColumnPart - - - - - - Specifies the background color of the selected cells - - - - - - Specifies the foreground color of the selected cells - - - - - - Positive numbers according to the Microsoft time zone index value specification, negative numbers from CHROM (-1 = RH local) - - - - - - Faceplate concept according to SDS CHROM 30 Screens - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiFaceplateContainer - - - - - - Interface properties Collection - - - - - - EOM parent of this object - - - - - - Specifies whether the faceplate or container window shall adapt its size - - - - - - Specifies the rotation angle of the screen item in degree - - - - - - Specifies the RotationCenterPlacement works - - - - - - Specifies the X coordinate of the rotation point - - - - - - Specifies the Y coordinate of the rotation point - - - - - - Screenitem for displaying different function trends - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiFunctionTrendControl - - - - - - FunctionTrendAreas Collection - - - - - - EOM parent of this object - - - - - - Represents a media player embedded in a screen - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiMediaControl - - - - - - EOM parent of this object - - - - - - Specifies whether Autoplay is activated - - - - - - source of the media to be played (e - - - - - - Specifies the scaling of the video output - - - - - - Screenitem for managing different processes - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiProcessControl - - - - - - EOM parent of this object - - - - - - Specifies the type of table editing - - - - - - Specifies start and stop of the updating - - - - - - Accepts exactly one column of type HmiTimeRangeColumnPart and multiple HmiProcessColumnPart - - - - - - Used as kind of smoothing together with Factor - - - - - - Used as kind of smoothing together with Base - - - - - - Positive numbers according to the Microsoft time zone index value specification, negative numbers from CHROM (-1 = RH local) - - - - - - Control to display diagnostic information of devices connected - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiSystemDiagnosisControl - - - - - - EOM parent of this object - - - - - - Specifies Matrix View properties - - - - - - Show Status Path - - - - - - Accepts only columns of type HmiDataGridColumnPart - - - - - - Specifies System Diagnosis View Type Matrix or Diagnosis - - - - - - Positive numbers according to the Microsoft time zone index value specification, negative numbers from CHROM (-1 = RH local) - - - - - - Migration hint: Formerly known as HmiRulerView in Classic - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiTrendCompanion - - - - - - EOM parent of this object - - - - - - Specifies wether the companion will always be shown, or just if the parent's ShowRuler property is set - - - - - - Returns the SourceTrendControl object - - - - - - Positive numbers according to the Microsoft time zone index value specification, negative numbers from CHROM (-1 = RH local) - - - - - - Specifies the window display of TrendCompanion - - - - - - Accepts only columns of type HmiTrendColumnPart - - - - - - Accepts only columns of type HmiTrendColumnPart - - - - - - Accepts only columns of type HmiTrendColumnPart - - - - - - Takes trend controls back color as back color for each row in the grid - - - - - - Takes the individual trend color as font color for the corresponding entry in the grid - - - - - - Screenitem for managing different trends - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiTrendControl - - - - - - EOM parent of this object - - - - - - TrendAreas Collection - - - - - - Specifies whether the ruler is shown for the statistics area - - - - - - Positive numbers according to the Microsoft time zone index value specification, negative numbers from CHROM (-1 = RH local) - - - - - - Widget that can display Web content - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiWebControl - - - - - - EOM parent of this object - - - - - - String formatted URL pointing to the address the web browser shall display - - - - - - Base dynamization - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Dynamization type - - - - - - Property name - - - - - - Dynamization collection - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates dynamization object - - Property name - Siemens.Engineering.HmiUnified.UI.Dynamization.DynamizationBase - Consistency check failure - - - - Finds the dynamization - - Name of the property - Siemens.Engineering.HmiUnified.UI.Dynamization.DynamizationBase - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Type of dynamization - - - - - No dynamization - - - - - Tag dynamization - - - - - Script dynamization - - - - - Resource list dynmization - - - - - Flashing dynamization - - - - - Resource list dynamization - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Resource list object name - - - - - - Tag object name - - - - - - Tag dynamization - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Address of the tag - - - - - - Data type of the tag - - - - - - Plc Tag Name associated with Hmi Tag - - - - - - Read only - - - - - - Tag for the dynamization - - - - - - Use indirect addressing - - - - - - Value Converter - - - - - - Flashing condition - - - - - Flashing is always inactive - - - - - Flashing is active at any time - - - - - Flashing is only active if one of the TagDynamics associated with the same screen item indicates a range violation - - - - - Flashing dynamization - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Alternate color - - - - - - Default color - - - - - - Flashing condition - - - - - - Flashing rate - - - - - - Flashing rate - - - - - Flashing toggles between on and off state every 2 seconds (0.5 Hz) - - - - - Flashing toggles between on and off state every second (1 Hz) - - - - - Flashing toggles between on and off state every 500 milliseconds (2 Hz) - - - - - Hmi Script interface - - - - - Checks the syntax of the script - - Siemens.Engineering.HmiUnified.Common.HmiValidationResult - - - - Script method is async - - - - - - Global definition area script - - - - - - Script code - - - - - - Script dynamization - - - - - Checks the syntax of the script - - Siemens.Engineering.HmiUnified.Common.HmiValidationResult - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Script method is async - - - - - - Global definition area script - - - - - - Script code - - - - - - Trigger for script - - - - - - Trigger for script dynamization - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Cycle for duration - - - - - - Tags for trigger - - - - - - Type of trigger - - - - - - Type of trigger - - - - - Disabled trigger - - - - - 1 sec cycle - - - - - 2 sec cycle - - - - - Cycle trigger - - - - - Tags trigger - - - - - 5 sec cycle - - - - - Automatic tags - - - - - 10 sec cycle - - - - - 100ms cycle - - - - - 250ms cycle - - - - - 500ms cycle - - - - - Bitmask type for bitmask entry - - - - - SingleBit - - - - - MultiBit - - - - - Condition Type for Mapping Table - - - - - None - - - - - Range - - - - - Bit mask - - - - - Singe Bit - - - - - Mapping Table for Tag Dynamization - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Mapping Entries - - - - - - EOM parent of this object - - - - - - Condition Type - - - - - - Mapping Table Entries - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Alternate Value - - - - - - Property Flashing - - - - - - Flashing Rate - - - - - - Property Value - - - - - - Mapping Table Composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create singlbit entry and multibit entry - - Select the type of dynamization for creating its entries. - System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.UI.Dynamization.Tag.MappingTableEntryBitmask> - - - - Create Tag dynamization entries - - Siemens.Engineering.HmiUnified.UI.Dynamization.Tag.MappingTableEntryBase - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - MappingTable Entry Bitmask - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - BitDynamizationType - - - - - - Multiple Bits: Condition value is 2 to the power of the bit number which is being configured.Example: For configuring Bit no. 3, condition value will be : 2^3 = 8. Single Bit :Condition value for State 0 of the bit will always be 0. And Condition Value for State 1 will be 2 to the power of the bit number which is being configured. Example : If configuring Bit No. 15, State 0 Condition will be 0 & State 1 Condition will be 2^15 = 32768. - - - - - - Multiple Bits: Relevant value is the Decimal equivalent of all the bits configured. Example : If Bit 2 & 4 are being configured, then Relevant value will be : 2^4 OR 2^2 = 20. Single Bit: Relevant value is the Decimal equivalent of the Single bit being configured. Example : If Bit 15 is being configured, then Relevant value will be : 2^15 = 32768. - - - - - - Mapping Entry Range - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - From - - - - - - Range Type - - - - - - To - - - - - - Range Type - - - - - Range - - - - - From - - - - - To - - - - - Value converter for Tag Dynamization - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Returns Mapping Table information - - - - - - TODO: Description needs to be updated - - - - - None - - - - - TimeAverageStepped - - - - - MinMax - - - - - Possible information to be displayed in an AlarmControl (a - - - - - Undefined - - - - - Alarm Identification - - - - - Name - - - - - Class - - - - - Priority - - - - - Group - - - - - Origin - - - - - Area - - - - - selects detailed view of an alarm; contains additionally the info text, the alarm parameter values and comments - - - - - Information - - - - - navigate to alarm source aka loop-in-alarm (at the moment only one target, later on context menu with 0 - - - - - EventText - - - - - AlarmText1 - - - - - AlarmText2 - - - - - AlarmText3 - - - - - AlarmText4 - - - - - AlarmText5 - - - - - AlarmText6 - - - - - AlarmText7 - - - - - AlarmText8 - - - - - AlarmText9 - - - - - AlarmState - - - - - ModificationTime - - - - - RaiseTime - - - - - AcknowledgeTime - - - - - ClearTime - - - - - ResetTime - - - - - SuppresionsState - - - - - EscalationLevel - - - - - Context - - - - - Duration - - - - - AcknowledgmentState - - - - - Value - - - - - ValueQuality - - - - - ValueLimit - - - - - HostName - - - - - UserName - - - - - ProcessValue1 - - - - - ProcessValue2 - - - - - ProcessValue3 - - - - - ProcessValue4 - - - - - ProcessValue5 - - - - - ProcessValue6 - - - - - ProcessValue7 - - - - - ProcessValue8 - - - - - ProcessValue9 - - - - - ProcessValue10 - - - - - ClassSymbol - - - - - StateText - - - - - GroupID - - - - - Hmi AlarmControl Events - - - - - No Event - - - - - AlarmControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - AlarmControl-Deactivated Occurs when a screen item looses the focus. - - - - - AlarmControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. - - - - - AlarmControl-CommandFired - - - - - TODO: Description needs to be updated - - - - - NotConfigured - - - - - ActiveAlarms - - - - - Historical data (replaces Classic's short term, but does not differentiate between short and long term anymore in IOWA) - - - - - Historical data, updates in the archive get notified - - - - - The configuration view consideres the flags defined in ConfigurationViewSetup - - - - - AlarmStatistics - - - - - All time spans are in seconds - - - - - Undefined - - - - - Average time between raise event of annunciated alarms and the raise event of subsequent annunciated alarms - - - - - Average time between raise event of annunciated alarms and their clear event - - - - - Average time between raise event of annunciated alarms and their acknowledgment - - - - - Average time between raise event of annunciated alarms and their reset - - - - - Number of annunciated alarms per time [hour|day|…] - - - - - Sum of times between raise event of annunciated alarms and the raise event of subsequent annunciated alarms - - - - - Sum of times between raise event of annunciated alarms and their clear event - - - - - Sum of times between raise event of annunciated alarms and their acknowledgment - - - - - Sum of times between raise event of annunciated alarms and their reset - - - - - ID - - - - - Name - - - - - Class - - - - - Priority - - - - - Group - - - - - Origin - - - - - Area - - - - - Comments - - - - - Information - - - - - LoopInAlarm - - - - - EventText - - - - - AlarmText1 - - - - - AlarmText2 - - - - - AlarmText3 - - - - - AlarmText4 - - - - - AlarmText5 - - - - - AlarmText6 - - - - - AlarmText7 - - - - - AlarmText8 - - - - - AlarmText9 - - - - - AlarmState - - - - - ModificationTime - - - - - RaiseTime - - - - - AcknowledgeTime - - - - - ClearTime - - - - - ResetTime - - - - - SuppressionState - - - - - EscalationLevel - - - - - Context - - - - - Duration - - - - - AcknowledgmentState - - - - - Value - - - - - ValueQuality - - - - - ValueLimit - - - - - TagName - - - - - Computer - - - - - User - - - - - ProcessValue1 - - - - - ProcessValue2 - - - - - ProcessValue3 - - - - - ProcessValue4 - - - - - ProcessValue5 - - - - - ProcessValue6 - - - - - ProcessValue7 - - - - - ProcessValue8 - - - - - ProcessValue9 - - - - - ProcessValue10 - - - - - ClassSymbol - - - - - StateText - - - - - Migration hint: Was called "HmiBackGraphicAlignment" (and "HmiFillStyleAlignment", which was a subset of the other) in Classic - - - - - The background is filled to fit the windows’s size - - - - - The background is filled to fit the screen's size - - - - - Hmi Bar Events - - - - - No Event - - - - - Bar-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - Bar-Deactivated Occurs when a screen item looses the focus. - - - - - Bar-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - Bar-KeyDown - - - - - Bar-KeyUp - - - - - Bar-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Migration hint: Was called "HmiBarSegmentColoring" in Classic - - - - - Segmented - - - - - was "Entire" - - - - - Full segments are in background - - - - - Background color changes according to current process value and limit colors - - - - - Hmi Button Events - - - - - No Event - - - - - Button-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - Button-Deactivated Occurs when a screen item looses the focus. - - - - - Button-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - Button-KeyDown - - - - - Button-KeyUp - - - - - Button-Down This event is fired whenever a touch point or mouse pointer device's button was released. - - - - - Button-Up This event is fired whenever a touch point or mouse pointer device's button was pressed. - - - - - Button-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - This screen item represents a button that can be operated but has no state - - - - - Button with ordinary edges - - - - - Button with round edges - - - - - Defines how a line's caps are drawn (only valid for line EndType - - - - - Caps are drawn outside of line end's coordinates with a factor of width/2 - - - - - Caps are drawn outside of line end's coordinates with a factor of width/2 - - - - - Caps intersects the line end's coordinates - - - - - Hmi CheckBoxGroup Events - - - - - No Event - - - - - CheckBoxGroup-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - CheckBoxGroup-Deactivated Occurs when a screen item looses the focus. - - - - - CheckBoxGroup-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - CheckBoxGroup-KeyDown - - - - - CheckBoxGroup-KeyUp - - - - - CheckBoxGroup-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Hmi Circle Events - - - - - No Event - - - - - Circle-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - Circle-Deactivated Occurs when a screen item looses the focus. - - - - - Circle-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - Circle-KeyDown - - - - - Circle-KeyUp - - - - - Circle-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Hmi CircleSegment Events - - - - - No Event - - - - - CircleSegment-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - CircleSegment-Deactivated Occurs when a screen item looses the focus. - - - - - CircleSegment-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - CircleSegment-KeyDown - - - - - CircleSegment-KeyUp - - - - - CircleSegment-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Hmi CircularArc Events - - - - - No Event - - - - - CircularArc-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - CircularArc-Deactivated Occurs when a screen item looses the focus. - - - - - CircularArc-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - CircularArc-KeyDown - - - - - CircularArc-KeyUp - - - - - CircularArc-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Hmi Clock Events - - - - - No Event - - - - - Clock-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - Clock-Deactivated Occurs when a screen item looses the focus. - - - - - Clock-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - Clock-KeyDown - - - - - Clock-KeyUp - - - - - Clock-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Hmi ComboBox Events - - - - - No Event - - - - - ComboBox-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - ComboBox-Deactivated Occurs when a screen item looses the focus. - - - - - ComboBox-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - ComboBox-KeyDown - - - - - ComboBox-KeyUp - - - - - ComboBox-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Specifies what kind of content shall be displayed - - - - - Graphic has priority - - - - - GraphicAndText - - - - - Text - - - - - Graphic - - - - - Migration hint: Was called "HmiLineStyle" in Classic - - - - - Solid - - - - - Dash - - - - - Dot - - - - - DashDot - - - - - DashDotDot - - - - - TODO: Description needs to be updated - - - - - None - - - - - Number indicating the current line number or comparable - - - - - Applies only for columns - - - - - Defines the info blocks for HmiDetailedParameterControl - - - - - None - - - - - Has to be available always - - - - - Has to be available always - - - - - ParameterSetElementUnit - - - - - Hmi DetailedParameterControl Events - - - - - No Event - - - - - DetailedParameterControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - DetailedParameterControl-Deactivated Occurs when a screen item looses the focus. - - - - - DetailedParameterControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. - - - - - DetailedParameterControl-CommandFired - - - - - Hmi DotNetControlContainer Events - - - - - No Event - - - - - DotNetControlContainer-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - DotNetControlContainer-Deactivated Occurs when a screen item looses the focus. - - - - - TODO: Description needs to be updated - - - - - None - - - - - Update - - - - - Create - - - - - Delete - - - - - Hmi Ellipse Events - - - - - No Event - - - - - Ellipse-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - Ellipse-Deactivated Occurs when a screen item looses the focus. - - - - - Ellipse-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - Ellipse-KeyDown - - - - - Ellipse-KeyUp - - - - - Ellipse-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Hmi EllipseSegment Events - - - - - No Event - - - - - EllipseSegment-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - EllipseSegment-Deactivated Occurs when a screen item looses the focus. - - - - - EllipseSegment-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - EllipseSegment-KeyDown - - - - - EllipseSegment-KeyUp - - - - - EllipseSegment-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Hmi EllipticalArc Events - - - - - No Event - - - - - EllipticalArc-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - EllipticalArc-Deactivated Occurs when a screen item looses the focus. - - - - - EllipticalArc-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - EllipticalArc-KeyDown - - - - - EllipticalArc-KeyUp - - - - - EllipticalArc-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Hmi FaceplateContainer Events - - - - - No Event - - - - - FaceplateContainer-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - FaceplateContainer-Deactivated Occurs when a screen item looses the focus. - - - - - Defines the direction an object's fill level will be rendered - - - - - BottomToTop - - - - - TopToBottom - - - - - LeftToRight - - - - - RightToLeft - - - - - TODO: Description needs to be updated - - - - - Solid - - - - - Transparent - - - - - BackwardDiagonal - - - - - Cross - - - - - DiagonalCross - - - - - ForwardDiagonal - - - - - Horizontal - - - - - Vertical - - - - - GradientHorizontal - - - - - GradientVertical - - - - - GradientForwardDiagonal - - - - - GradientBackwardDiagonal - - - - - GradientHorizontalTricolor - - - - - GradientVerticalTricolor - - - - - GradientForwardDiagonalTricolor - - - - - GradientBackwardDiagonalTricolor - - - - - TODO: Description needs to be updated - - - - - 2 s - - - - - 1 s - - - - - 500 ms - - - - - Discribes font names supported in WinCC - - - - - Arial - - - - - Times New Roman - - - - - SimSun - - - - - Siemens Sans - - - - - Allows to specify how some text shall be striked out - - - - - None - - - - - Single - - - - - Allows to specify a text's font weight - - - - - Light - - - - - Normal - - - - - SemiBold - - - - - Bold - - - - - None - - - - - Hmi FunctionTrendControl Events - - - - - No Event - - - - - FunctionTrendControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - FunctionTrendControl-Deactivated Occurs when a screen item looses the focus. - - - - - FunctionTrendControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. - - - - - FunctionTrendControl-CommandFired - - - - - Hmi Gauge Events - - - - - No Event - - - - - Gauge-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - Gauge-Deactivated Occurs when a screen item looses the focus. - - - - - Gauge-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - Gauge-KeyDown - - - - - Gauge-KeyUp - - - - - Gauge-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - TODO: Description needs to be updated - - - - - The graphic is not scaled and centered if not configured explicitly via a separate property - - - - - was "Stretch" - - - - - The graphic uses all the available space of the control without changing the aspect ratio - - - - - The graphic uses all the available space of the control without changing the aspect ratio - - - - - The graphic is not scaled but repeated in a tiled fashion - - - - - Hmi GraphicView Events - - - - - No Event - - - - - GraphicView-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - GraphicView-Deactivated Occurs when a screen item looses the focus. - - - - - GraphicView-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - GraphicView-KeyDown - - - - - GraphicView-KeyUp - - - - - GraphicView-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - TODO: Description needs to be updated - - - - - None - - - - - Columns - - - - - Rows - - - - - TODO: Description needs to be updated - - - - - None - - - - - Vertical Coarse - - - - - Horizontal Coarse - - - - - Vertical Fine - - - - - Horizontal Fine - - - - - Allows to specify how many cells of a data grid can be selected at the same time - - - - - None - - - - - Single - - - - - Multi - - - - - TODO: Description needs to be updated - - - - - Left - - - - - Center - - - - - Right - - - - - only applicable with layout containers; fallback behaves like Center - - - - - Hmi IOField Events - - - - - No Event - - - - - IOField-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - IOField-Deactivated Occurs when a screen item looses the focus. - - - - - IOField-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - IOField-KeyDown - - - - - IOField-KeyUp - - - - - IOField-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - TwoStates is no more - - - - - Output - - - - - InputOutput - - - - - was "HmiLineEndStyle" - - - - - Line - - - - - was "Arrow" - - - - - was "FilledArrow" - - - - - was "FilledArrowReversed" - - - - - was "Circle" - - - - - was "FilledCircle" - - - - - Hmi Line Events - - - - - No Event - - - - - Line-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - Line-Deactivated Occurs when a screen item looses the focus. - - - - - Line-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - Line-KeyDown - - - - - Line-KeyUp - - - - - Line-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Was called "HmiCornerStyle" - - - - - Round - - - - - was "Flat" - - - - - was "Pointed" - - - - - Hmi ListBox Events - - - - - No Event - - - - - ListBox-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - ListBox-Deactivated Occurs when a screen item looses the focus. - - - - - ListBox-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - ListBox-KeyDown - - - - - ListBox-KeyUp - - - - - ListBox-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - TODO: Description needs to be updated - - - - - None - - - - - Point - - - - - Square - - - - - Circle - - - - - Graphic - - - - - Hmi MediaControl Events - - - - - No Event - - - - - MediaControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - MediaControl-Deactivated Occurs when a screen item looses the focus. - - - - - MediaControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. - - - - - MediaControl-CommandFired - - - - - MediaControl-Paused - - - - - MediaControl-Playing - - - - - MediaControl-Stopped - - - - - TODO: Description needs to be updated - - - - - Horizontal - - - - - Vertical - - - - - Defines the info blocks for HmiOverviewParameterControl - - - - - None - - - - - ParameterSetID - - - - - LastUser - - - - - LastAccess - - - - - Generic columns; starting at 1 - - - - - Generic columns; starting at 2 - - - - - Specifies which drag indicators ("Schleppzeiger") shall be active and displayed - - - - - None - - - - - Low - - - - - High - - - - - Hmi Polygon Events - - - - - No Event - - - - - Polygon-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - Polygon-Deactivated Occurs when a screen item looses the focus. - - - - - Polygon-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - Polygon-KeyDown - - - - - Polygon-KeyUp - - - - - Polygon-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Hmi Polyline Events - - - - - No Event - - - - - Polyline-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - Polyline-Deactivated Occurs when a screen item looses the focus. - - - - - Polyline-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - Polyline-KeyDown - - - - - Polyline-KeyUp - - - - - Polyline-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Hmi ProcessControl Events - - - - - No Event - - - - - ProcessControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - ProcessControl-Deactivated Occurs when a screen item looses the focus. - - - - - ProcessControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. - - - - - ProcessControl-CommandFired - - - - - TODO: Description needs to be updated - - - - - Bar - - - - - Hair-Line or Needle, depends on the actual screen item - - - - - Floater or comparable, carries also the process value - - - - - BarWithDetailedIndicator - - - - - TODO: Description needs to be updated - - - - - Bad - - - - - Uncertain - - - - - Good - - - - - UpperLimitViolation - - - - - LowerLimitViolation - - - - - Uninitialized or undefined - - - - - Hmi RadioButtonGroup Events - - - - - No Event - - - - - RadioButtonGroup-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - RadioButtonGroup-Deactivated Occurs when a screen item looses the focus. - - - - - RadioButtonGroup-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - RadioButtonGroup-KeyDown - - - - - RadioButtonGroup-KeyUp - - - - - RadioButtonGroup-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Hmi Rectangle Events - - - - - No Event - - - - - Rectangle-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - Rectangle-Deactivated Occurs when a screen item looses the focus. - - - - - Rectangle-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - Rectangle-KeyDown - - - - - Rectangle-KeyUp - - - - - Rectangle-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - TODO: Description needs to be updated - - - - - In DIU - - - - - In absence of HmiBoxFeature relative to CenterX, CenterY, otherwise relative to the box's natural center pointer - - - - - In DIU - - - - - TODO: Description needs to be updated - - - - - None - - - - - Labels - - - - - Ticks - - - - - Formerly known as "HmiBarScalingType" - - - - - Linear - - - - - Logarithmic - - - - - NegativeLogarithmic - - - - - Tangent - - - - - Quadratic - - - - - Cubic - - - - - Hmi Screen Events - - - - - No Event - - - - - Screen-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - Screen-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Screen-Loaded Occurs when a screen is loaded (opened). - - - - - Screen-Unloaded Occurs when a screen is already cleared (closed). Screen items cannot be accessed anymore. - - - - - Specifies whether the screen or screen window shall adapt its size to each other - - - - - Neither the screen nor the screen window does adapt their sizes - - - - - The screen window adapts its size to fit to the configured screen that is cur-rently shown - - - - - The screen adapts its size to fit to the configured window it is hosted in - - - - - Hmi ScreenWindow Events - - - - - No Event - - - - - ScreenWindow-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - ScreenWindow-Deactivated Occurs when a screen item looses the focus. - - - - - TODO: Description needs to be updated - - - - - The scrollbar is only shown if the content is larger than the available space - - - - - The scrollbar is shown - - - - - The scrollbar is hidden and does not require any space in the UI - - - - - TODO: Description needs to be updated - - - - - For Checkboxes - - - - - For Radio buttons - - - - - TODO: Description needs to be updated - - - - - None - - - - - Vertical - - - - - Horizontal - - - - - TODO: Description needs to be updated - - - - - Left applies for vertical orientation, top for horizontal - - - - - Right applies for vertical orientation, bottom for horizontal - - - - - Hmi Slider Events - - - - - No Event - - - - - Slider-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - Slider-Deactivated Occurs when a screen item looses the focus. - - - - - Slider-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - Slider-KeyDown - - - - - Slider-KeyUp - - - - - Slider-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - TODO: Description needs to be updated - - - - - None - - - - - Ascending - - - - - Descending - - - - - Hmi SymbolicIOField Events - - - - - No Event - - - - - SymbolicIOField-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - SymbolicIOField-Deactivated Occurs when a screen item looses the focus. - - - - - SymbolicIOField-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - SymbolicIOField-KeyDown - - - - - SymbolicIOField-KeyUp - - - - - SymbolicIOField-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - TODO: Description needs to be updated - - - - - Undefined - - - - - Number - - - - - DateTime - - - - - EventMessage - - - - - EventType - - - - - EventState - - - - - Hmi SystemDiagnosisControl Events - - - - - No Event - - - - - SystemDiagnosisControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - SystemDiagnosisControl-Deactivated Occurs when a screen item looses the focus. - - - - - SystemDiagnosisControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. - - - - - SystemDiagnosisControl-CommandFired - - - - - System Diagnosis Control Matrix Block Properties - - - - - Undefined - - - - - Status - - - - - Name - - - - - OperatingState - - - - - Rack - - - - - Slot - - - - - OrderNumber - - - - - Address - - - - - PlantDesignation - - - - - LocationIdentifier - - - - - Subsystem - - - - - Station - - - - - Subslot - - - - - SubAddress - - - - - SoftwareVersion - - - - - Installation - - - - - AdditionaInformation - - - - - ErrorDescription - - - - - ManufacturerID - - - - - HardwareVersion - - - - - ProfileID - - - - - SpecificProfileData - - - - - IandMDataVersion - - - - - SerialNumber - - - - - RevisionCounter - - - - - view types for SysDiag - - - - - Diagnosis - - - - - Matrix - - - - - Hmi TextBox Events - - - - - No Event - - - - - TextBox-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - TextBox-Deactivated Occurs when a screen item looses the focus. - - - - - TextBox-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - TextBox-KeyDown - - - - - TextBox-KeyUp - - - - - TextBox-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Hmi Text Events - - - - - No Event - - - - - Text-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - Text-Deactivated Occurs when a screen item looses the focus. - - - - - Text-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - Text-KeyDown - - - - - Text-KeyUp - - - - - Text-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - Relative Position of a Text (usually in relation to a graphic element) - - - - - Left - - - - - Right - - - - - Top - - - - - Bottom - - - - - Behind - - - - - InFront - - - - - Allows to specify how text is trimmed (with end ellipsis or not) - - - - - None - - - - - Ellipsis are always at the end - - - - - TODO: Description needs to be updated - - - - - NoWrap - - - - - WordWrap - - - - - TODO: Description needs to be updated - - - - - Undefined - - - - - Millisecond - - - - - Second - - - - - Minute - - - - - Hour - - - - - Day - - - - - Month - - - - - Year - - - - - TODO: Description needs to be updated - - - - - TimeRange - - - - - FromBeginToEnd - - - - - PointCount - - - - - Hmi ToggleSwitch Events - - - - - No Event - - - - - ToggleSwitch-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - ToggleSwitch-Deactivated Occurs when a screen item looses the focus. - - - - - ToggleSwitch-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. - - - - - ToggleSwitch-KeyDown - - - - - ToggleSwitch-KeyUp - - - - - ToggleSwitch-Down This event is fired whenever a touch point or mouse pointer device's button was released. - - - - - ToggleSwitch-Up This event is fired whenever a touch point or mouse pointer device's button was pressed. - - - - - ToggleSwitch-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. - - - - - ToggleSwitch-StateChanged - - - - - Hmi TouchArea Events - - - - - No Event - - - - - TouchArea-GestureDetected - - - - - Hmi TrendCompanion Events - - - - - No Event - - - - - TrendCompanion-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - TrendCompanion-Deactivated Occurs when a screen item looses the focus. - - - - - TrendCompanion-Initialized Is fired whenever the control is successfully initialized and the data connection is established. - - - - - TrendCompanion-CommandFired - - - - - Migration hint: Was called HmiRulerView in Classic - - - - - Ruler - - - - - StatisticArea - - - - - StatisticResult - - - - - Hmi TrendControl Events - - - - - No Event - - - - - TrendControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - TrendControl-Deactivated Occurs when a screen item looses the focus. - - - - - TrendControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. - - - - - TrendControl-CommandFired - - - - - TODO: Description needs to be updated - - - - - None - - - - - Name - - - - - Index - - - - - Label - - - - - Show - - - - - TagNameY - - - - - TagNameX - - - - - YValue - - - - - XValueOrTimestamp - - - - - YValueLowerLimit - - - - - TimestampLowerLimit - - - - - YValueUpperLimit - - - - - TimestampUpperLimit - - - - - Minimum - - - - - MinimumTimestamp - - - - - Maximum - - - - - MaximumTimestamp - - - - - Average - - - - - StandardDeviation - - - - - Integral - - - - - WeightedAverageValue - - - - - Duration - - - - - NumberOfValues - - - - - AreaName - - - - - AreaNameLL - - - - - AreaNameHL - - - - - Sum - - - - - TODO: Description needs to be updated - - - - - Points - - - - - Interpolated - - - - - Stepped - - - - - Bar - - - - - Value - - - - - TODO: Description needs to be updated - - - - - Top - - - - - Center - - - - - Bottom - - - - - only applicable with layout containers; fallback behaves like Center - - - - - Defines output of video - - - - - Undefined - - - - - The video is scaled to fit - - - - - The Video is scaled uniformly to fit without cropping - - - - - The Video is scaled uniformly to fill, cropping if necessary - - - - - For details on the predefined filters, please refer to SDS CHROM 12 Alarms - - - - - No alarms are shown - - - - - Show all alarms that are not suppressed - - - - - Show alarms that are disabled - - - - - Show alarms that are suppressed by design - - - - - Show alarms that are shelved - - - - - Hmi WebControl Events - - - - - No Event - - - - - WebControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. - - - - - WebControl-Deactivated Occurs when a screen item looses the focus. - - - - - WebControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. - - - - - WebControl-CommandFired - - - - - Migration hint: Replacevarious booleans used in Classic's ScreenWindow classes - - - - - None - - - - - Window caption is visible - - - - - Window border is visible - - - - - Window is opened on top of all other windows - - - - - Window is resizable - - - - - Window movable - - - - - Window has a 'Maximize' button - - - - - Window has a 'Close' button - - - - - Window cannot be moved out of the parent (Screen, Faceplate, etc - - - - - "Hmi AlarmControl event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiAlarmControlEventHandler - Consistency check failed - - - - FindAction For AlarmControl Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiAlarmControlEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi Bar event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiBarEventHandler - Consistency check failed - - - - FindAction For Bar Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiBarEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi Button event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiButtonEventHandler - Consistency check failed - - - - FindAction For Button Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiButtonEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi CheckBoxGroup event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiCheckBoxGroupEventHandler - Consistency check failed - - - - FindAction For CheckBoxGroup Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiCheckBoxGroupEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi Circle event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiCircleEventHandler - Consistency check failed - - - - FindAction For Circle Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiCircleEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi CircleSegment event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiCircleSegmentEventHandler - Consistency check failed - - - - FindAction For CircleSegment Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiCircleSegmentEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi CircularArc event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiCircularArcEventHandler - Consistency check failed - - - - FindAction For CircularArc Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiCircularArcEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi Clock event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiClockEventHandler - Consistency check failed - - - - FindAction For Clock Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiClockEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi ComboBox event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiComboBoxEventHandler - Consistency check failed - - - - FindAction For ComboBox Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiComboBoxEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi CustomWebControlContainer event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Returns valid enum values for given event handler - - System.Collections.Generic.IEnumerable<System.String> - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiCustomWebControlContainerEventHandler - Consistency check failed - - - - FindAction For CustomWebControlContainer Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiCustomWebControlContainerEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi CustomWidgetContainer event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Returns valid enum values for given event handler - - System.Collections.Generic.IEnumerable<System.String> - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiCustomWidgetContainerEventHandler - Consistency check failed - - - - FindAction For CustomWidgetContainer Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiCustomWidgetContainerEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi DetailedParameterControl event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiDetailedParameterControlEventHandler - Consistency check failed - - - - FindAction For DetailedParameterControl Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiDetailedParameterControlEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi DotNetControlContainer event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiDotNetControlContainerEventHandler - Consistency check failed - - - - FindAction For DotNetControlContainer Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiDotNetControlContainerEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi Ellipse event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiEllipseEventHandler - Consistency check failed - - - - FindAction For Ellipse Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiEllipseEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi EllipseSegment event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiEllipseSegmentEventHandler - Consistency check failed - - - - FindAction For EllipseSegment Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiEllipseSegmentEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi EllipticalArc event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiEllipticalArcEventHandler - Consistency check failed - - - - FindAction For EllipticalArc Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiEllipticalArcEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi FaceplateContainer event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiFaceplateContainerEventHandler - Consistency check failed - - - - FindAction For FaceplateContainer Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiFaceplateContainerEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi FunctionTrendControl event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiFunctionTrendControlEventHandler - Consistency check failed - - - - FindAction For FunctionTrendControl Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiFunctionTrendControlEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi Gauge event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiGaugeEventHandler - Consistency check failed - - - - FindAction For Gauge Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiGaugeEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi GraphicView event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiGraphicViewEventHandler - Consistency check failed - - - - FindAction For GraphicView Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiGraphicViewEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi IOField event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiIOFieldEventHandler - Consistency check failed - - - - FindAction For IOField Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiIOFieldEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi Line event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiLineEventHandler - Consistency check failed - - - - FindAction For Line Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiLineEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi ListBox event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiListBoxEventHandler - Consistency check failed - - - - FindAction For ListBox Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiListBoxEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi MediaControl event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiMediaControlEventHandler - Consistency check failed - - - - FindAction For MediaControl Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiMediaControlEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi Polygon event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiPolygonEventHandler - Consistency check failed - - - - FindAction For Polygon Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiPolygonEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi Polyline event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiPolylineEventHandler - Consistency check failed - - - - FindAction For Polyline Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiPolylineEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi ProcessControl event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiProcessControlEventHandler - Consistency check failed - - - - FindAction For ProcessControl Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiProcessControlEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi RadioButtonGroup event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiRadioButtonGroupEventHandler - Consistency check failed - - - - FindAction For RadioButtonGroup Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiRadioButtonGroupEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi Rectangle event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiRectangleEventHandler - Consistency check failed - - - - FindAction For Rectangle Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiRectangleEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi Screen event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiScreenEventHandler - Consistency check failed - - - - FindAction For Screen Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiScreenEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi ScreenWindow event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiScreenWindowEventHandler - Consistency check failed - - - - FindAction For ScreenWindow Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiScreenWindowEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi Slider event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiSliderEventHandler - Consistency check failed - - - - FindAction For Slider Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiSliderEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi SymbolicIOField event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiSymbolicIOFieldEventHandler - Consistency check failed - - - - FindAction For SymbolicIOField Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiSymbolicIOFieldEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi SystemDiagnosisControl event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiSystemDiagnosisControlEventHandler - Consistency check failed - - - - FindAction For SystemDiagnosisControl Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiSystemDiagnosisControlEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi TextBox event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiTextBoxEventHandler - Consistency check failed - - - - FindAction For TextBox Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiTextBoxEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi Text event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiTextEventHandler - Consistency check failed - - - - FindAction For Text Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiTextEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi ToggleSwitch event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiToggleSwitchEventHandler - Consistency check failed - - - - FindAction For ToggleSwitch Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiToggleSwitchEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi TouchArea event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiTouchAreaEventHandler - Consistency check failed - - - - FindAction For TouchArea Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiTouchAreaEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi TrendCompanion event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiTrendCompanionEventHandler - Consistency check failed - - - - FindAction For TrendCompanion Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiTrendCompanionEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi TrendControl event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiTrendControlEventHandler - Consistency check failed - - - - FindAction For TrendControl Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiTrendControlEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - "Hmi WebControl event handler - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Event type - - - - - - Script for button event - - - - - - Button events composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates event - - Event type - Siemens.Engineering.HmiUnified.UI.Events.HmiWebControlEventHandler - Consistency check failed - - - - FindAction For WebControl Event Handler - - Event Type - Siemens.Engineering.HmiUnified.UI.Events.HmiWebControlEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Event handler for properties - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Type of event - - - - - - Name of the property - - - - - - Script for event handler - - - - - - Collection of property event handlers - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates property event handler - - Name of the property - Type of event - Siemens.Engineering.HmiUnified.UI.Events.PropertyEventHandler - Create is not possible - - - - Find the property event handler - - Name of the property - Type of event - Siemens.Engineering.HmiUnified.UI.Events.PropertyEventHandler - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Types of property events - - - - - Property changed event type - - - - - Quality code changed event type - - - - - This feature defines just the arc that is used to express an arc element - - - - - Clock-wise angle - - - - - - A start angle of 0° corresponds with 3 o'clock - - - - - - This feature is used for all shapes that can be filled - - - - - Specifies the AlternateBackColor - - - - - - Specifies the AlternateBorderColor - - - - - - Specifies BackColor - - - - - - Pattern applied to the screen item's background - - - - - - Specifies BorderColor - - - - - - Specifes border width - - - - - - Specifies DashType - - - - - - Specifies FillDirection - - - - - - Percental value indicating some fill level - - - - - - Specifies whether to show fill level. - - - - - - Represents the axis feature - - - - - Color defined for a specific axis (line, ticks, etc) - - - - - - Specifies the display name of the object - - - - - - Serves as key for the axis - - - - - - Specifies whether the selected object is visible. - - - - - - This feature carries all properties that are shared by HmiScreen and HmiFaceplateType - - - - - Secondary color of the screen's background to be used in FillPattern - - - - - - Primary color of the screen's background - - - - - - Specifies the background fill pattern of the screen - - - - - - Graphic to be shown in the screen's background - - - - - - Specifies how the backgraphic is stretched - - - - - - Specifies if the background fills just the screen or the entire window's view - - - - - - States whether the screen is operable at all (‘Enabled’ = true) or not - - - - - - Specifies the dimensions of the screen in device-independend units (DIU) - - - - - - The initial position of screen is defined through the current scrollbar position of the parent Hmi(TopLevel)ScreenWindow If an screen is smaller than its parent window, this alignment is used for positioning - - - - - - The initial position of screen is defined through the current scrollbar position of the parent Hmi(TopLevel)ScreenWindow If an screen is smaller than its parent window, this alignment is used for positioning - - - - - - Specifies the dimensions of the screen in device-independend units (DIU) - - - - - - This feature is used for all line-based shapes, having a starting and end point - - - - - Specifies secondary line color - - - - - - Specifies the type of the line cap like square, round, flat - - - - - - Specifies the line dash type like solid, dash, dot etc - - - - - - Specifies line end type like line, empty arrow, arrow etc - - - - - - Specifies the color of the line - - - - - - Specifies the width of the line - - - - - - Specifies line start type like line, empty arrow, arrow etc - - - - - - This feature holds all properties that are related to measurement units - - - - - Represents feature related to scaling - - - - - Specifies whether the scaling is auto - - - - - - Specifies the color of the label - - - - - - Specifes whether the scale has label or ticks - - - - - - Specifies the tick color - - - - - - Represents all properties used in HmiScreenWindow, HmiPopupScreenWindow (both derived from HmiScreenItemBase) and HmiTopLevelScreenWindow (base class) - - - - - Specifies whether the screen or screen window shall adapt its size - - - - - - Defining the zoom factor for the screen window, which may differ from the zoom factor of the contained screen - - - - - - Specifies the horizontal position of the screen within the screen window in DIU - - - - - - Defines the screen position in the screen window - - - - - - States whether zooming is allowed (‘InteractiveZooming’ = true) or not for this screen window - - - - - - Reference to a screen to be shown in the screen window - - - - - - Name is taken from the current screen when read - - - - - - Number is taken from the current screen when read - - - - - - Specifies the server prefix - - - - - - Specifies the vertical position of the screen within the screen window in DIU - - - - - - Defines the screen position in the screen window - - - - - - Represents the properties required to define the time range - - - - - Specifies the start time of the time range - - - - - - Specifies the end time of the time range - - - - - - Specifiese the the point count for the time range - - - - - - Specifies RangeType like TimeRange, FromBiginToEnd, PointCount. - - - - - - Specifies the TimeRangeFactor Avarage - - - - - - Specifies TimeRangeFactor - - - - - - Usage sample:AlarmControl1 - - - - - Base class for all types of columns within a data grid - - - - - Base class for all screen model parts - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - This property is ignored if the AllowSort=false on the overall screen item is set - - - - - - alpha channel is zero; colors are taken from the HmiDataGridViewPart; otherwise colors are mixed in order from grid to column to cells - - - - - - Returns the Content object - - - - - - The cells of the affected column are enabled or disabled - - - - - - alpha channel is zero; colors are taken from the HmiDataGridViewPart; otherwise colors are mixed in order from grid to column to cells - - - - - - Returns the Header object - - - - - - Specifies the maximum width - - - - - - Specifies the minimum width - - - - - - Unique name for the column within the DataGrid - - - - - - Specifies the format for displaying values - - - - - - Specifies the direction of sorting - - - - - - Index 0 is ignored, starting with 1 (highest) the index specifies the priority of columns and their individual sort order - - - - - - Specifies whether the selected object is visible - - - - - - Specifies the width - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies which component of the alarm is displayed - - - - - - Specifies whether the configured color of the alarm is used - - - - - - This part contains property assocaited with Alarmcolumn part - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - AlarmStatisticBlock - - - - - - Includes properties regarding how the content of the screenitem - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies whether text, graphic or both shall be used for visualization - - - - - - Specifies the type of scaling of the graphic in the screen - - - - - - Specifies the horizontal alignment of a text - - - - - - Fix and absolute spacing in between areas spawn by the content split ratio - - - - - - Defines ratio of graphic to text (0 - - - - - - Position of the text in relation to the element's graphic - - - - - - Specifies the type of trimming of a text if the space is not sufficient - - - - - - Specifies the vertical alignment of a text - - - - - - Button that can be used within control bars, such as within a toolbar - - - - - Can show a graphic and text that can be arranged via content part - - - - - Base class of any element that can be used within a control bar, e - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies access control for the tool- or statusbar element - - - - - - ID can be used to identify a control bar element, e - - - - - - Specifies whether the specified object can be operated in runtime - - - - - - Specifies the font color - - - - - - Specifies the height - - - - - - Specifies the maximum height - - - - - - Specifies the maximum width - - - - - - Specifies the minimum height - - - - - - Specifies the minimum width - - - - - - Specifies the distance of the content from the border - - - - - - Specifies the tooltip text - - - - - - Specifies whether the selected object is visible - - - - - - Specifies the width - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Returns the Content object - - - - - - Specifies the graphic - - - - - - Specifies the labeling - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the second color for a color gradient - - - - - - Specifies the second border color which is displayed for line styles such as Dash - - - - - - Specifies the background color - - - - - - Specifies the line color - - - - - - Specifies the line thickness - - - - - - Specifies the hot(shortcut) key - - - - - - HmiControlBarElementPartBaseComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Label to be used within control bars, such as a tool bar - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the horizontal alignment of a text - - - - - - Specifies the labeling - - - - - - Specifies the vertical alignment of a text - - - - - - Base class for control bars, such as tool and status bars - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Elements Collection - - - - - - EOM parent of this object - - - - - - Specifies the background color - - - - - - Specifies whether the specified object can be operated in runtime - - - - - - Specifies the font of the text - - - - - - Specifies the value of padding - - - - - - Specifies whether tooltips are shown - - - - - - Specifies whether the selected object is visible - - - - - - defines a separator that can be used on a control bar - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Edit field used within HmiToolBar or HmiStatusBar - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the second border color which is displayed for line styles such as Dash - - - - - - Specifies the background color - - - - - - Specifies the line color - - - - - - Specifies the line thickness - - - - - - Specifies whether the text box is write-protected - - - - - - defines property that indicates about the switch's state - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - In pressed state toggle button can have the defined Alternate Graphic - - - - - - In pressed state toggle button can have the defined Alternate text - - - - - - Specifies the hot(shortcut) key - - - - - - Indicator for the switch's state - - - - - - This screen item part specifies the round corners of an area-based screen item - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the radius of the rounding of the bottom left corner - - - - - - Specifies the radius of the rounding of the bottom right corner - - - - - - Specifies the radius of the rounding of top left corner - - - - - - Specifies the radius of the rounding of top right corner - - - - - - This screen item part specifies the curved scale of guage - - - - - TODO: LabelPosition (LeftOrTop, RightOrBottom) to be considered - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies whether automatic scaling is activated - - - - - - Specifies the start of a value range or value range section - - - - - - Number of primary divisions (in between large ticks) - - - - - - Specifies the end of a value range or value range section - - - - - - Specifies the color of the label - - - - - - Specifies the Lable Font - - - - - - Specifies a format pattern that is applied to scale label's and process value indicators - - - - - - Specifies the type of scaling - - - - - - The scaling type has influence on the scale (e - - - - - - Number of secondary divisions (in between small ticks) - - - - - - Specifies the color of the axis scale - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The offset angle clock-wise - - - - - - The angle where the scale starts - - - - - - Hmi Custom Control Interface property - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Parent of the custom properties which are specific to each custom control or custom widgets. - - - - - - Interface property name - - - - - - Value of interface property - - - - - - HmiCustomControlInterfaceComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Checks if a property can be created - - System.Boolean - - - - Checks if a property can be deleted - - System.Boolean - - - - Create Custom Interface - - Siemens.Engineering.HmiUnified.UI.Parts.HmiCustomControlInterface - - - - Find Custom Control Interface - - Name of HmiCustomControlInterface Property - Siemens.Engineering.HmiUnified.UI.Parts.HmiCustomControlInterface - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Part specifying the header for a column - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Returns the Content object - - - - - - Specifies the graphic - - - - - - Specifies the labeling - - - - - - Part specifying properties of DataGridColumn - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Matches the considered column in binding source "ConsideredColumns" property - - - - - - HmiDataGridColumnPartBaseComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Find - - Name - Siemens.Engineering.HmiUnified.UI.Parts.HmiDataGridColumnPartBase - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Settings used within a data grid that apply for all columns and their headers - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies whether the order of the columns can be changed - - - - - - Specifies whether the size of the columns can be changed - - - - - - Specifies the type of content of a column header - - - - - - Specifies the font of the text - - - - - - Specifies the background color of the header - - - - - - Specifies the font color of the headers - - - - - - Specifies the color of the dividing line between column headers - - - - - - Specifies the background color of the header of a selected row or column - - - - - - Specifies the font color of the header of a selected row or column - - - - - - Specifies the type of content of a row header - - - - - - Part that represents a data grid that can be used within advanced controls - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Columns Collection - - - - - - EOM parent of this object - - - - - - Specifies if filter is applied or not - - - - - - Setting this property to true turns all AllowSort properties on the individual columns active (the actual true/false value of the column is used) - - - - - - Specifies the second color for a color gradient - - - - - - Specifies the flashing color for the text - - - - - - Specifies the background color - - - - - - Specifies the inner distance of the contents from the cell frame - - - - - - Specifies whether rows or colums have alternating colors - - - - - - Is the font to be used within the table (cells) - - - - - - Specifies the font color - - - - - - Specifies the color of the grid lines - - - - - - Specifies the visibility of the grid lines - - - - - - Specifies the width of the separator lines in pixels - - - - - - Specifies whether multiple selection is enabled in the table content - - - - - - Returns the HeaderSettings object - - - - - - Specifies the setting for the horizontal scroll bar of the window - - - - - - Specifies the height of all rows of the table in DIU (Device Independent Unit) - - - - - - Specifies whether only the cell or the whole row is included in a selection - - - - - - Specifies the background color of the selected cells - - - - - - Specifies the border color of a selection - - - - - - Specifies the border thickness of a selection - - - - - - Specifies the foreground color of the selected cells - - - - - - Specifies the setting for the vertical scroll bar of the window - - - - - - Part which defines the source data - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Accepts (currently) only HmiTag and HmiLoggingTag - - - - - - Specifies whether the quality of the process value is displayed - - - - - - Part defining properties of DetailedparameterControlColumn - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the parameters of a parameter set - - - - - - Hmi faceplate properties interface - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Interface property name - - - - - - Value of interface property - - - - - - HmiFaceplateInterfaceComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds HmiFaceplateInterface - - Name of HmiFaceplateInterface Property - Siemens.Engineering.HmiUnified.UI.Parts.HmiFaceplateInterface - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - This screen item part specifies a font configuration - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies whether the text is italic - - - - - - Specifies the text font name - - - - - - Font size unit is: DIU - - - - - - Specifies whether the text is striked out - - - - - - Specifies whether the text is underlined - - - - - - Specifies the text is bold - - - - - - Migration hint: trend areas have been named trend windows in Classic - - - - - Base class of HmiTrendAreaPart - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - LeftValueAxes Collection - - - - - - EOM parent of this object - - - - - - RightValueAxes Collection - - - - - - Specifies the background color - - - - - - Grid lines are always shown for the area's inner axes (that's the axis with index=0 in the parts arrays) - - - - - - Specifies the separator line color of the major scaling - - - - - - Specifies the separator line color of the minor scaling - - - - - - Is used as key for the graph area - - - - - - Defines the appearance of the ruler in this area - - - - - - The TrendControl will set the areas proportional to their individual HeightFactors - - - - - - Specifies whether the selected object is visible - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - BottomValueAxes Collection - - - - - - FunctionTrends Collection - - - - - - EOM parent of this object - - - - - - TopValueAxes Collection - - - - - - HmiFunctionTrendAreaPartComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create new object - - Name - Siemens.Engineering.HmiUnified.UI.Parts.HmiFunctionTrendAreaPart - - - - Find - - Name - Siemens.Engineering.HmiUnified.UI.Parts.HmiFunctionTrendAreaPart - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Part defining properties of FunctionTrend - - - - - Base class of HmiTrendPart - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the second color for a color gradient - - - - - - Specifies the background color - - - - - - Specifies the pattern of the background or the fill - - - - - - Specifies the dash type of the frame or the line - - - - - - Specifies the tag for data source of the value axis - - - - - - Specifies the display name - - - - - - Specifies the line color - - - - - - Specifies the line thickness - - - - - - Specifies the point color of the trend - - - - - - Specifies the point width - - - - - - Specifies a graphic element as a dot - - - - - - Specifies the type of dots - - - - - - If Limit colors are defined and quality is uncertain with RangeViolation, colors defined in this part are ignored - - - - - - Only relevant for historical data - - - - - - Specifies whether the selected object is visible - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the date and time for the start time of the time range - - - - - - Specifies the tag for data source of the x value axis - - - - - - Specifies the date and time for the end time of the time range - - - - - - Specifies the number of measurement points from the start time - - - - - - Specifies the type of time range - - - - - - Specifies the basis of the time range - - - - - - Specifies the factor for the time base for defining the time range - - - - - - Specifies the type of trend representation - - - - - - HmiFunctionTrendPartComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create new object - - Siemens.Engineering.HmiUnified.UI.Parts.HmiFunctionTrendPart - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Parts defining properties of HelpLine - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies a value for the object being used or returns it - - - - - - Specifies whether the selected object is visible - - - - - - HmiHelpLinePartComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create new object - - Siemens.Engineering.HmiUnified.UI.Parts.HmiHelpLinePart - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Covers all aspects of special behavior input elements may have in HMI - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Value is written to tag once the screen item loses its focus - - - - - - On focus the last value will be cleared - - - - - - Specifies whether the IOField accepts input while not showing it - - - - - - Part defining properties of legend - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the font of the text - - - - - - Fore color for legend part - - - - - - Specifies whether the selected object is visible - - - - - - Part specifying Matrix view properties - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - HardwareDetails Collection - - - - - - EOM parent of this object - - - - - - SystemDiagnosisHardwareDetailView - - - - - - Specifies tie border width - - - - - - Specifies the tile max height - - - - - - Specifies the tile minimum height - - - - - - Specifies the tile width max - - - - - - Specifies the tile width min - - - - - - Part defining properties of OverviewParameterControlColumn - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the OverviewParameterControlBlock property - - - - - - This screen item part specifies the distance of a screen item's content and it's border - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the distance to the bottom - - - - - - Specifies the value of the X coordinate - - - - - - Specifies the right margin - - - - - - Specifies the value of the Y coordinate - - - - - - Part defining properties of ProcessColumn - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the data source of the value column - - - - - - Part defining properties for identifying the quality - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the color for values of quality Bad, Value cannot be used - - - - - - Specifies the color for values of quality Uncertain, the quality of the value is worse than usual, the value could still be usable. - - - - - - Specifies whether the selected object is visible - - - - - - Part defining properties of ruler - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the line color - - - - - - Specifies the width - - - - - - Migration Hint: was called CustomSegments in Classic - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the start of a value range or value range section - - - - - - Specifies the scaled value for the specified start of a value range or value range section - - - - - - Specifies the display name - - - - - - Specifies the end of a value range or value range section - - - - - - Specifies the scaled value for the specified end of a value range or value range section - - - - - - HmiScalingEntryPartComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create new object - - Siemens.Engineering.HmiUnified.UI.Parts.HmiScalingEntryPart - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - base class for all elements - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - This screen item part represents a single entry to be used within a selection group - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the graphic - - - - - - Specifies whether the entry is selected - - - - - - Specifies the labeling - - - - - - HmiSelectionItemPartComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create new object - - Siemens.Engineering.HmiUnified.UI.Parts.HmiSelectionItemPart - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - A status bar is a specialization of the control bar, which is usually found at the bottom of a control or window - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Part defining property associated with alignment of screenitem - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Migration hint: Former modes UpAndDown and LeftAndRight can be specified by using the BarOriginValue in addition to this orientation - - - - - - This part contains property assocaited with SystemDiagnosisControlColumn part - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies which component of the SystemDiagnosisControl is displayed - - - - - - Part specifying the Detail View Properties of Hardware details - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - HardwareDetails Collection - - - - - - EOM parent of this object - - - - - - Part specifying Hardware Detail Properties - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - SystemDiagnosisMatrixBlock - - - - - - Visible - - - - - - HmiSystemDiagnosisHardwareDetailPartComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create new object - - Siemens.Engineering.HmiUnified.UI.Parts.HmiSystemDiagnosisHardwareDetailPart - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - HmiSystemDiagnosisMatrixColumn properties - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - SystemDiagnosisMatrixBlock - - - - - - This part covers several aspects that are related to text and applied formatting - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the font of the text - - - - - - Specifies the font color - - - - - - Specifies the labeling - - - - - - Specifies whether the selected object is visible - - - - - - Part defining properties of TimeAxis - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Always move visible area with recently added value - - - - - - Specifies whether automatic scaling is activated - - - - - - Color defined for a specific axis (line, ticks, etc) - - - - - - Specifies the date and time for the start time of the time range - - - - - - Specifies the display name - - - - - - Specifies the type of line end - - - - - - Specifies the color of the label - - - - - - Specifies the label font - - - - - - Serves as key for the axis - - - - - - Specifies the format for displaying values - - - - - - Specifies the number of measurement points from the start time - - - - - - Specifies the type of time range - - - - - - Specifies the type of scaling - - - - - - Specifies the color of the axis scale - - - - - - Specifies the basis of the time range - - - - - - Specifies the factor for the time base for defining the time range - - - - - - Specifies whether the selected object is visible - - - - - - HmiTimeAxisPartComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create new object - - Name - Siemens.Engineering.HmiUnified.UI.Parts.HmiTimeAxisPart - - - - Find - - Name - Siemens.Engineering.HmiUnified.UI.Parts.HmiTimeAxisPart - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Part defining properties of timerange - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the date and time for the start time of the time range - - - - - - Specifies the date and time for the end time of the time range - - - - - - Specifies the number of measurement points from the start time - - - - - - Specifies the type of time range - - - - - - Specifies the basis of the time range - - - - - - Specifies the factor for the time base for defining the time range - - - - - - A tool bar is a specialization of the control bar, which can be positioned freely and carries hot keys - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies whether the hotkeys are activated for buttons in the toolbar - - - - - - Part defining properties of trendarea - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - BottomTimeAxes Collection - - - - - - EOM parent of this object - - - - - - TopTimeAxes Collection - - - - - - Trends Collection - - - - - - Defines the appearance of the two statistic rulers in this area - - - - - - HmiTrendAreaPartComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create new object - - Name - Siemens.Engineering.HmiUnified.UI.Parts.HmiTrendAreaPart - - - - Find - - Name - Siemens.Engineering.HmiUnified.UI.Parts.HmiTrendAreaPart - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Part defining properties of trendcolumn - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the properties or evaluated data of the associated TrendControl which are displayed in the column of the TrendCompanion - - - - - - part defining different trends in various controls - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Aggregation applied to logging tags only - - - - - - Specifies the type of trend representation - - - - - - HmiTrendPartComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create new object - - Siemens.Engineering.HmiUnified.UI.Parts.HmiTrendPart - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - BaseClass of both X and Y ValueAxis - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - HelpLines Collection - - - - - - EOM parent of this object - - - - - - ScalingEntries Collection - - - - - - Specifies whether the user scaling is applied - - - - - - Specifies whether the automatic determination of the value range is activated by the minimum and maximum value of the trend - - - - - - Color defined for a specific axis (line, ticks, etc) - - - - - - Specifies the display name - - - - - - Serves as key for the axis - - - - - - Specifies whether the display names of the user scaling are used - - - - - - Specifies whether the selected object is visible - - - - - - Horizontal X axis for values - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - HmiXValueAxisPartComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create new object - - Name - Siemens.Engineering.HmiUnified.UI.Parts.HmiXValueAxisPart - - - - Find - - Name - Siemens.Engineering.HmiUnified.UI.Parts.HmiXValueAxisPart - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Vertical y axis for values - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - HmiYValueAxisPartComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create new object - - Name - Siemens.Engineering.HmiUnified.UI.Parts.HmiYValueAxisPart - - - - Find - - Name - Siemens.Engineering.HmiUnified.UI.Parts.HmiYValueAxisPart - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Specifies screen user group - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of Screen Group - - - - - - EOM parent of this object - - - - - - HmiScreenComposition - - - - - - Specifies name of screen user group - - - - - - ScreenGroupComposition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create - - Name - Siemens.Engineering.HmiUnified.UI.ScreenGroup.HmiScreenGroup - - - - Find - - Name - Siemens.Engineering.HmiUnified.UI.ScreenGroup.HmiScreenGroup - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a screen - - - - - Resize screen as per device display size - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiScreen - - - - - - EOM parent of this object - - - - - - Specifies screen Item composition - - - - - - Secondary color of the screen's background to be used in FillPattern - - - - - - Primary color of the screen's background - - - - - - Specifyies the background fill pattern of the screen - - - - - - Graphic to be shown in the screen's background - - - - - - Specifies how the backgraphic is stretched - - - - - - Specifies if the background fills just the screen or the entire window's view - - - - - - States whether the screen is operable at all (‘Enabled’ = true) or not - - - - - - Specifies the height of the screen in device-independend units (DIU) - - - - - - The initial position of screen is defined through the current scrollbar position of the parent Hmi(TopLevel)ScreenWindow If an screen is smaller than its parent window, this alignment is used for positioning - - - - - - Configured number of the screen - - - - - - The initial position of screen is defined through the current scrollbar position of the parent Hmi(TopLevel)ScreenWindow If an screen is smaller than its parent window, this alignment is used for positioning - - - - - - Specifies the width of the screen in device-independend units (DIU) - - - - - - Screens Composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates New Screen - - Name - Siemens.Engineering.HmiUnified.UI.Screens.HmiScreen - - - - Find - - Name - Siemens.Engineering.HmiUnified.UI.Screens.HmiScreen - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - HmiScreenWindow references an HmiScreen in order to provide screen-in-screen functionality - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiScreenWindow - - - - - - EOM parent of this object - - - - - - Specifies whether the screen or screen window shall adapt its size - - - - - - Defining the zoom factor for the screen window, which may differ from the zoom factor of the contained screen - - - - - - Specifies the horizontal position of the screen within the screen window in DIU - - - - - - Defines the screen position in the screen window - - - - - - States whether zooming is allowed (‘InteractiveZooming’ = true) or not for this screen window - - - - - - Reference to a screen to be shown in the screen window - - - - - - Name is taken from the current screen when read - - - - - - Number is taken from the current screen when read - - - - - - Specifies the server prefix - - - - - - Specifies whether the screen window can swith to window with tab. - - - - - - Specifies the vertical position of the screen within the screen window in DIU - - - - - - Defines the screen position in the screen window - - - - - - Base class for all shapes that have a defined center - - - - - Base class for all shapes - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the rotation angle of the screen item in degree - - - - - - Specifies the RotationCenterPlacement works - - - - - - Specifies the X coordinate of the rotation point - - - - - - Specifies the Y coordinate of the rotation point - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the X coordinate of center. - - - - - - Specifies the Y coordinate of center. - - - - - - This screen item represents a specific shape that can be filled - - - - - Base class for all circular shapes - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the radius - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiCircle - - - - - - EOM parent of this object - - - - - - Secondary color of the circle's background to be used in FillPattern - - - - - - Secondary color of the circle's border to be used in FillPattern - - - - - - Primary color of the screen item's background - - - - - - Pattern applied to the screen item's background - - - - - - Primary color of the screen item's border - - - - - - Specifies the border width - - - - - - Specifies the outer line dash type like solid, dash, dot etc - - - - - - Specifies the fill direction - - - - - - Percental value indicating some fill level - - - - - - Specifies whether to show fill level is shown - - - - - - This screen item represents a specific shape that can be filled - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiCircleSegment - - - - - - EOM parent of this object - - - - - - Clock-wise angle - - - - - - A start angle of 0° corresponds with 3 o'clock - - - - - - This screen item represents a specific shape based on a line - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiCircularArc - - - - - - EOM parent of this object - - - - - - Secondary color of the screen item's line color - - - - - - Clock-wise angle - - - - - - Specifies the type of the cap like square, round, flat - - - - - - Specifies the dash type like solid, dash, dot etc - - - - - - Specifies end type like line, empty arrow, arrow etc - - - - - - Specifies line color - - - - - - Specifies line width - - - - - - A start angle of 0° corresponds with 3 o'clock - - - - - - Specifies start type like line, empty arrow, arrow etc - - - - - - This screen item represents a specific shape that can be filled - - - - - Base class for all elliptical shapes - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the primary axis - - - - - - Specifies secondary axis - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiEllipse - - - - - - EOM parent of this object - - - - - - Secondary color of the screen item's background to be used in FillPattern - - - - - - Secondary color of the screen item's border to be used in FillPattern - - - - - - Primary color of the screen item's background - - - - - - Pattern applied to the screen item's background - - - - - - Specifies border color - - - - - - Specifies the border width - - - - - - Specifies the line dash type like solid, dash, dot etc - - - - - - Specifies fill direction - - - - - - Percental value indicating some fill level - - - - - - Specifies whether to show fill level - - - - - - This screen item represents a specific shape that can be filled - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiEllipseSegment - - - - - - EOM parent of this object - - - - - - Clock-wise angle - - - - - - A start angle of 0° corresponds with 3 o'clock - - - - - - This screen item represents a specific shape based on a line - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiEllipticalArc - - - - - - EOM parent of this object - - - - - - Specifies secondary line color - - - - - - Clock-wise angle - - - - - - Specifies the type of the line cap like square, round, flat - - - - - - Specifies the line dash type like solid, dash, dot etc - - - - - - Specifies line end type like line, empty arrow, arrow etc - - - - - - Specifies the color of the line - - - - - - Specifies the width of the line - - - - - - A start angle of 0° corresponds with 3 o'clock - - - - - - Specifies line start type like line, empty arrow, arrow etc - - - - - - This screen item is a shape that can display graphics - - - - - Base class for all shapes having properties associated with surface - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies height in device independent units - - - - - - Specifies X coordinates in device independent units - - - - - - Specifies Y coordinates in device independent units - - - - - - Specifies width in device independent units - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiGraphicView - - - - - - EOM parent of this object - - - - - - Secondary color of the screen item's background to be used in FillPattern - - - - - - Primary color of the screen item's background to be used in FillPattern - - - - - - Pattern applied to the screen item's background - - - - - - Specifies the direction the fill level will be drawn, usually from bottom to top - - - - - - Percental value indicating some fill level - - - - - - Graphic to be shown - - - - - - Specifies graphic stretch mode like Fill, Uniform, UniformToFill - - - - - - Specifies the distance between the contained graphic and the border - - - - - - Some part of the screen item's area (usually the background) will be filled according to the FillLevel property - - - - - - This screen item represents a specific shape based on a line - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiLine - - - - - - EOM parent of this object - - - - - - Specifies line start type like line, empty arrow, arrow etc - - - - - - Specifies the type of the line cap like square, round, flat - - - - - - Specifies the line dash type like solid, dash, dot etc - - - - - - Specifies line end type like line, empty arrow, arrow etc - - - - - - Specifies the color of the line - - - - - - Specifies the width of the line - - - - - - Specifies line start type like line, empty arrow, arrow etc - - - - - - Relative to surface, not screen - - - - - - Relative to surface, not screen - - - - - - Relative to surface, not screen - - - - - - Relative to surface, not screen - - - - - - HmiPoint to hols X,Y coorinates - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - X coordinate - - - - - - Y coordinate - - - - - - Base class for screen items like polygon, polyline - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Points Collection - - - - - - Specifies the corner style of the polyline - - - - - - HMIPoint Composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create a HmiPoint for give X,Y coordinates - - X coordinate - Y coordinate - Siemens.Engineering.HmiUnified.UI.Shapes.HmiPoint - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - This screen item represents a specific shape that can be filled - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiPolygon - - - - - - EOM parent of this object - - - - - - Secondary color of the screen item's background to be used in FillPattern - - - - - - Secondary color of the screen item's border to be used in FillPattern - - - - - - Primary color of the screen item's background - - - - - - Pattern applied to the screen item's background - - - - - - Specifies the border color - - - - - - Specifies the border width - - - - - - Specifies the outer line dash type like solid, dash, dot etc - - - - - - Specifies the fill direction - - - - - - Percental value indicating some fill level - - - - - - Specifies whether to show fill level is shown - - - - - - This screen item represents a specific shape based on a line - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiPolyline - - - - - - EOM parent of this object - - - - - - Specifies secondary line color - - - - - - Specifies the type of the line cap like square, round, flat - - - - - - Specifies the line dash type like solid, dash, dot etc - - - - - - Specifies line end type like line, empty arrow, arrow etc - - - - - - Specifies the color of the line - - - - - - Specifies the width of the line - - - - - - Specifies line start type like line, empty arrow, arrow etc - - - - - - This screen item represents a specific shape that can be filled - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiRectangle - - - - - - EOM parent of this object - - - - - - Secondary color of the screen item's background to be used in FillPattern - - - - - - Secondary color of the screen item's border to be used in FillPattern - - - - - - Primary color of the screen item's background - - - - - - Pattern applied to the screen item's background - - - - - - Specifies border color - - - - - - Specifies border width - - - - - - Specifies if and to which degree the corners of the rectangle shall be round - - - - - - Specifies the line dash type like solid, dash, dot etc - - - - - - Specifies fill direction - - - - - - Percental value indicating some fill level - - - - - - Specifies whether to show fill level - - - - - - Text without any chrome like border and backcolors - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiText - - - - - - EOM parent of this object - - - - - - Specifies the font - - - - - - Specifies the forecolor - - - - - - Specifies the horizontal text alignment - - - - - - Specifies the text - - - - - - Specifies the vertical text alignment - - - - - - This screenitem represents HmiBar - - - - - This screen item represents a bar that can display a process value - - - - - Base class for all widgets - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Alternate color to be used for the background - - - - - - Specifies the second border color which is displayed for line styles such as Dash - - - - - - Specifies the background color - - - - - - Specifies the line color - - - - - - Specifies the line thickness - - - - - - Specifies the height - - - - - - Specifies the value of the X coordinate - - - - - - Specifies the rotation angle of the screen item in degree - - - - - - Specifies the RotationCenterPlacement works - - - - - - Specifies the X coordinate of the rotation point - - - - - - Specifies the Y coordinate of the rotation point - - - - - - Specifies the value of the Y coordinate - - - - - - Specifies whether the quality of the process value is displayed - - - - - - Specifies the width - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the font of the text - - - - - - Represents the Editable text box object - - - - - - Specifies the color of the normal range - - - - - - Specifies the start value that is visualized - - - - - - Specifies the format for displaying values - - - - - - Defines whether indicators for the highest/lowest value seen have to be shown - - - - - - Specifies the process value - - - - - - Specifies the background color for the process value - - - - - - Used for ProcessIndicator or for Bar in SegementedStatic - - - - - - Defines the visual representation of indicator for the current process value - - - - - - States whether the origin value is an absolute value or if the origin is calculated from a percental declaration between minimum and maximum value - - - - - - Specifies the background color of the scale - - - - - - Specifies the foreground color of the scale - - - - - - The trend Indicator itself is part of the rendering template (e - - - - - - Returns the Title object - - - - - - Specifies the color of the trend view - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiBar - - - - - - EOM parent of this object - - - - - - Specifies the color display of the bar graph - - - - - - Specifies the linear scale of the bar display - - - - - - This screen item represents a button that can be operated but has no state - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiButton - - - - - - EOM parent of this object - - - - - - Graphic shown while the button is pressed/down - - - - - - Text shown while the button is pressed/down - - - - - - Returns the context of a key performance indicator in performance management - - - - - - Specifies the font of the text - - - - - - Color of the button's text - - - - - - Graphic shown while the button is NOT pressed/down - - - - - - Hotkeys are unique within a screen - - - - - - Specifies the distance of the content from the border - - - - - - Text shown while the button is NOT pressed/down - - - - - - This screenitem represents CheckBox - - - - - This screen items represents a group of entries from which one or multiple can be selected - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - SelectionItems Collection - - - - - - Returns the Content object - - - - - - Specifies the font of the text - - - - - - Specifies the font color - - - - - - Specifies the distance of the content from the border - - - - - - Specifies the process value - - - - - - 0 means auto mode, Item height is caliculated automatically - - - - - - Specifies the horizontal alignment of the entries - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiCheckBoxGroup - - - - - - EOM parent of this object - - - - - - Output only, digital clock may ignore properties that apply for analog clock only - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiClock - - - - - - EOM parent of this object - - - - - - Specifies the color of the dial background - - - - - - Specifies the color of the text of the dial - - - - - - Specifies the character set for the dial - - - - - - Defines which details of a dial have to be drawn, e - - - - - - Specifies the color of the graduation of the dial - - - - - - Specifies whether to show the hour-needle or not - - - - - - Specifies whether to show the minutes-needle or not - - - - - - Specifies whether to show the seconds-needle or not - - - - - - Provides time to be displayed; if not configured client locale time is displayed - - - - - - Returns the Title object - - - - - - This screenitem represents HmiGauge - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiGauge - - - - - - EOM parent of this object - - - - - - Specifies the curved scale of the display - - - - - - A field for input and output that can be connected with the process value - - - - - Base class for all widgets that have to handle text among other aspects - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the font of the text - - - - - - Color of the text in the widget - - - - - - Specifies the distance of the content from the border - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiIOField - - - - - - EOM parent of this object - - - - - - Specifies the horizontal alignment of a text - - - - - - Specifies the input/output type - - - - - - Returns the InputBehavior object - - - - - - Describes how the IOField's value will be formatted for display - - - - - - Specifies the process value - - - - - - Specifies the type of trimming of a text if the space is not sufficient - - - - - - Specifies the vertical alignment of a text - - - - - - This screen item can display one or many lines of unformatted text - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Specifies the horizontal alignment of a text - - - - - - Specifies the labeling - - - - - - TextTrimming is only applied in case of TextWrapping=NoWrap - - - - - - Specifies whether lines shall be wrapped in case of not enough screen item width - - - - - - Specifies the vertical alignment of a text - - - - - - This screenitem represents listBox - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiListBox - - - - - - EOM parent of this object - - - - - - Indicates whether one or more entries can be selected in the selection list - - - - - - This screenitem represents RadioButton - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiRadioButtonGroup - - - - - - EOM parent of this object - - - - - - Migration hint: Former properties of HmiSlider in Classic (BackGraphic, ThumbGraphic) are moved into the Rendering Template - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiSlider - - - - - - EOM parent of this object - - - - - - Shows the current formatted value as text in addition to the bar - - - - - - Specifies the background color of the slider - - - - - - Specifies the foreground color of the slider - - - - - - Static position of the current value relative to scale and "bar" - - - - - - While manipulating the sliding control, the value will be written down to process immediately, not only when releasing the control - - - - - - This screen item is a combination of HmiSymbolicIOField and HmiGraphicIOField - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiSymbolicIOField - - - - - - EOM parent of this object - - - - - - Returns the "Content" object. - - - - - - Holds the graphic from the resource list entry valid for the current process value - - - - - - Migration hint: Was known in Classic as "Mode" - - - - - - Specifies the process value - - - - - - Specifies source of the Text or Graphic list to be displayed in the screen object - - - - - - Index of the resource list entry valid for the current process value - - - - - - Specifies the background color of the selected cells - - - - - - Specifies the foreground color of the selected cells - - - - - - Holds the text from the resource list entry valid for the current process value - - - - - - A text box can be used for unformatted input/output of text - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiTextBox - - - - - - EOM parent of this object - - - - - - Specifies whether the text box is write-protected - - - - - - Migration hint: Was known as "HmiSwitch" in Classic - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiToggleSwitch - - - - - - EOM parent of this object - - - - - - Specifies whether the selected object engages after it has been operated in runtime - - - - - - TODO: Description needs to updated - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Events for HmiTouchArea - - - - - - EOM parent of this object - - - - - - Specifies access control for the screen item - - - - - - Specifies the background color - - - - - - in DIU - - - - - - Coordinates in DIU - - - - - - If set to true, the screen item configured within the screen (or a parent screen if not configured locally) enables the screen item only when the release button while the button is pressed - - - - - - Coordinates in DIU - - - - - - in DIU - - - - - - A corporate global library. - - - - - Represents a global library - - - - - Base interface implemented by all libraries - - - - - Searches the global library for a type object using a type GUID as the search criteria - - Globally unique identifier of the type object to be searched for - Siemens.Engineering.Library.Types.LibraryType - - - - Searches the global library for a version object using a version GUID as the search criteria - - Globally unique identifier of the version object to be searched for - Siemens.Engineering.Library.Types.LibraryTypeVersion - - - - Harmonize names and paths from library to project based on the mode specified - - The types and/or folders to be used as 'Harmonize' sources - The devices to be used to harmonize types - This harmonize option controls whether to harmonize the paths and names in the project - - - - Identify all instances in a project that require updating based on the content of this library - - The project to be compared with this library - Used to control whether or not to log out of date instances - Siemens.Engineering.Library.Types.UpdateCheckResult - - - - Identify all instances in a project that require updating based on the content of this library - - The project to be compared with this library - Used to control whether or not to log out of date instances - Siemens.Engineering.Library.Types.UpdateCheckResult - - - - Updates the target library with the latest content from this library. Marking of default version in target is as per default forceUpdateMode parameter, i.e. SetOnlyHigherUpdatedVersionAsDefault. - - The types and/or folders to be used as 'update' sources - Target library to update - - - - Updates the target library with the latest content from this library. Marking of default version in target is as per forceUpdateMode parameter. - - The types and/or folders to be used as 'update' sources - Target library to update - This option controls whether force update should be done on the target library - This option controls whether unused versions should be deleted from updated types in the project library - Options used to select the 'Structure Conflict Resolution Mode ' for the user during the operation. - - - - Updates the project's instances with the latest content from this library. Marking of default version in target is as per default forceUpdateMode parameter, i.e. SetOnlyHigherUpdatedVersionAsDefault. - - The types and/or folders to be used as 'update' sources - Scopes within the project whose instances will be updated. These may be ControllerTargets, HmiTargets, etc. - - - - System folder containing master copies and master copy folders - - - - - - System folder containing library types and library type folders - - - - - - Access to the controller in a compare scenario - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Compare the Library to the other library - - The target library to be compared - Siemens.Engineering.Library.Compare.LibraryCompareResult - - - - Searches the global library for a type object using a type GUID as the search criteria - - Globally unique identifier of the type object to be searched for - Siemens.Engineering.Library.Types.LibraryType - - - - Searches the global library for a version object using a version GUID as the search criteria - - Globally unique identifier of the version object to be searched for - Siemens.Engineering.Library.Types.LibraryTypeVersion - - - - Harmonize names and paths from library to project based on the mode specified - - The types and/or folders to be used as 'Harmonize' sources - The devices to be used to harmonize types - This harmonize option controls whether to harmonize the paths and names in the project - - - - Identify all instances in a project that require updating based on the content of this library - - The project to be compared with this global library - Used to control whether or not to log out of date instances - Siemens.Engineering.Library.Types.UpdateCheckResult - - - - Identify all instances in a project that require updating based on the content of this library - - The project to be compared with this global library - Used to control whether or not to log out of date instances - Siemens.Engineering.Library.Types.UpdateCheckResult - - - - Updates the target library with the latest content from this library. Marking of default version in target is as per default forceUpdateMode parameter, i.e. SetOnlyHigherUpdatedVersionAsDefault. - - The types and/or folders to be used as 'update' sources - Target library to update - - - - Updates the target library with the latest content from this library. Marking of default version in target is as per forceUpdateMode parameter. - - The types and/or folders to be used as 'update' sources - Target library to update - This option controls whether force update should be done on the target library or project - This option controls whether unused versions should be deleted from updated types in the target library - This option used to provide how structural conflicts of a library objects are to be handled during update. - - - - Updates the project's instances with the latest content from this library. Marking of default version in target is as per default forceUpdateMode parameter, i.e. SetOnlyHigherUpdatedVersionAsDefault. - - The types and/or folders to be used as 'update' sources - Scopes within the project whose instances will be updated. These may be ControllerTargets, HmiTargets, etc. - - - - Updates the project's instances with the latest content from this library. Marking of default version in target is as per forceUpdateMode parameter. - - The types and/or folders to be used as 'update' sources - Scopes within the project whose instances will be updated. These may be ControllerTargets, HmiTargets, etc. - This option controls whether force update should be done on the project - This option controls whether unused versions should be deleted from updated types in the project library - Options used to select the 'Structure Conflict Resolution Mode ' for the user during the operation. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - The global libraries comment - - - - - - Global Library language settings - - - - - - Gets master copy system folder - - - - - - EOM parent of this object - - - - - - Gets the library type system folder - - - - - - Author of the Global Library - - - - - - True if the global library has been modified - - - - - - Is the global library open only for read - - - - - - The name of the global library. - - - - - - The path to this global library - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Composition of GlobalLibraries - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Returns a list of LibraryInfo's representing preview state Global Libraries - - System.Collections.Generic.IList<Siemens.Engineering.Library.GlobalLibraryInfo> - - - - Opens the specified global library - - The global library info associated with a global library to be opened - Siemens.Engineering.Library.GlobalLibrary - - - - Opens the specified global library - - Path to the global library - The open mode to open the global library with. - Siemens.Engineering.Library.UserGlobalLibrary - - - - Opens the specified global library and allows for upgrade of older versions if possible. - - Path to the global library - Siemens.Engineering.Library.UserGlobalLibrary - - - - Retrieves an archived library - - The path of the archived library file - The path to the folder where library would be retrieved. - The open mode to open the global library with. - Siemens.Engineering.Library.UserGlobalLibrary - - - - Retrieves a library from an archive and upgrades it to the current version - - The path of the archived library file - The path to the folder where library would be retrieved. - The open mode to open the global library with. - Siemens.Engineering.Library.UserGlobalLibrary - - - - Create a new global library with directory and name - - The directory to create the global library in - Name of the global library - Siemens.Engineering.Library.GlobalLibrary - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents information for a Global Library - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Returns a Boolean representing if the global library associated with this GlobalLibraryInfo is already open or not. - - - - - - True if the globa library is currently read only. - - - - - - The Global Library Type - - - - - - The name of the global library. - - - - - - The full library path. - - - - - - Represents the GlobalLibrary Types such as System, User, or Corporate - - - - - Indicates the System Library - - - - - Indicates the Corporate Library - - - - - Indicates the User Library - - - - - Library archivation modes - - - - - None - No special action are taken with the orginial files. Mode is similiar to a "save as" operation. - - - - - Compressed - Original Library files are archived in compressed format - - - - - DiscardRestorableData - It is similar to None mode and additionally discards the restorable data - - - - - In DiscardRestorableData and Compressed mode restorable data is discarded and compressed archive file is created. - - - - - Option to use for export (None , WithLibraryVersionInfoFile..etc.) - - - - - Export only domain documents - - - - - Export documents and library version info file - - - - - Export only library version info file,export format is ignored - - - - - Represents the project library - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Cleans up the library to delete unused versions of types based on the cleanUpMode specified. - - The types and/or folders to be used as 'CleanUp' sources - This cleanup option controls whether to preserve default version of unused type or delete the whole type in the project library - This exception is thrown when this action is invoked on a library which is read only. - - - - Compare the Library to the other library - - The target library to be compared - Siemens.Engineering.Library.Compare.LibraryCompareResult - - - - Searches the global library for a type object using a type GUID as the search criteria - - Globally unique identifier of the type object to be searched for - Siemens.Engineering.Library.Types.LibraryType - - - - Searches the global library for a version object using a version GUID as the search criteria - - Globally unique identifier of the version object to be searched for - Siemens.Engineering.Library.Types.LibraryTypeVersion - - - - Harmonize names and paths from library to project based on the mode specified - - The types and/or folders to be used as 'Harmonize' sources - The devices to be used to harmonize types - This harmonize option controls whether to harmonize the paths and names in the project - - - - Identify all instances in a project that require updating based on the content of this library - - The project to be compared with this global library - Used to control whether or not to log out of date instances - Siemens.Engineering.Library.Types.UpdateCheckResult - - - - Identify all instances in a project that require updating based on the content of this library - - The project to be compared with this global library - Used to control whether or not to log out of date instances - Siemens.Engineering.Library.Types.UpdateCheckResult - - - - Updates the target library with the latest content from this library. Marking of default version in target is as per default forceUpdateMode parameter, i.e. SetOnlyHigherUpdatedVersionAsDefault. - - The types and/or folders to be used as 'update' sources - Target library to update - - - - Updates the target library with the latest content from this library. Marking of default version in target is as per forceUpdateMode parameter. - - The types and/or folders to be used as 'update' sources - Target library to update - This option controls whether force update should be done on the target library - This option controls whether unused versions should be deleted from updated types in the project library - Options used to select the 'Structure Conflict Resolution Mode ' for the user during the operation. - - - - Updates the project's instances with the latest content from this library. - - The types and/or folders to be used as 'update' sources - Scopes within the project whose instances will be updated. These may be ControllerTargets, HmiTargets, etc. - - - - Updates the project's instances with the latest content from this library. - - The types and/or folders to be used as 'update' sources - Scopes within the project whose instances will be updated. These may be ControllerTargets, HmiTargets, etc. - This option controls whether unused versions should be deleted from updated types in the project library - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets master copy system folder - - - - - - EOM parent of this object - - - - - - Gets the library type system folder - - - - - - Represents a System Library - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents a User Global Library - - - - - Archives the User Global library. - - Directory where the library to be archived - File name for the archived file - Archivation mode - - - - Performs the cleanup on the GlobalLibrary, without deleting the complete types. - - The types and/or folders to be used as 'CleanUp' sources - This exception is thrown when this action is invoked on a library which is read only. - - - - Closes the User Library - - - - - Saves the User Library - - - - - Save a User Library to another location - - The target directory path to save the User Library - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The list of possible states of detail compare result - - - - - Objects are different - - - - - Objects are identical - - - - - When filters are applied, objects are not compared - - - - - Summary object that contains the result of comparing two library elements - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Composition of library element properties - - - - - - Result the Compare results on an element - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Detail compare property name - - - - - - The result of comparing the left and right property values - - - - - - Compare left property value - - - - - - Compare right property value - - - - - - Composition of DetailedCompareResultElements - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Summary object that contains the result of a library compare - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Browse to the element containing the result of a given library compare element - - - - - - Compare results on an element - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Browse to the collection of library compare result element - - - - - - EOM parent of this object - - - - - - The result of a comparison - - - - - - Detailed information on the result of a given library compare - - - - - - Left object - - - - - - Left node of a library compare on a single element - - - - - - Right object - - - - - - Right node of a library compare on a single element - - - - - - Composition of CompareResultElements - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The list of possible states of library compare result - - - - - Container contents has one or more differences - - - - - Container content is identical - - - - - Objects are different - - - - - Left object is missing - - - - - Right object is missing - - - - - Objects are identical - - - - - Represents a library master copy - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Compares two master copy objects. - - The target master copy object to be compared - Siemens.Engineering.Library.Compare.DetailedCompareResult - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Content descriptions - - - - - - EOM parent of this object - - - - - - Author of the master copy - - - - - - Creation date of this master copy - - - - - - The name of the MasterCopy - - - - - - Associated MasterCopies - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Composition of MasterCopies - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create from given Master Copy - - Source MasterCopy - Siemens.Engineering.Library.MasterCopies.MasterCopy - - - - Creates a MasterCopy - - Source object from which a MasterCopy is to be created - Siemens.Engineering.Library.MasterCopies.MasterCopy - - - - Finds a given MasterCopy - - Name to find - Siemens.Engineering.Library.MasterCopies.MasterCopy - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Master copy content description - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - name of master coy content - - - - - - Type of master copy content - - - - - - Composition of master copy contents - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Folder containing Master Copies & Master Copy folders - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of MasterCopy user folders - - - - - - Composition of MasterCopies - - - - - - EOM parent of this object - - - - - - The name of the MasterCopy folder - - - - - - The list of possible scenarios supported by master copy 'copy' action parameterization - - - - - Throw an exception if the copied object conflicts with an existing object - - - - - Rename the copied object if it conflicts with an existing object - - - - - Replace an existing object if the copied object conflicts the existing object - - - - - System folder containing Master Copies & Master Copy folders - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - User folder containing Master Copies & Master Copy folders - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the MasterCopy user folder - - - - - - Composition of MasterCopyUserFolders - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates a new master copy user folder. - - The name of the master copy user folder. - Siemens.Engineering.Library.MasterCopies.MasterCopyUserFolder - - - - Finds a given MasterCopy user folder - - Name to find - Siemens.Engineering.Library.MasterCopies.MasterCopyUserFolder - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Cleanup library options to control deletion of types. - - - - - The highest version or default version of type will be exempted from deletion. Types will not be deleted completely. - - - - - Deletes the type if the none of its versions are used in the project. - - - - - Consistency states of the Library types and folders - - - - - None - - - - - State name when the library type or folder is consistent - - - - - State name when the library type or folder is inconsistent, due to Type not using dependencies default version - - - - - State name when the library type or folder is inconsistent, due to Type has duplicate versions - - - - - State name when the library type or folder is inconsistent, due to the Type having non default version instantiation. - - - - - State name when the library type or folder is inconsistent, due to the Type having multiple versions instantiation in same device. - - - - - Options used to control whether or not the operation will proceed if it will affect dependencies - - - - - If dependencies must be created or released, abort the operation - - - - - Automatically create or release any dependencies if required - - - - - Options used to control whether or not the operation will delete unused versions - - - - - If there are any unused versions, delete them - - - - - Do not delete unused versions - - - - - Options used to control whether or not perform force update - - - - - Default version in source library is updated to target and the updated version is marked as default version in target only if source version number is higher than target version number. This option is equivalent to 'force update' checkbox 'Unchecked' in UI. - - - - - Default version in source library is updated to target as default/latest version, irrespective of version number.This option is equivalent to 'force update' checkbox 'Checked' in UI. - - - - - No default version change version change in the target. This enum value should be used during update from project library to project where force update option is not applicable. This option is equivalent to 'force update' checkbox not available in UI. - - - - - Harmonize project options to control harmonizing of paths in project. - - - - - Not supposed to be used. Throws exception if used. - - - - - Harmonize paths of types - - - - - Harmonize names of types - - - - - Composition of LibraryTypes - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a given library type - - Name to find - Siemens.Engineering.Library.Types.LibraryType - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Folder containing library types & library type folders - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of library type user folders - - - - - - EOM parent of this object - - - - - - Composition of library types - - - - - - The name of the library type folder - - - - - - The consistency state of the library type - - - - - - Library instance service - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Library type instance - - - - - - EOM parent of this object - - - - - - Connected version - - - - - - System folder containing library types & library type folders - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the library type system folder - - - - - - User folder containing library types & library type folders - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the library type user folder - - - - - - Composition of LibraryTypeUserFolders - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create - - The name of the library type user folder to be created - Siemens.Engineering.Library.Types.LibraryTypeUserFolder - - - - Finds a given library type user folder - - Name to find - Siemens.Engineering.Library.Types.LibraryTypeUserFolder - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Associated library type versions - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Composition of LibraryTypeVersions - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a given library type version - - VersionNumber to find - Siemens.Engineering.Library.Types.LibraryTypeVersion - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Defines the library version object state - - - - - Library version objects may be modified while in 'in-work' state - - - - - Library version objects are read-only while in 'committed' state - - - - - Options used to select the 'Structure Conflict Resolution Mode' for the user during the update operation - - - - - If UpdateStructure is selected, Source Library structure will be updated in the Target Library. - - - - - If RetainStructure is selected, Target Library retains the same structure. - - - - - If a structure conflict occurs, it throws the EngineeringTargetInvocationException and cancel the operation. - - - - - Used to control verbosity of logging output from the update check - - - - - Identifies only the out of date instances in the project - - - - - Identifies both the out of date instances and the up to date instances in the project - - - - - Result returned from the update check operation - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Log messages explaining the details of the update check - - - - - - EOM parent of this object - - - - - - Log message explaining the details of the update check - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Log messages explaining the details of the update check - - - - - - EOM parent of this object - - - - - - Gets the header for this result of the update check - - - - - - Gets the log messages specific to each description explaining the details of the update check. - - - - - - Composition of UpdateCheckResultMessages - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a Local Session - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Performs a close operation of Multiuser localSession. - - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Performs a commit of opened server project changes. - - The comment for changes being committed. - System.Int32 - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Gets the value that Session is Up-to-date or not. - - System.Boolean - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Performs a save of opened session. - - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Marking Service - - - - - - EOM parent of this object - - - - - - Gives access to the project information - - - - - - Composition of Local sessions - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Performs a open operation of Multiuser localSession. - - The path of local session. - Siemens.Engineering.Multiuser.LocalSession - This exception will be thrown when there is an error while executing Multiuser-Openness API call - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project - - - - Performs a open operation of Multiuser Server Project. - - The path of local session. - Siemens.Engineering.Multiuser.LocalSession - This exception will be thrown when there is an error while executing Multiuser-Openness API call - This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents information about a local session - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The location of the local session. - - - - - - The Unique identifier of a Local Session - - - - - - Provides information about Lock on a project. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets the information about lock owner. - - System.String - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Gets the value that Project is locked or not. - - System.Boolean - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Status of the marked engineering object - - - - - No markstate information available. - - - - - The engineering object is up to date. - - - - - The engineering object is marked by me. - - - - - The engineering object is marked by others. - - - - - Represents information about the markstate of an engineering object. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Is the engineering object a markable object.True for a whitelisted object, False for a blacklisted object. - - - - - - Represents the MarkSate types such as IsMarkedByMe, IsMarkedByOthers and IsUptoDate - - - - - - Represents a non deleted marking. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Gets the mark state of the marked non deleted engineering object. - - - - - - Gets the marked non deleted engineering object. - - - - - - Composition of markings. - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents the marking service navigator. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets the marking related information. - - The engineering object for which the marking information has to be fetched. - Siemens.Engineering.Multiuser.MarkStateInfo - - - - Gets the markings from the opened local session. - - Siemens.Engineering.Multiuser.Markings - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents non deleted markings. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets all the non deleted markings. - - - - - - Gets all the non deleted conflicted markings. - - - - - - EOM parent of this object - - - - - - This exception indicates that exception occured during execution of Multiuser-Openness API call - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Represents a multiuser project - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents Project Server - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Adds project to Multiuser server - - The FileInfo containing the path of the single user project. - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Perform creation of Multiuser Local Session. - - The information about the server project. - Name of the local session. - Path of the local session. - Mode of session creation. - Siemens.Engineering.Multiuser.LocalSessionInfo - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Delete project server connection - - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Perform deletion of Multiuser Local Session. - - The information about the server project. - The information about the local session. - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Performs a get operation of all available local session for the given ServerProjectInfo. - - The information about the server project. - System.Collections.Generic.IList<Siemens.Engineering.Multiuser.LocalSessionInfo> - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Performs a get operation of LockStateProvider. - - The information about the server project. - Siemens.Engineering.Multiuser.LockStateProvider - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Retrieves the available projects info from a specified server. - - System.Collections.Generic.IList<Siemens.Engineering.Multiuser.ServerProjectInfo> - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Set the host name. - - Host name of the server. - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Set the port value. - - Port number of the server. - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Set the protocal value. - - Protocol of the server. - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Host of the server. - - - - - - Port of the server. - - - - - - Alias name of the server. - - - - - - Composition of Project Server - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create project server connection - - Name of the server. - Protocol of the server. - Host name of the server. - Port no of the server - Siemens.Engineering.Multiuser.ProjectServer - This exception will be thrown when there is an error while executing Multiuser-Openness API call - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Protocol - - - - - Creates connection with Https. - - - - - Creates connection with Http. - - - - - Represents information about a server project - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the project. - - - - - - Alias name of the server where project exist. - - - - - - Local session creation mode - - - - - Creates multiuser local session. - - - - - Creates exclusive local session. - - - - - Delegate for OnlineConfiguration callbacks - - - - - - Service provider for online behaviors - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Command to go offline - - - - - Command to go online - - Siemens.Engineering.Online.OnlineState - - - - Delete the Plc Master Secret - - - - - Performs the reset of the plc master secure password - - The new master secret. If the password is NULL the master secret will be deleted. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the connection configuration - - - - - - EOM parent of this object - - - - - - Check the Online state. - - - - - - The list of possible online states - - - - - Online state is Offline - - - - - Online state is Connecting - - - - - Online state is Online - - - - - Online state is not compatible - - - - - Online state is not reachable - - - - - Online state is protected - - - - - Online state is Disconnecting - - - - - Service provides online functionality for R/H systems - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Command to go offline - - - - - Command to go online to the backup PLC - - Siemens.Engineering.Online.OnlineState - - - - Command to go online to the primary Primary - - Siemens.Engineering.Online.OnlineState - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the connection configuration - - - - - - EOM parent of this object - - - - - - Check the Online state of the Backup PLC. - - - - - - Check the Online state of the Primary PLC. - - - - - - Authentication type - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - User type - - - - - - Object that is used to authenticate user. - - - - - Online configuration that provide choices. - - - - - Online configuration base class - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - All current supported user types - - System.Collections.Generic.IList<Siemens.Engineering.Online.Configurations.AuthenticationType> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Is secure communication used. - - - - - - Credentials for online authentication. - - - - - - Credentials that is used to authenticate user. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Set password for legitimation - - The password for legitimation - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The user name to legitimate. - - - - - - The user type to legitimate - - - - - - Online configuration base class for password configurations - - - - - Set password for protected module - - Set password for legitimate the connection - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Passwordconfiguration for read access - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Online configuration for TlsCommunication. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Name of the Plc for this configuration - - - - - - Message to verify if the connection can be trusted. - - - - - - Selection if the connection can be trustable or not. - - - - - The connection is not verified and not trusted - - - - - The connection is verified and trusted - - - - - The connection is verified and not trusted - - - - - A list of all the user types supported by the Plc. - - - - - No legitimation is required - - - - - Legitimation as an anonymous user - - - - - Legitimation as a global user - - - - - Legitimation as a project user - - - - - Single sign-on user - - - - - Legacy legitimation with access level password only - - - - - fingerprint - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - ID of the fingerprint - - - - - - fingerprint data - - - - - - fingerprint id - - - - - Program Code (legacy) fingerprint - - - - - comments fingerprint - - - - - General fingerprint - - - - - LibraryType - - - - - Texts fingerprint - - - - - Alarm fingerprint - - - - - Supervisions - - - - - TechnologyObject fingerprint - - - - - Events fingerprint - - - - - TextualInterface - - - - - Properties - - - - - Program Code fingerprint - - - - - Provides fingerprints. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Read Fingerprint - - System.Collections.Generic.IList<Siemens.Engineering.SW.Fingerprint> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Provides checksums. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Software checksum - - - - - - Represents the software components of a Plc - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Compare the PLC software to the given target - - The target to compare to the PLC software - Siemens.Engineering.Compare.CompareResult - - - - Compare the PLC software to the online target - - Siemens.Engineering.Compare.CompareResult - - - - Update PLC program - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the Plc block system group - - - - - - Gets the Plc external source system group - - - - - - Description for published - - - - - - Gets the Plc tag table system group - - - - - - This system folder can contain technological objects - - - - - - Gets the Plc type system group - - - - - - Get the Plc watch table system group - - - - - - The name of the Plc software - - - - - - The list of possible sw importoptions for Import - - - - - None option. - - - - - Import is not aborted in case of referenced object changed structurally. - - - - - Import is not aborted in case of referenced object is missing. - - - - - Import is not aborted in case of unit related attributes are present. - - - - - Common alarm classes - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Exports common alarm classes to a file - - Path for alarm class export - Siemens.Engineering.SW.Alarm.AlarmClassExportImportResult - - - - Imports common alarm classes from file - - Path to import common alarm classes from - Siemens.Engineering.SW.Alarm.AlarmClassExportImportResult - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Result of an alarm class export or import - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Messages of the alarm class export/import - - - - - - EOM parent of this object - - - - - - Number of errors occured during the process - - - - - - Result state of the process - - - - - - Number of warnings created during the process - - - - - - Messages generated during alarm class export/import - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Description of an error or warning - - - - - - State of the message - - - - - - Collection of alarm class export/import messages - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Result state of common alarm class export or import - - - - - Succesful process - - - - - Succesful process with warnings - - - - - Failed process - - - - - Plc alarm text lists of the PLC or Unit. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Exports text lists to xlsx file. - - Path of the xlsx file to be exported. - Siemens.Engineering.SW.Alarm.TextListXlsxResult - This exception will e thorwn when there is not textlist on the current controller target. - - - - Exports text lists to excel file. - - Path of the xlsx file to be exported. - Optional list of the exportable text list IDs. This parameter can be null (or empty) meaning all text list will be exported. - Optional list of the exportable languages. This parameter can be null (or empty) meaning all languages will be exported. - Siemens.Engineering.SW.Alarm.TextListXlsxResult - - - - - Imports text lists from excel file. - - Path of the xlsx file to be imported. - Options for Import - Siemens.Engineering.SW.Alarm.TextListXlsxResult - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Parent of this object, can be Plc or Unit. - - - - - - Access to alarm text of the PLC or Unit. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Exports alarm instance texts to xlsx file. - - Path of the xlsx file to be exported. - Optional list of the exportable languages. This parameter can be null (or empty) meaning all languages will be exported. - Set export content options. - Siemens.Engineering.SW.Alarm.PlcAlarmTextXlsxResult - - - - Imports alarm instance texts from excel file. - - Path of the xlsx file to be imported. - Optional list of the exportable languages. This parameter can be null (or empty) meaning all languages will be exported. - Siemens.Engineering.SW.Alarm.PlcAlarmTextXlsxResult - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Parent of this object, can be Plc or Unit. - - - - - - Export content options. - - - - - No optional context needed. Only Alarm text will be exported. - - - - - Adds Info Text to exported xlsx file. - - - - - Adds Additional Texts to exported xlsx file. - - - - - Adds Alarm Class to exported xlsx file. - - - - - All optional content will be exported. - - - - - Represents an alarm text export or import result. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Path to the log file. - - - - - - Final state of the alarm texts export or import result. - - - - - - The state of text lists export or import result. - - - - - Import or export finished successfully. - - - - - Import or export finished partially with warnings. - - - - - Import or export process failed. - - - - - Represents a text lists export or import result. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Path to the log file. - - - - - - Final state of the text lists export or import result. - - - - - - The state of text lists export or import result. - - - - - Import or export finished successfully. - - - - - Import or export finished partially with warnings. - - - - - Import or export process failed. - - - - - If the given controller target does not contain any textlist this exception will be thrown. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Represents the system text lists - - - - - Base class for user and system text lists - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Comment of a text list - - - - - - EOM parent of this object - - - - - - ID of Text list - - - - - - Determines the range of values for an element - - - - - - Name of Text list - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition for system text lists - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Access to text lists of the PLC or Unit. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Navigator of system text list composition - - - - - - Navigator of user text list composition - - - - - - Determines the range of values for an element in a text list - - - - - Decimal value of a range type - - - - - Binary value of a range type - - - - - Bit value of a range type - - - - - None value - - - - - Represents the user text lists - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Determines the range of values for an element - - - - - - Name attribute - - - - - - Composition for user text lists - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create a Plc user textlist from a master copy - - The source master copy - Siemens.Engineering.SW.Alarm.TextLists.PlcAlarmUserTextlist - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Class representing array DBs - - - - - Class representing a data block - - - - - Represents a Plc block - - - - - Can generate source. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Simatic ML export of a Plc block - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - - Simatic ML export of a Plc block - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) - - - - - Show the indicated item in the Plc block editor - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Determines if the block gets the block number automatically or manually - - - - - - Last code modification date - - - - - - Last compilation date - - - - - - Creation date of this Plc block - - - - - - PLC header attribute author - - - - - - PLC header attribute family - - - - - - PLC header attribute name - - - - - - PLC header attribute version - - - - - - Last interface modification - - - - - - True if block and used data is consistent - - - - - - Gets the know-how protection status of the block - - - - - - Indicates if a block has been optimized - - - - - - Last modification date including e.g. comments - - - - - - The name of the Plc block - - - - - - The namespace of the given Plc block - - - - - - The number of this Plc block - - - - - - Date of the last parameter modification - - - - - - The language of this block - - - - - - Date of the last structure modification - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Interface to all members of a block - - Block Interface - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The list of possible IECPL block types - - - - - Undefined block type - - - - - Type of Function block - - - - - Type of system function block - - - - - User defined datatype - - - - - Function block template - - - - - System data type - - - - - Class representing a code block - - - - - Exports prodiag alarm information - - path where the file gets exported - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Class representing a code block library type - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Name - - - - - - Class representing a code block library type version - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Represents an FB - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Get supervisions - - - - - - Represents an FC - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents a global DB - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents an instance DB - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The block name of the father instance (FB/SFB/UDT/SDT) - - - - - - Provides Snapshot Value functionality. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Simatic ML export of snapshot values. - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Determines if a block access is optimized or not - - - - - The block access is not optimized - - - - - The block access is optimized - - - - - Represents an OB - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Additional information about the type - - - - - - Enum for OBDataExchangeMode - - - - - None - - - - - Cyclic - - - - - Synchronous - - - - - Enum for Execution - - - - - Never - - - - - Once - - - - - Every_minute - - - - - Hourly - - - - - Daily - - - - - Weekly - - - - - Monthly - - - - - Yearly - - - - - End_of_month - - - - - Enum for TimeMode - - - - - None - - - - - Local - - - - - System - - - - - Composition of PlcBlocks - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create PlcBlock from MasterCopy - - The source master copy - Siemens.Engineering.SW.Blocks.PlcBlock - - - - Create from version - - type version - Siemens.Engineering.SW.Blocks.PlcBlock - - - - Simatic ML import of a Plc block - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.SW.Blocks.PlcBlock> - - - - - Simatic ML import of a Plc block with ignore flags. - - Path to the Simatic ML file - Options to use for Import - Sw import options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.SW.Blocks.PlcBlock> - - - - - Creates a block. - - Name of the block. - Indicates if block is autonumbered. - Number of the block. - Language of the block. - Siemens.Engineering.SW.Blocks.FB - - - - - Creates an instance DB. - - Name of the block. - Indicates if block is autonumbered. - Number of the block. - Name of the block where db belongs to. - Siemens.Engineering.SW.Blocks.InstanceDB - This exception indicates that exception occured during creation of DataBlock. - - - - - Finds a given Plc block - - Name to find - Siemens.Engineering.SW.Blocks.PlcBlock - - - - Find the given Plc block - - Name to find - Namespace to find - Siemens.Engineering.SW.Blocks.PlcBlock - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Group containing Plc blocks & Plc block user groups - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of Plc blocks - - - - - - Composition of Plc block user groups - - - - - - EOM parent of this object - - - - - - The name of the Plc block group - - - - - - Provides protection services. - - - - - Sets protection for the underlying object - - the password to protect the object with - - - - - Removes protection for the underlying object - - the password the underlying object is currently protected with - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - System group containing Plc blocks & Plc block user groups - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Composition of Plc system block groups - - - - - - User group containing Plc blocks & Plc block user groups - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the Plc block user group - - - - - - Composition of PlcBlockUserGroups - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create PlcBlockUserGroup from MasterCopy - - The source master copy - Siemens.Engineering.SW.Blocks.PlcBlockUserGroup - - - - Create PlcBlockUserGroup - - Name of group to be created - Siemens.Engineering.SW.Blocks.PlcBlockUserGroup - - - - Finds a given Plc block user group - - Name to find - Siemens.Engineering.SW.Blocks.PlcBlockUserGroup - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Group containing Plc system blocks & Plc system block groups - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of Plc system blocks - - - - - - Composition of Plc system block groups - - - - - - EOM parent of this object - - - - - - The name of the Plc system block group - - - - - - Composition of PlcSystemBlockGroups - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a given Plc system block group - - Name to find - Siemens.Engineering.SW.Blocks.PlcSystemBlockGroup - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The list of possible creation languages of programming blocks - - - - - Block has no programming language - - - - - Base language STL - - - - - Base language LAD - - - - - Base language FBD - - - - - Optional language SCL - - - - - Base DB language DB - - - - - Optional language Graph7 - - - - - Base language CPU-DB - - - - - Optional language CFC - - - - - Optional language SFC - - - - - Base language IEC conform FBD - - - - - Base language IEC conformant LAD - - - - - Base system DB language SDB - - - - - Process diagnostic - - - - - Optional language RSE - - - - - F conform language STL - - - - - F conform language LAD - - - - - F conform language FBD - - - - - F conform language DB - - - - - F conform language LAD for library blocks - - - - - F conform language FBD for library blocks - - - - - Function Chart Plus language (CFC) - - - - - Optional language FLD - - - - - ProDiag - - - - - ProDiag_OB - - - - - Technological Object Motion_DB - - - - - Autogenerated codeblock for failsafe PLCs - - - - - Cause Effect Matrix - - - - - Supervision - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Supervisions of the block - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - This exception indicates that exception occured during creation of DataBlock. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The text. - - - - Initializes a new instance of the class. - - The text. - The exception. - - - - Initializes a new instance of the class. - - The text. - The detail texts. - - - - Initializes a new instance of the class with serialized data. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - When overridden in a derived class, sets the B with information about the exception. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - - - - Represents an entry in a block - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents the name of the Member - - Name of the Member - - - - Gives all the members of a block - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a Block Member by name - - The name of the Block Member - Siemens.Engineering.SW.Blocks.Interface.Member - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Interface for all blocks - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Represents Members of a block - - Members of block - - - - EOM parent of this object - - - - - - Lists the possible options for block generation from source - - - - - Throws an exception and deletes the blocks if there is any generation error - - - - - All blocks will be kept regardless of any generation errors - - - - - Options for source generation - - - - - Generate source from block without dependent blocks - - - - - Generate source from block with dependent blocks - - - - - Represents a Plc external source - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Creates a block or blocks from the current source file object - - - - - - Creates a block or blocks from the current source file object - - Option to use for block generation from source - System.Collections.Generic.IList<Siemens.Engineering.IEngineeringObject> - - - - - Creates a block or blocks from the current source file object under block user group - - block user group information - Option to use for block generation from source - System.Collections.Generic.IList<Siemens.Engineering.IEngineeringObject> - - - - - Creates a type or types from the current source file object under type user groups - - type user group information - Option to use for type generation from source - System.Collections.Generic.IList<Siemens.Engineering.IEngineeringObject> - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the Plc external source - - - - - - Composition of PlcExternalSources - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create External Source from MasterCopy - - The source master copy - Siemens.Engineering.SW.ExternalSources.PlcExternalSource - - - - Create an external source from a specified file - - Name of Plc external source to be created - Path to the external source file - Siemens.Engineering.SW.ExternalSources.PlcExternalSource - - - - Finds a given Plc external source - - Name to find - Siemens.Engineering.SW.ExternalSources.PlcExternalSource - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Group containing Plc external sources & Plc external source user groups - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of Plc external sources - - - - - - Composition of Plc external source user groups - - - - - - EOM parent of this object - - - - - - The name of the Plc external source group - - - - - - System group containing Plc external sources & Plc external source user groups - - - - - Generates source file. - - Blocks to be exported. - File info of the source file which will be generated - - - - - Generates source file. - - Blocks to be exported. - File info of the source file which will be generated - Configures the source generation - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - User group containing Plc external sources & Plc external source user groups - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the Plc external source user group - - - - - - Composition of PlcExternalSourceUserGroups - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create ExternalSourceUserGroup from MasterCopy - - The source master copy - Siemens.Engineering.SW.ExternalSources.PlcExternalSourceUserGroup - - - - Creates a MasterCopy - - Name of group to be created - Siemens.Engineering.SW.ExternalSources.PlcExternalSourceUserGroup - - - - Finds a given Plc external source user group - - Name to find - Siemens.Engineering.SW.ExternalSources.PlcExternalSourceUserGroup - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Generates loadables files - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Generates a loadable file for blocks in the non unit program - - The path of the loadable file to be created - List of blocks to generate the loadable file - Download target of the loadable file - - - - Generates a loadable file for software units - - The path of the loadable file to be created - List of units to generate the loadable file - Download target of the loadable file - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Target option - - - - - Throws an exception - - - - - Loadable generation for Plc - - - - - Loadable generation for PlcSim - - - - - Top level OpcUa Communication folder - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - OPCUA Server Interface Folder - - - - - - OpcUa Provider - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Access the OpcUa Communication Folder - - - - - - EOM parent of this object - - - - - - OpcUa Reference Namespace - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Exports the original XML File - - Path to the location to save - - - - Import file - - Path to file - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Comment - - - - - - EOM parent of this object - - - - - - Author - - - - - - Creation time - - - - - - Enable reference namespace and download to PLC - - - - - - Last modified time - - - - - - Name - - - - - - Composition of Reference Namespaces - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create a new Reference Namespace - - Name of reference namespace to be created - XML to Import - Siemens.Engineering.SW.OpcUa.ReferenceNamespace - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - OpcUa Server Interface - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Exports the original XML File - - Path to the location to save - - - - Import file - - Path to file - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Comment - - - - - - EOM parent of this object - - - - - - Author - - - - - - Creation time - - - - - - Enable server interface and download to PLC - - - - - - Last modified time - - - - - - Name - - - - - - Composition of Server Interfaces - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create a new Server Interface - - Name of server interface to be created - Siemens.Engineering.SW.OpcUa.ServerInterface - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Contains Server Interfaces - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Returns a list of Server Interfaces - - - - - - Returns a list of Server Interfaces - - - - - - Returns a list of Server Interfaces - - - - - - OpcUa Simatic Interface - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Exports the original XML File - - Path to the location to save - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Comment - - - - - - EOM parent of this object - - - - - - Author - - - - - - Creation time - - - - - - Enable simatic interface and download to PLC - - - - - - Last modified time - - - - - - Name - - - - - - Composition of Simatic Interfaces - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create a new Simatic Interface - - Name of simatic interface to be created - Siemens.Engineering.SW.OpcUa.SimaticInterface - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - prodiag global supervision provider of proDiagFB - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Export of prodiag global supervisions to xlsx file - - path for exported prodiag global supervisions - Siemens.Engineering.SW.Supervision.SupervisionXlsxResult - - - - Import of prodiag settings from xlsx file - - path of xlsx file - option to select type of import - Siemens.Engineering.SW.Supervision.SupervisionXlsxResult - - - - Import of prodiag global supervisions from xlsx file - - path from where prodiag global supervisions gets imported - option to select type of import - Siemens.Engineering.SW.Supervision.SupervisionXlsxResult - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents supervision settings export/import final result. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - List of supervision settings export/import messages - - - - - - EOM parent of this object - - - - - - Error count after export/import of supervision settings - - - - - - Final state of the supervision settings export/import result. - - - - - - Warning count after import of supervision settings - - - - - - Represents supervision settings export/import final result message - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Final message text of supervision settings export/import result. - - - - - - Composition of SupervisionSettingsExportImportResultMessage - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The state of supervision settings export/import result - - - - - Supervision settings export/import finished successfully. - - - - - Rollback of supervision settings export/import process. - - - - - Provider for supervision settings - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Exports supervision settings in DAT file format - - File path where file having .dat extension is exported - Siemens.Engineering.SW.Supervision.SupervisionSettingsExportImportResult - - - - Imports supervision settings from DAT file - - File path where file having .dat extension is imported - Siemens.Engineering.SW.Supervision.SupervisionSettingsExportImportResult - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents a supervision export or import result. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Path to the log file. - - - - - - Final state of the supervision export or import result. - - - - - - Supervision import/export result state - - - - - import or export finished successfully - - - - - The failure import/export result - - - - - Represents a Plc constant - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Defines the data type of this constant - - - - - - The name of the Plc constant - - - - - - Defines the value of this constant. - - - - - - Represents a Plc system constant - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of PlcSystemConstants - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a given Plc system constant - - Name to find - Siemens.Engineering.SW.Tags.PlcSystemConstant - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a Plc tag - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Simatic ML export of a Plc tag - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Simatic ML export of a PlcTag with DocumentInfoOptions - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - The multilingual comment of the PlcTag - - - - - - EOM parent of this object - - - - - - Defines the data type of this tag - - - - - - Internal use only - - - - - - Indicates whether this tag should be shown when browsing for tags from an HMI editor - - - - - - Indicates whether this tag can be written to when browsing for tags from an HMI editor - - - - - - Indicates whether this tag has a failsafe address - - - - - - The address in the PLC's address space - - - - - - The name of the Plc tag - - - - - - Composition of PlcTags - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create PlcTag from MasterCopy - - The source master copy - Siemens.Engineering.SW.Tags.PlcTag - - - - Simatic ML import of a Plc tag - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.SW.Tags.PlcTag> - - - - Creates a PLC tag from the given parameters - - The name of the plc tag to be created - Siemens.Engineering.SW.Tags.PlcTag - - - - Creates a PLC tag from the given parameters - - The name of the plc tag to be created - The data type name of the plc tag to be created - The logical address of the plc tag to be created - Siemens.Engineering.SW.Tags.PlcTag - - - - Finds a given Plc tag - - Name to find - Siemens.Engineering.SW.Tags.PlcTag - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a Plc tag table - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Simatic ML export of a Plc tag table - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Simatic ML export of a PlcTagTable with DocumentInfoOptions - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) - - - - Show the indicated item in the Plc tag table editor - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Composition of Plc system constants - - - - - - Composition of Plc tags - - - - - - Composition of Plc user constants - - - - - - Indicates if this tag table is the default tag table - - - - - - Represents the last modified timestamp of this tag table - - - - - - The name of the Plc tag table - - - - - - Composition of PlcTagTables - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create PlcTagTable from MasterCopy - - The source master copy - Siemens.Engineering.SW.Tags.PlcTagTable - - - - Simatic ML import of a Plc tag table - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.SW.Tags.PlcTagTable> - - - - Creates a tag table from the given parameters - - Internal use only - Siemens.Engineering.SW.Tags.PlcTagTable - - - - Finds a given Plc tag table - - Name to find - Siemens.Engineering.SW.Tags.PlcTagTable - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Group containing Plc tag tables & Plc tag table user groups - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of Plc tag table user groups - - - - - - EOM parent of this object - - - - - - Composition of Plc tag tables - - - - - - The name of the Plc tag table group - - - - - - System group containing Plc tag tables & Plc tag table user groups - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - User group containing Plc tag tables & Plc tag table user groups - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the Plc tag table user group - - - - - - Composition of PlcTagTableUserGroups - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create PlcTagTableUserGroup from MasterCopy - - The source master copy - Siemens.Engineering.SW.Tags.PlcTagTableUserGroup - - - - Create user folder for PLC tag collection - - Name of group to be created - Siemens.Engineering.SW.Tags.PlcTagTableUserGroup - - - - Finds a given Plc tag table user group - - Name to find - Siemens.Engineering.SW.Tags.PlcTagTableUserGroup - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a Plc user constant - - - - - Simatic ML export of a Plc constant - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Simatic ML export of a PlcUserConstant with DocumentInfoOptions - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - The comment of the user constant - - - - - - Defines the data type of this constant - - - - - - The name of the Plc constant - - - - - - Defines the value of this constant. - - - - - - Composition of PlcUserConstants - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create PlcUserConstant from MasterCopy - - The source master copy - Siemens.Engineering.SW.Tags.PlcUserConstant - - - - Simatic ML import of a Plc constant - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.SW.Tags.PlcUserConstant> - - - - Creates a plc user constant from the given parameters - - The name of the user constant to be created - Siemens.Engineering.SW.Tags.PlcUserConstant - - - - Creates a plc user constant from the given parameters - - The name of the user constant to be created - The name of the data type of the user constant to be created - The value of the user constant to be created - Siemens.Engineering.SW.Tags.PlcUserConstant - - - - Finds a given Plc user constant - - Name to find - Siemens.Engineering.SW.Tags.PlcUserConstant - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Instance of a technological DB - - - - - Simatic ML export of a TechnlogicalInstanceDB - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Simatic ML export with configure document info of a TechnologicalInstanceDB - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Get all technological parameters - - - - - - Parent of this object - - - - - - Name of the Block - - - - - - Gets the name of the system library element associated with the DB - - - - - - Gets the version of the system library element associated with the DB - - - - - - TO Association - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Adds an . - - The item to be added. - - - - Removes an . - - The item to be removed. - true if the item was removed; otherwise false. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - TO composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create TechnologicalInstanceDB from MasterCopy - - The source master copy - Siemens.Engineering.SW.TechnologicalObjects.TechnologicalInstanceDB - - - - Simatic ML import of a Technological Object - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.SW.TechnologicalObjects.TechnologicalInstanceDB> - - - - Create a new TechnologicalInstanceDB - - Name of the newly created TechnologicalInstanceDB - Associated system library element - Associated system library version - Siemens.Engineering.SW.TechnologicalObjects.TechnologicalInstanceDB - - - - Find by its name - - Name of the TechnologicalInstanceDB - Siemens.Engineering.SW.TechnologicalObjects.TechnologicalInstanceDB - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Contains Technological Objects and groups of Technological Objects - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of Technological Object user groups - - - - - - Parent of this object - - - - - - Get all technological objects - - - - - - Name of external source group - - - - - - Contains Technological Objects and groups - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - User group containing Technological Objects & Technological Object user groups - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the Technological Object user group - - - - - - Composition of TechnologicalInstanceDBUserGroups - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create TechnologicalInstanceDBUserGroup from MasterCopy - - The source master copy - Siemens.Engineering.SW.TechnologicalObjects.TechnologicalInstanceDBUserGroup - - - - Create TechnologicalInstanceDBUserGroup - - Name of group to be created - Siemens.Engineering.SW.TechnologicalObjects.TechnologicalInstanceDBUserGroup - - - - Finds a given Technological Object user group - - Name to find - Siemens.Engineering.SW.TechnologicalObjects.TechnologicalInstanceDBUserGroup - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represenst a technological parameter - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents the name of a technological parameter - - - - - - Represents the value of a technological parameter - - - - - - Parameter composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds a TechnologicalParameter by name - - The name of the TechnologicalParameter - Siemens.Engineering.SW.TechnologicalObjects.TechnologicalParameter - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Handles connections to hardware objects for axis and encoder TechnologicalInstanceDBs - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Connect with a Channel (e.g. of a TechnologyModule) - - Channel to connect - - - - Connect with a mixed (sub) module that contains input and output addresses - - Module or submodule that contains input and output addresses - - - - Connect to an output PlcTag in order to establish an analog connection - - Output PlcTag to connect - - - - Connect to DB member - - Path to the DB member - - - - Connect with separate (sub) modules for inputs and outputs, specifying an additional ConnectOption - - Module or submodule that contains the input address - Module or submodule that contains the output address - - - - Connect with separate (sub) modules for inputs and outputs, specifying an additional ConnectOption - - Module or submodule that contains the input address - Module or submodule that contains the output address - Additional option for making the connection - - - - Connect specifying input and output bit addresses directly - - Input bit address to connect - Output bit address to connect - Additional option for making the connection - - - - Remove an existing connection - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Connected Channel - - - - - - ConnectOption that has been set when the connection was made - - - - - - Raw input bit address - - - - - - Connected input (sub) module - - - - - - Connected mixed (sub) module that contains input and output addresses - - - - - - Indicates whether the interface is connected - - - - - - Raw output bit address - - - - - - Connected output (sub) module - - - - - - Connected tag (analog connection) - - - - - - Path to connected DB member - - - - - - Connection to sensor part in actor telegram. - - - - - - AxisEncoderHardwareConnectionInterface Composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Handles connections to hardware objects for axis TechnologicalInstanceDBs - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Provides access to the connections for the actor interface of the axis - - - - - - EOM parent of this object - - - - - - Provides access to the connections for the sensor interfaces of the axis - - - - - - Provides access to the torque connection interface of the axis - - - - - - Describes the format in which a cam object should be Exportet/Imported - - - - - MCD File Format - - - - - Scout File Format - - - - - Export to a PointList with specified number of Points - - - - - Describes a Seperator with which the data should be seperated on Import/Export - - - - - Comma ',' Separator - - - - - Tabulator Separator - - - - - Handles import export commands for Cam - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Loads the cam data from the specified file - - Path to the file that will be loaded - Separator to use - - - - Loads the cam data from the specified binary file - - Path to the file that will be loaded - - - - Saves the cam data to the specified file in the given format - - Path to the destination file - format in which the data should be stored - Separator to use - - - - Saves the cam data to the specified file in binary format - - Path to the destination file - - - - Saves the cam data to the specified file as a point list - - Path to the destination file - Separator to use - Number of sample points - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Describes additional options for making a connection - - - - - Only modules that are recognized as valid connection partners can be selected - - - - - All modules can be connected, corresponds to selecting 'Show all modules' in the UI - - - - - Handles connections between Kinematics Technological Objects and their master values - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Master values that are coupled via actual values - - - - - - Master values that are coupled via actual values - - - - - - Master values that are coupled via set points - - - - - - Handles connections to hardware objects for encoder TechnologicalInstanceDBs - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Provides access to the connections for the sensor interface of the encoder - - - - - - Handles import export commands for interpreter programs - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Loads the interpreter program from the specified file - - Path to the file that will be loaded - - - - Saves the interpreter program to the specified file. - - Path to the destination file - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Handles connections to hardware objects for measuring input TechnologicalInstanceDBs - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Connect with a Channel (e.g. of a TechnologyModule) - - Channel to connect - - - - Connect specifying the input bit address directly - - Input bit address to connect - - - - Connect with a (sub) module, specifying an additional channel index - - Module or submodule to connect - Index of connected channel with respect to moduleIn - - - - Remove an existing connection - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Connected Channel - - - - - - Index of connected channel with respect to InputModule - - - - - - Raw input bit address - - - - - - Connected input (sub) module - - - - - - Indicates whether the interface is connected - - - - - - Handles connections to hardware objects for output cam and cam track TechnologicalInstanceDBs - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Connect with a Channel (e.g. of a TechnologyModule) - - Channel to connect - - - - Connect to an output PlcTag - - Output PlcTag to connect - - - - Connect specifying the output bit address directly - - Output bit address to connect - - - - Remove an existing connection - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Connected Channel - - - - - - Indicates whether the interface is connected - - - - - - Raw output bit address - - - - - - Connected tag - - - - - - Container for output cam, cam track and measuring input TOs - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Contains measuring input TOs - - - - - - Contains output cam and cam track TOs - - - - - - EOM parent of this object - - - - - - Handles connections between SynchronousAxis Technological Objects and their master values - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Master values that are coupled via actual values - - - - - - Master values that are coupled via actual values - - - - - - Master values that are coupled via set points - - - - - - Handles connections to Torque possible hardware objects for axis and encoder TechnologicalInstanceDBs - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Connect with a mixed (sub) module that contains input and output addresses - - Module or submodule that contains input and output addresses - - - - Connect to DB member - - Path to the DB member - - - - Connect with separate (sub) modules for inputs and outputs, specifying an additional ConnectOption - - Module or submodule that contains the input address - Module or submodule that contains the output address - - - - Connect with separate (sub) modules for inputs and outputs, specifying an additional ConnectOption - - Module or submodule that contains the input address - Module or submodule that contains the output address - Additional option for making the connection - - - - Connect specifying input and output bit addresses directly - - Input bit address to connect - Output bit address to connect - Additional option for making the connection - - - - Remove an existing connection - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - ConnectOption that has been set when the connection was made - - - - - - Raw input bit address - - - - - - Connected input (sub) module - - - - - - Connected mixed (sub) module that contains input and output addresses - - - - - - Indicates whether the interface is connected - - - - - - Raw output bit address - - - - - - Connected output (sub) module - - - - - - Path to connected DB member - - - - - - Represents a Plc struct - - - - - Represents a Plc type - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Simatic ML export of a Plc type - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Simatic ML export of a Plc type - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) - - - - Show the indicated item in the Plc type editor - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Creation date of this Plc type - - - - - - Get last breakable interface change of the PLC data type - - - - - - True if block and used data is consistent - - - - - - Gets the know-how protection status of the block - - - - - - Get the last non-breakable modification of the PLC data type - - - - - - The name of the Plc type - - - - - - The namespace of the given Plc type - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Group containing Plc system types - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Composition of Plc system types - - - - - - The name of the Plc system type group - - - - - - Composition of PlcSystemTypeGroups - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Composition of PlcTypes - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create PlcType from MasterCopy - - The source master copy - Siemens.Engineering.SW.Types.PlcType - - - - Create plc type from type version - - Library type version - Siemens.Engineering.SW.Types.PlcType - - - - Simatic ML import of a Plc type - - Path to the Simatic ML file - Options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.SW.Types.PlcType> - - - - Simatic ML import of a Plc type - - Path to the Simatic ML file - Options to use for Import - Sw import options to use for Import - System.Collections.Generic.IList<Siemens.Engineering.SW.Types.PlcType> - - - - Finds a given Plc type - - Name to find - Siemens.Engineering.SW.Types.PlcType - - - - Find the given Plc type - - Name to find - Namespace to find - Siemens.Engineering.SW.Types.PlcType - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Group containing Plc types & Plc type user groups - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of Plc type user groups - - - - - - EOM parent of this object - - - - - - Composition of Plc types - - - - - - The name of the Plc type group - - - - - - Represents a library type made from a Plc type - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Name - - - - - - Represents a library type version made from a Plc type - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - System group containing Plc types & Plc type user groups - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Composition of system data types - - - - - - User group containing Plc types & Plc type user groups - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The name of the Plc type user group - - - - - - Composition of PlcTypeUserGroups - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create PlcTypeUserGroup from MasterCopy - - The source master copy - Siemens.Engineering.SW.Types.PlcTypeUserGroup - - - - Create the user folder for the PLC data type collection - - Name of group to be created - Siemens.Engineering.SW.Types.PlcTypeUserGroup - - - - Finds a given Plc type user group - - Name to find - Siemens.Engineering.SW.Types.PlcTypeUserGroup - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a Plc safety unit - - - - - Base class for software unit - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the Plc block system group - - - - - - The comment of the software unit - - - - - - Gets software unit external source group - - - - - - EOM parent of this object - - - - - - Group for alarming related objects - - - - - - Gets the software unit relations - - - - - - Gets the Plc tag table system group - - - - - - Gets the Plc type system group - - - - - - The author of the Plc unit - - - - - - The name of the Plc unit - - - - - - The namespace of software unit - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Composition of safety unit - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Finds the Safety Unit By name - - Name of the safety unit - Siemens.Engineering.SW.Units.PlcSafetyUnit - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a Plc unit - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Composition of Plc units - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create a Plc unit from a master copy - - The source master copy - Siemens.Engineering.SW.Units.PlcUnit - - - - Creates a Plc unit - - Unit name - Siemens.Engineering.SW.Units.PlcUnit - - - - - Find a Plc unit by name - - Name of Plc unit - Siemens.Engineering.SW.Units.PlcUnit - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Provides Plc units - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Gets the Plc unit system group - - - - - - Represents a unit relation - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Related object of the relation - - - - - - Unit relation type which allowed to access - - - - - - Composition of Plc unit relations - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create an unit relation - - Related object - Relation type - Siemens.Engineering.SW.Units.PlcUnitRelation - - - - Find a Plc unit relation by the name of the related object - - Name of the related object - Siemens.Engineering.SW.Units.PlcUnitRelation - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - System group containing Plc units - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Composition of Safety Units - - - - - - Composition of Plc units - - - - - - Unit accessibility type - - - - - Published unit code element - - - - - Unpublished unit code element - - - - - Relation types in Unit relation editor - - - - - Relation type software unit - - - - - Relation tyoe non unit data block - - - - - Relation type technological data block - - - - - Represents a Plc force table - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Simatic ML export of a Plc force table - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Simatic ML export of a PlcForceTable - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) - - - - Show the indicated item in the Plc force table editor - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of ForceTable Entries - - - - - - EOM parent of this object - - - - - - Table is consistent or not - - - - - - Name of the ForceTable - - - - - - Composition of PlcForceTables - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Import Plc force table from Simatic ML - - Path of the Simatic ML which will be imported - Options to use for import from Simatic ML - System.Collections.Generic.IList<Siemens.Engineering.SW.WatchAndForceTables.PlcForceTable> - - - - Find force table by name - - Name of the force table - Siemens.Engineering.SW.WatchAndForceTables.PlcForceTable - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a Plc force table entry - - - - - Represents a Plc Force\Watch table comment entry - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Address information of the tag - - Address of force table entry - - - - DisplayFormat - - Display format of force table entry - - - - Force intention of the user - - Force intention of force table entry - - - - The value that shall be forced - - Force value of force table entry - - - - The trigger used for monitoring - - Monitor trigger of force table entry - - - - Name of the tag - - Tag name of force table entry - - - - Represents a Plc Force\Watch table comment entries - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates a TableCommentEntry - - Siemens.Engineering.SW.WatchAndForceTables.PlcTableCommentEntry - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Enum for DisplayFormat - - - - - Undef - - - - - Any_pointer - - - - - BCD - - - - - Bin - - - - - Bool - - - - - Character - - - - - Character - - - - - Date - - - - - DATE_AND_TIME - - - - - DEC_sequence - - - - - DEC+/- - - - - - DEC - - - - - Hex - - - - - Block number - - - - - Octal - - - - - Pointer - - - - - Floating-point number - - - - - Counter - - - - - SIMATIC Time - - - - - String - - - - - Time - - - - - TIME_OF_DAY - - - - - Unicode_character - - - - - Unicode_character - - - - - Unicode string - - - - - Group contatining Plc watch tables - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of PlcWatchTables - - - - - - Composition of User Groups - - - - - - EOM parent of this object - - - - - - Composition of PlcWatchTables - - - - - - The name of the Plc watch table group - - - - - - Enum for PreDefinedTrigger - - - - - Permanent - - - - - Permanently, at start of scan cycle - - - - - Once only, at start of scan cycle - - - - - Permanently, at end of scan cycle - - - - - Once only, at end of scan cycle - - - - - Permanently, at transition to STOP - - - - - Once only, at transition to STOP - - - - - Undef - - - - - System group containing Plc watch tables and Plc force tables and user group containing these - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - User group containing Plc watch tables - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Name of the User Group - - - - - - Composition of PlcWatchTableUserGroups - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create PlcBlockUserGroup from MasterCopy - - The source master copy - Siemens.Engineering.SW.WatchAndForceTables.PlcWatchAndForceTableUserGroup - - - - Creates user folder for Plc watch and forcetable collection - - Name of the group to be created - Siemens.Engineering.SW.WatchAndForceTables.PlcWatchAndForceTableUserGroup - - - - Finds given Plc watch table user group - - Name of the Plcwatchtable group to search for - Siemens.Engineering.SW.WatchAndForceTables.PlcWatchAndForceTableUserGroup - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a Plc watch table - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Simatic ML export of a Plc watch table - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - - - - Simatic ML export of a PlcWatchTable - - Path to the Simatic ML file - Option to use for export (default, readonly, etc.) - Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) - - - - Show the indicated item in the Plc watch table editor - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of WatchTable Entries - - - - - - EOM parent of this object - - - - - - Table is consistent or not - - - - - - Name of the WatchTable - - - - - - Composition of PlcWatchTables - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Import Plc watch table from Simatic ML - - Path of the Simatic ML which will be imported - Options to use for import from Simatic ML - System.Collections.Generic.IList<Siemens.Engineering.SW.WatchAndForceTables.PlcWatchTable> - - - - Creates a watch table from the given parameters - - Name of the Plc watch table - Siemens.Engineering.SW.WatchAndForceTables.PlcWatchTable - - - - Finds a given Plc watch table - - The name of the WatchTable - Siemens.Engineering.SW.WatchAndForceTables.PlcWatchTable - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a Plc watch table entry - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Address - - Address of watch table entry - - - - DisplayFormat - - Display format of watch table entry - - - - The user's modify intention - - Modify intention of watch table entry - - - - The trigger used for modify - - Modify trigger of watch table entry - - - - The value that shall be used for modify. - - Modify value of watch table entry - - - - The trigger used for monitoring. - - Monitor trigger of watch table entry - - - - Name - - Tag name of watch table entry - - - - Enables access to attributes for configuring block number ranges of system-generated safety blocks. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Gets or sets the "from DB" fixed range block number. - - - - - - Gets or sets the "from FB" fixed range block number. - - - - - - Gets or sets the "from FC" fixed range block number. - - - - - - Gets or sets indicating whether block numbers are system generated or manually assigned. - - - - - - Gets or sets the "to DB" fixed range block number. - - - - - - Gets or sets the "from FB" fixed range block number. - - - - - - Gets or sets the "to FC" fixed range block number. - - - - - - Defines modes for managing the number blocks of F-system blocks - - - - - The number ranges of the generated F-system blocks are managed by the F-system. - - - - - The number ranges of the generated F-system blocks are managed by fixed ranges defined by you. -- Ranges can be defined via the "(Db/Fb/Fc)Numbers(To/From)" properties. - - - - - GlobalSettings - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets the generation of default failsafe program - - System.Boolean - - - - Sets the generation of default failsafe program - - If true then default failsafe program will be generated - - - - Gets the management of failsafe in 'Software Units' environment - - System.Boolean - - - - Sets the management of failsafe in 'Software Units' environment - - If true then SafetyUnit is supported. - - - - Query whether SafetyModifications are possible. - - System.Boolean - - - - Specify wether changes to an F-Program are possible - - If true the Safety access protection is active otherwise changes to an F-program are not allowed - - - - Retrieves the username to be used for F-change history entries - - System.String - - - - Sets the username to be used for F-change history entries - - Username to be used for F-change history entries - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Enables access to information and methods regarding the Runtime Groups of the Safety program. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Creates a global F-I/O status block or overrides it if it already exists - - Siemens.Engineering.SW.Blocks.PlcBlock - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The Event class of the Fail-safe organization block - - - - - - The name of the Fail-safe organization block - - - - - - The name of the Runtime Groups Information DB Block - - - - - - The name of the main safety's IDb block - - - - - - The name of the main safety block - - - - - - The Maximum Cycle Time of the Runtime Group - - - - - - The name of the Runtime Group - - - - - - The Post processing Block of the Runtime Group - - - - - - The Pre processing Block of the Runtime Group - - - - - - The Warn Cycle Time of the Runtime Group - - - - - - Represents a Safety Runtime Group with its associated information and actions for working with them. - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates a new Runtime Group with the given name - - The name of the Runtime Group to create - Siemens.Engineering.Safety.RuntimeGroup - - - - Creates a new Runtime Group with the given name and MainSafety Function - - The name of the Runtime Group to create - The Function that should be used as MainSafety - Siemens.Engineering.Safety.RuntimeGroup - - - - Creates a new Runtime Group with the given name, MainSafety Function Block and Instance Data Block - - The name of the Runtime Group to create - The Function Block that should be used as MainSafety - The Instance Data Block that should be used for the MainSafety Function Block - Siemens.Engineering.Safety.RuntimeGroup - - - - Searches for a Runtime Group via the name. - - The name of the Runtime Group - Siemens.Engineering.Safety.RuntimeGroup - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Provides access to Safety-related information and configuration. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Logs into the safety program if correct password is given - - Current password to LoginToSafetyOfflineProgram - - - - Log off from the safety program - - - - - Removes the safety password if it matches the current password - - Current password to verify - - - - Sets the safety password if it isn't set - - New Password to set - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Provides access to the RuntimeGroups of the Safety program. - - - - - - Provides access to the Settings of the Safety program. - - - - - - Query whether the user is logged on - - - - - - Query whether a safety program password is set - - - - - - Service providing Safety Printout functionality for Plus PLCs. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Creates a Safety Printout for the current device item and prints it to a file. If the file already exists, it is overridden. - Returns true on success. - - Installed printer driver which supports printing to a file. - Valid output path to a file. - Document layout used for printing (eg. "DocuInfo_ISO_A4_Portrait") - Printing option for document format ("All", "Compact") - System.Boolean - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Defines the available built-in Windows printer drivers which support printing to file. - - - - - Represents the "Microsoft Print to PDF" printer driver. - - - - - Represents the "Microsoft XPS Document Writer" printer driver. - - - - - Defines the options for Safety Printout. - - - - - Select "All" to print all configuration data of the selected objects - - - - - Select "Compact" to print out an abbreviated version of the project data - - - - - Enables access to information and methods regarding the Settings of the Safety program. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Cleans up the result of the fail-safe compilation. - - - - - A List enumeration with the applicable Safety-System-Versions. - - System.Collections.Generic.IList<Siemens.Engineering.Safety.SafetySystemVersion> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Provides access to attributes for configuring block number ranges of system-generated safety blocks. - - - - - - EOM parent of this object - - - - - - Indicates whether logging of changes to the Safety program is activated (enabled). - - - - - - Gets or sets whether the names of the F-I/O DBs are created without prefix. - - - - - - Gets or sets indicating whether one can prevent the Safety mode for a Safety program from being disabled. - - - - - - Gets or sets the Safety system version (including version of the F-system blocks and automatically generated F-blocks). - - - - - - Provides the Safety Signature. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Defines the type of the SafetySignature - - - - - - Provides the safety signature value. - - - - - - Composition of SafetySignatures - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Searches for a SafetySignature by a given signature type - - The type of a SafetySignature - Siemens.Engineering.Safety.SafetySignature - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents the Safety Signature of an object. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Provides the SafetySignatures that belongs to the Parent object. - - - - - - Represents the SafetySignature Types - - - - - Indicates the offline signature of a block - - - - - Represents a Safety system version value. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The string value of Safety system version. - - - - - - Load safety program to device - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current Selection for this Configuration. - - - - - - Available Selections for Safety Program configuration. - - - - - Consistent Download - - - - - Certificate Item - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Export the certificate - - Path to exported certificate - - - - Export the certificate - - Path to exported certificate - Export format - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Indicates whether the certificate contains a private key or not. - - - - - - Identification of a Certificate - - - - - - The subject common name of the certificate. - - - - - - The valid until date of the certificate. - - - - - - Composition of certificates - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Imports a certificate - - Path to certificate file - Siemens.Engineering.Security.Certificate - - - - Imports a certificate - - Path to certificate file - The password of the certificate file - Siemens.Engineering.Security.Certificate - - - - Creates a certificate - - certificate template as default values - Siemens.Engineering.Security.Certificate - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Exported certificate format. - - - - - None - - - - - Certificate - DER coded (*.cer) - - - - - Certificate - DER coded (*.der) - - - - - Certificate Template - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - All subject alternative name entries. - - - - - - The signature algorithm - - - - - - The subject common name of the certificate. - - - - - - The usage for the certificate - - - - - - The valid from date of the certificate. - - - - - - The valid until date of the certificate. - - - - - - The key usage for a certificate - - - - - None - - - - - TLS certificate - - - - - OPC UA certificate - - - - - OPC UA Client Server certificate - - - - - OPC UA Server certificate - - - - - WebServer certificate - - - - - Represents the Security Settings for Password policy for Classic PLCs - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Sets/Gets the value of includes lower case and upper case characters in a password - - - - - - Sets/Gets the value of minimum length of password - - - - - - Sets/Gets the value for minimum numeric characters required in a password - - - - - - Sets/Gets the value for minimum special characters required in a password - - - - - - Sets/Gets the value of enable password policy for Classic Plc - - - - - - Device certificate manager operates on local and global certificates - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - The local certificate store - - - - - - EOM parent of this object - - - - - - Enables or disables the global certificate store - - - - - - The Local Store holds all not-public certificates - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Get default template values for specific - - This is a usage - Siemens.Engineering.Security.CertificateTemplate - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Collections of all self signed certificates - - - - - - EOM parent of this object - - - - - - Represents the Security Settings for Password policy for Plus PLCs - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Sets/Gets the value of enable password policy for Classic Plc - - - - - - The signature of a certificate, i.e. the algorithm - - - - - None - - - - - The sha1 hash algorithm with RSA encryption - - - - - The sha256 hash algorithm with RSA encryption - - - - - An entry of SubjectAlternativeNames - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The type of the entry - - - - - - The value of the entry - - - - - - The composition of all subject alternative name entries - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create a new subject alternative name entry - - The type of the entry - The value of the entry - Siemens.Engineering.Security.SubjectAlternativeName - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The subject alternative name type - - - - - None - - - - - The Dns description - - - - - The email description - - - - - The IP description - - - - - The Uri description - - - - - Represents a TiaPortal setting. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Represents the name of a TiaPortalSetting. - - - - - - Represents the value of a TiaPortalSetting. - - - - - - Represents a composition of TiaPortalSettings. - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Returns the TiaPortalSetting with the matching name. - - The name of the TiaPortalSetting to find. - Siemens.Engineering.Settings.TiaPortalSetting - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a TiaPortal settings folder - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Composition of TiaPortalSettingsFolders - - - - - - EOM parent of this object - - - - - - Composition of TiaPortalSettings - - - - - - Represents the name of a TiaPortalSettingsFolder. - - - - - - Composition of TiaPortalSettingsFolders - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Returns the TiaPortalSettingsFolder with the matching name. - - The name of the TiaPortalSettingsFolder to find. - Siemens.Engineering.Settings.TiaPortalSettingsFolder - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents the Authentication Type of a Project User - - - - - Indicates Password Authentication Type - - - - - Indicates Radius Authentication Type - - - - - Custom Device Function Right - - - - - Device function right - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Device function right group name - - - - - - Device function right OpennessId - - - - - - Device function right name - - - - - - Updates the name of custom device function right - - Updates the custom device function right name - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Device function right comment - - - - - - Custom device function right composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates the custom device function right. - - Custom device function right name - Custom device function right group name - Custom device function right comment - Siemens.Engineering.Umac.CustomDeviceFunctionRight - - - - Fetches custom device function right. - - Custom device function right name - Siemens.Engineering.Umac.CustomDeviceFunctionRight - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Provides User Defined Role with associated attributes - - - - - Represents an abstract UMAC Role object - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Role Openness Id - - - - - - Name on the user defined role - - - - - - Add a Device Function Rights to Custom Role - - Umac Device - Device function right - - - - Gets all the assigned device function rights on the present role object for the given device - - Umac Device - System.Collections.Generic.IList<Siemens.Engineering.Umac.DeviceFunctionRight> - - - - Updates the name of the custom role - - new name to be assigned to custom role - - - - UnAssign a Device Function Rights from Custom Role - - Umac Device - Device function right - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Fetches assigned engineering rights for custom role - - - - - - Project user comment - - - - - - Project user session timeout - - - - - - Custom Role Composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates the user defined role. - - Name of the user defined role - Comment of the user defined role - Siemens.Engineering.Umac.CustomRole - - - - Fetches custom role - - Custom role name to Find - Siemens.Engineering.Umac.CustomRole - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Device function right association - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Fetches corresponding device function right - - Identifier is the search key to get the corresponding right - Siemens.Engineering.Umac.DeviceFunctionRight - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents an abstract UMAC Engineering Function Right object - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Engineering Function Right Openness Identifier. This identifier will be used for find purpose - - - - - - Engineering function right name - - - - - - Associated Engineering function rights - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Adds an . - - The item to be added. - - - - Removes an . - - The item to be removed. - true if the item was removed; otherwise false. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Gets all UMAC Engineering Function Right - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Find UMAC Engineering Function Right corresponding to the name passed - - Engineering function right name - Siemens.Engineering.Umac.EngineeringFunctionRight - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents PasswordPolicyConfigurator object - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Sets/Gets the value of enable password aging - - - - - - Sets/Gets the value of includes lower case and upper case characters in a password - - - - - - Sets/Gets the value of minimum length of password - - - - - - Sets/Gets the value for minimum numeric characters required in a password - - - - - - Sets/Gets the value for minimum special characters required in a password - - - - - - Sets/Gets the value of minimum user passwords blocked for reuse - - - - - - Sets/Gets the value for password validity - - - - - - Sets/Gets the value for prewarning time - - - - - - Represents a UMAC Project User object - - - - - Represents an abstract User object - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Name of the user. - - - - - - Roles assigned to the user. - - - - - - Activate project user - - - - - Activate Runtime timeout session for Project User - - - - - Deactivate project user - - - - - Deactivate Runtime timeout session for Project User - - - - - Updates the alias name of the project user - - new alias name to be assigned to project user - This exception will be thrown when logged-in user is not assigned with the function right "TIAPortal.ManageUserAndRoles". - - - - Updates the name of the project user - - new name to be assigned to project user - - - - UnAssign role to project user - - new password for project user - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Project user alias name - - - - - - Project user comment - - - - - - Project user is active or not - - - - - - RuntimeSessionTimeout checkbox of Project user checked or not - - - - - - Project user authentication type - - - - - - Project user session timeout - - - - - - Project user composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates new project user - - Project user name - Project user password - Siemens.Engineering.Umac.ProjectUser - - - - Fetches project user - - Project user name to Find - Siemens.Engineering.Umac.ProjectUser - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Roles assigned to the Users and Umc user groups. - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Adds an . - - The item to be added. - - - - Removes an . - - The item to be removed. - true if the item was removed; otherwise false. - - - - Find Role corresponding to the Openness ID - - Identifier is the search key to get the corresponding Role - Siemens.Engineering.Umac.Role - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent.. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Custom Device Function Right - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - System device function right comment - - - - - - System device function right composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Fetches system device function right. - - System device function right name - Siemens.Engineering.Umac.SystemDeviceFunctionRight - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Represents a UMAC System Role object - - - - - Gets all the assigned system device function rights on the present role object for the given device - - Umac Device - System.Collections.Generic.IList<Siemens.Engineering.Umac.DeviceFunctionRight> - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Fetches assigned engineering rights - - - - - - Gets all System Roles - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Fetches system role - - System role name - Siemens.Engineering.Umac.SystemRole - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Provides UMAC entities like Users, Roles and Function Rights - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Activates anonymous user - - - - - Deactivates anonymous user - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets Project user - - - - - - Gets all the Custom Device Function Rights - - - - - - Get all the custom roles - - - - - - Get all the engineering function rights - - - - - - EOM parent of this object - - - - - - Get all project users - - - - - - Get all the system roles - - - - - - Get all Umc User Groups imported in TiaProject - - - - - - Get all Umc Users - - - - - - The class for getting Umac Device - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Fetches available device function rights for corresponding umac device. Returns count as zero, if device is not activated - - - - - - EventArgs for the UmcAuthentication. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Credentials for Umc Authentication. - - - - - - Object that is used to authenticate user. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Set password. - - Password - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - User name. - - - - - - Provides UMC entities like UmcUsers and UmcGroups etc. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Get umc user from Umc server for the specified name - - Name of Umc user to be retrieved from Umc server - Siemens.Engineering.Umac.UmcUserInfo - - - - Gets the Umc User group from UMC server - - The name of the umc user group to get - Siemens.Engineering.Umac.UmcUserGroupInfo - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Authentication event is used to provide Credentials to access UmcServer - - - - - EOM parent of this object - - - - - - Provides UMC Server Navigator. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Checks if the UMAC copy of UMC data is consistent UMC server data. - - System.Boolean - - - - Synchronize UMAC copy of UMC data with UMC server. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - A single navigator UmcServer representing a Umc Server - - - - - - UmcUser represents a imported UmcUser in Project - - - - - Activate umc user - - - - - Deactivate umc user - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Indicates whether the UmcUser is Active. - - - - - - Umc User Composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates the Umc User in Project - - Represents a umc user on a Umc Server - Siemens.Engineering.Umac.UmcUser - - - - Finds the Umc user in the project - - The name of the Umc user in the project - Siemens.Engineering.Umac.UmcUser - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - It represents a imported UmcUser group in Project - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Activate umc user group - - - - - Deactivate umc user group - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Description of the Umc User group - - - - - - Project user is active or not - - - - - - Name of the Umc Usergroup - - - - - - Roles assigned to the umc user group. - - - - - - Umc User Group Composition - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Creates a Umc UserGroup in Project from UmcUserGroupInfo from UmcServer - - Represents a umc user group on a Umc Server - Siemens.Engineering.Umac.UmcUserGroup - - - - Finds the Umc user group in the project - - The name of the Umc user group in the project - Siemens.Engineering.Umac.UmcUserGroup - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Umc user group on the Umc Server - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Description of umc user group - - - - - - Name of umc user group - - - - - - Represents a umc user on a Umc Server - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Name of umc user - - - - - - Service provides station upload - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Service provides station upload functionality - - Configuration address for station upload - Upload parameter - Siemens.Engineering.Upload.UploadResult - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Connection Configuration. - - - - - - EOM parent of this object - - - - - - - - - - - - The results of a Upload - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Collection of output messages for the result of a given Upload scenario. - - - - - - EOM parent of this object - - - - - - Number of errors in a given Upload scenario - - - - - - Final state of a given compile scenario - - - - - - The uploaded station if upload was successful. - - - - - - Number of warnings in a given Upload scenario - - - - - - Upload result message - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Access to the Upload messages for a given Upload scenario - - - - - - EOM parent of this object - - - - - - Date and time in a Upload message - - - - - - Number of errors in a Upload message - - - - - - Description or content of a Upload message - - - - - - Final state in a Upload message - - - - - - Number of warnings in a Upload message - - - - - - Composition of Upload result messages. - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The list of possible compiler result options - - - - - Upload finished successfully - - - - - Upload finished with information - - - - - Upload finished with warnings - - - - - Upload finished with errors - - - - - Enter a password to gain read access to the module - - - - - Upload password configuration. - - - - - Upload configuration base class. - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Descriptions of this onfiguration - - - - - - Sets password - - Required password. - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Is secure communication used. - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Enter a password to gain write access to the module - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The PLC need a password for Readaccess. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - The PLC contains additional data of missing products. - - - - - Upload configuration that provides choices. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Current selection for this configuration. - - - - - - Available selections for UploadMissingProductsCategory configuration - - - - - No action - - - - - Attempt to upload from the device - - - - - Child objects synchronization status - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Get status of individual object - - Siemens.Engineering.VersionControl.SynchronizationResult - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Compare status - - - - - Left and right side is the same - - - - - Left and right side is different - - - - - Right missing - - - - - Unknown result - - - - - Individual object compare details - - - - - Nothing is changed - - - - - Project object is changed - - - - - Workspace file is changed - - - - - Individual Object Compare Result - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Compare state - - - - - - Individual object compare details - - - - - - Individual object synchronization status - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Get status of individual object - - Siemens.Engineering.VersionControl.IndividualObjectCompareResult - - - - Initialize mapping status - - - - - Sync differences - - Sync mode for sync action - - - - - Update mapping status - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Mapping status - - - - - Left and right side is the same - - - - - Left and right side is different - - - - - Activate or Donot Activate InActive Cultures during import of SimaticMl file - - - - - Not Activating the InActive Cultures during import of SimaticMl file - - - - - Activating the InActive Cultures during import of SimaticMl file - - - - - Describe the sync direction - - - - - Sync from project to workspace - - - - - Sync from workspace to project - - - - - Individual Object Compare Result - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Compare state - - - - - - Service to access the WorkspaceSystemGroup - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Service to provide WorkspaceSystemGroup folder - - - - - - Represents a VCI workspace - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - The comment of the Workspace - - - - - - Navigate to workspace entry - - - - - - EOM parent of this object - - - - - - The name of the Workspace - - - - - - The root path of the Workspace - - - - - - The export language of the Workspace - - - - - - Collection of workspaces - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create a workspace - - Workspace name - Siemens.Engineering.VersionControl.Workspace - - - - Create a workspace - - Workspace name - The root path of the Workspace - Siemens.Engineering.VersionControl.Workspace - - - - Create a workspace - - Workspace name - The root path of the Workspace - The export language of the Workspace - Siemens.Engineering.VersionControl.Workspace - - - - Find a workspace - - The name of the workspace - Siemens.Engineering.VersionControl.Workspace - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - Group containing Workspaces & Workspace user groups - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Navigate to user group - - - - - - EOM parent of this object - - - - - - Collection of workspaces - - - - - - Represents a VCI workspace entry - - - - - Gets an IEngineeringCompositionOrObject with the given . - - The name of the IEngineeringCompositionOrObject to get. - The IEngineeringCompositionOrObject with the given ; otherwise a null. - - - - Gets the list of composition infos available for the object. - - The list of composition infos available for the object. - - - - Gets an attribute with the given . - - The name of the attribute to get. - The attribute with the given . - Throws when attribute with given does not exist - - - - Gets a list of attributes for the given . - - The names of the attributes to get. - A list of the attributes for the given . - Throws when attribute for any of the does not exist - - - - Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - A collection of EngineeringAttributeInfo objects describing the different attributes on this object. - - - - Sets value of the attribute. - - The name of the attribute to set. - The value of the attribute to set. - Throws when attribute name given does not exist - - - - Sets a list of values for the given . - - A KeyValuePair list containing the names and values of attributes to be set. - Throws when any of the attribute name given in the list does not exist - - - - Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through - - A KeyValuePair list containing the names and values of attributes to be set. - A callback handler to decide how to proceed in a case of error - Throws when any of the attribute name given in the list does not exist - - - - Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. - - A collection of EngineeringInvocationInfo objects describing the different actions on this object. - - - - Invokes the method represented by the current instance, using the specified parameters. - - The name of the method to invoke. - An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. - An object containing the return value of the invoked method, otherwise null. - - - - Creates an IEngineeringObject of indicated initialized with values as indicated in within the . - - The name of the Composition where the object is to be created. - The specific type of object to be created. - The initial value of the attribute for the object to be created. - An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. - - - - - - - - - - - Gets an instance of type T. - - The service type. - The instance of type T; otherwise a null. - - - - %[GetServiceInfoSummary]% - - %[GetServiceInfoValue]% - - - - Deletes this instance. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Linked object - - - - - - The relative file path of the Workspace entry - - - - - - Collection of Workspace entries - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create a workspace entry - - Relative path of workspace entry - Linked object - Siemens.Engineering.VersionControl.WorkspaceMapping - - - - Find a workspace entry - - Linked Object - Siemens.Engineering.VersionControl.WorkspaceMapping - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The top folder for workspaces - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Name of the system group - - - - - - User group for workspaces - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - EOM parent of this object - - - - - - Name of the user group - - - - - - Collection of user groups - - - - - Returns an enumerator that iterates through a collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Determines if is contained within. - - The item being sought. - true if is contained within; otherwise false. - - - - Searches for and returns the zero-based index of the first occurrence within. - - The item for which an index is sought. - The zero-based index of of the first occurrence within. - - - - Create a user group for workspaces - - The name of the user group - Siemens.Engineering.VersionControl.WorkspaceUserGroup - - - - Find a user group - - The name of the user group - Siemens.Engineering.VersionControl.WorkspaceUserGroup - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the parent. - - The parent. - - - - Gets the count. - - The count. - - - - Gets a value indicating whether this instance is read only. - - The value. - - - - Gets the element at the specified . - - The zero-based index of the item to get. - The element at the specified . - - - - The failure of several behaviors provided by 'System.Diagnostics.Process' motivated this class. - On OS's supporting UAC accessing a process running with elevated privileges from an application - running at lower privileges causes 'Process.MainModule' to fail. There are several issues using - 'Process.WaitForExit' and 'Thread.Abort' together. The 'Process.Exited' event doesn't work correctly, - ..., etc. This helper is meant to handle these error cases for the user. - - - - - Constructor that takes a process to be associated with this class. - - The process to be used in association with this class - - - - Constructor that takes a process to be associated with this class. - - The process to be used in association with this class - - - - Kills the process - - - - - Gets the file name used to start the process. The failure of Process.MainModule on OS's supporting UAC when - the process is running at elevated privileges (administrator) relative to our own is one of the motivations - for this class. We must revert to the Windows API function in these situations - - The file name used to start the process. - - - - Gets the exited state of the process. The failure of Process.HasExited on OS's supporting UAC when the process - is running at elevated privileges (administrator) relative to our own is one of the motivations for this class. - We must revert to the Windows API function in these situations - - Exited state of process. - - - - Override of Disposed provided by WaitHandle - - indication of whether disposing or finalizing - - - - Event fired when it is determined that the associated process has terminated. - - - - - Process Id - - - - - Session Id - - - - - File name used to start the process - - - - - Exited state of the process - - - - - Name of the process - - - - - The process - - - - - Summary description for ApplicationReturnCode. - - - - - The return Code indicates that the application ends without an error. - - - - - The startup of the application is terminated because it was startet in a DOS 8.3 version. - The application cannot run with a DOS 8.3 because of assembly loading issues. - - - - - The startup of the application is terminated because it was no bootstrapper found. - - - - - The startup of the application is terminated because the command line arguments are invalid. - - - - - The startup of the application is terminated because the user has requested the help via command line. - - - - - The startup of the application is termiated because .Net 4.5 is not installed. - - - - - The startup of the application is terminated because the PortalPackage installer is blocking it. - - - - - The startup of the application is terminated because FIPS compliance is required on the machine (https://technet.microsoft.com/en-us/library/cc750357.aspx). - - - - - The startup of the application is terminated because it was executed under a guest account. - - - - - The startup of the application is terminated because it was not executed in user interactive mode. - - - - - Represents composition information. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets composition name. - - The composition name. - - - - Flags enum that describes different access levels - - - - - No access allowed. - - - - - Read access. - - - - - Write access. - - - - - Full access. - - - - - - - - - - - - - - - - - - - - - - - - - Represents composition information. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the name of the attribute. - - The name of the attribute. - - - - Gets the level of access supported by the attribute. - - The level of access supported by the attribute. - - - - - - - - - - Gets the potentially supported types of the attribute. - - The potentially supported types of the attribute. - - - - Represents an action info. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the name of the action. - - The name of the action - - - - Represents an action info. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the name of the action. - - The name of the action - - - - Gets the parameter info list. - - The parameter info list - - - - The parameter info - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the type of the parameter. - - The type of the parameter - - - - Gets the name of the parameter. - - The name of the parameter - - - - Represents the necessary information required to create an object. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - The type of the object that will be created. - - The type - - - - The parameters needed to create the object. - - The parameters - - - - The parameter info - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the name of the parameter. - - The name of the parameter - - - - Gets if the parameter is mandatory. - - True if mandatory; False otherwise. - - - - Exception Message Data structure. - - - - - Returns a that represents the current . - - - A that represents the current . - - - - - Gets the text. - - The text. - - - - Gets the detail text. - - The detail text. - - - - The delegate that will be called if there is an issue with a given attribute - - The attribute configuration with issues - - - + + + + Siemens.Engineering + + + + + Represents TIA Portal. + + + + + IEngineeringRoot + + + + + IEngineeringObject + + + + + IEngineeringCompositionOrObject + + + + + IEngineeringInstance + + + + + Gets the parent of the instance. + + The parent of the instance. + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given name. + + The name of the attribute to get. + The attribute with the given name or a null if not found. + + + + Gets a list of attributes for the given names. + + The names of the attributes to get. + A list of the attributes for the given names with nulls for names not found. + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets an attribute with the given to the given value . + + The name of the attribute to set with the given . + The value to set for the attribute with the given . + + + + Sets the attributes with the given names to the given values as indicated in . + + A KeyValuePair list containing the names and values of attributes to be set. + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + /// A callback handler to decide how to proceed in a case of error + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + + + + + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + IEngineeringServiceProvider + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + Returns a collection of EngineeringServiceInfo objects describing the different services on this object. + + A collection of EngineeringServiceInfo objects describing the different services on this object. + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + Acquire an exclusive access session to the TIA Portal + + Siemens.Engineering.ExclusiveAccess + + + + Acquire an exclusive access session to the TIA Portal + + The text to present to the interactive user while an exclusive access session is active + Siemens.Engineering.ExclusiveAccess + + + + Initializes a new instance of the class. + + TIA Portal will start in this mode. + + + + Finalizer + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Gets the information of connected TIA Portal. + + The connected TIA Portal. + + + + Gets the information of all running TIA Portal processes. + + The running TIA Portal processes. + + + + Gets the information of the running TIA Portal. + + TIA Portal process ID. + An optional parameter that provides the ability to set a timeout. + The running TIA Portal. + + + + Gets the information of the running TIA Portal. + + TIA Portal process ID. + An optional parameter that provides the ability to set a timeout. + The running TIA Portal. + + + + The Authentication event for protected project.This will be triggerred only when opening the protected project without UmacDelegate + + + + + The confirmation event + + + + + The notification event. + + + + + Composition of global libraries + + + + + + Hardware Catalog + + + + + + Multiuser LocalSessions + + + + + + Multiuser Project Servers + + + + + + Composition of open projects + + + + + + The settings of the TIA portal + + + + + + The disposed event. + + + + + Mode how to start TIA Portal. + + + + + TIA Portal starts without user interface. + + + + + TIA Portal starts with user interface. + + + + + Represents a TIA Portal process. + + + + + Performs a close of the process. + + + + + Gets an additional instance of a TIA Portal that is attached to the TIA Portal process. + + A TIA Portal instance that is attached to the TIA Portal process.> + + + + Gets the time when the TIA Portal process was acquired. + + The time when the TIA Portal process was acquired. + + + + Gets the process ID of TIA Portal. + + The process ID of TIA Portal. + + + + The path to the executable of TIA Portal. + + The path to the project that is currently open in TIA Portal. If no project is open, this property will be null. + + + + Gets the mode of the attached TIA Portal. + + The mode of the attached TIA Portal. + + + + Gets the path of any project currently open in the attached TIA Portal. + + The path of any project currently open in the attached TIA Portal. + + + + Gets a list of other process attached to this same TIA Portal process. + + A list of other process attached to this same TIA Portal process. + + + + Gets a list of installed software of the TIA Portal process. + + A list of installed software of the TIA Portal process. + + + + The event that enables an application to approve any attempts to attach to TIA Portal. + + + + + Represents a TIA Portal session. + + + + + Performs a disconnect of the session. + + + + + Gets the attached session identifier. + + The attached session identifier. + + + + Gets the attached session version. + + The attached session version information. + + + + Gets a boolean value describing whether TIA Portal is in the middle of processing a call from this session. + + Returns true if TIA Portal is currently in the middle of processing a call from this session. + + + + Gets the attached session date and time. + + The attached session date and time. + + + + Gets time the process has spent actively using TIA Portal. + + Time that the process has spent actively using TIA Portal. + + + + Gets the access level of the process. + + The access level of the process. + + + + Indicates if the current session was started by a process that was signed, and if so, if it is an Openness certificate or not. + + A flag enum that represents trust authority. + + + + Gets the path to where the executable of the attached process lives. + + The path to where the executable of the attached process lives. + + + + Gets the attached session process ID. + + The attached session process ID. + + + + Represents a TIA Portal product. + + + + + Gets the product name. + + The product name. + + + + Gets the product version. + + The product version. + + + + Gets a list of installed options of the TIA Portal process. + + A list of installed options of the TIA Portal process. + + + + Attaching event arguments + + + + + Grants permission to the attaching Openness application to attach. + + + + + Gets version argument of the attaching event. + + The attaching event version information. + + + + Gets attaching process ID. + + The attaching process ID. + + + + Gets attaching event process path. + + The attaching event path information. + + + + Gets access level argument of the attaching event. + + The attaching event TIA Portal access level. + + + + Gets TIA Portal trust authority of the attaching event. + + The attaching event TIA Portal trust authority. + + + + Holds the object for the special EnforceClientProcessRequestAuthenticationAttribute attribute used as + marker for remoting service type proxy to request the server-side authentication of the client requests using this service proxy type. + Can be null if the is not found in the present assembly. + That can happen inside e.g. openness process as openness links only the IpcConnectionManager.cs without linking additionally the EnforceClientProcessRequestAuthenticationAttribute.cs. + + + + + The choices of customer to set a given attribute + + + + + Execution stops with recoverable exception. No changes are commited. + + + + + Execution continues. Invalid Attribute is ignored. + + + + + Object that is used to handle invalid attributes. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The currently chosen choice how to proceed with invalid attributes. + + + + + + The display message + + + + + + The name of the attribute + + + + + + Indicates that the given name is unsupported + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Indicates that the attribute is read only + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Indicates that the given value has an unsupported type + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Indicates that the given value unsupported + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + AuthenticationEventArgs to provide AuthenticationTypeProvider and credentials from user + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + AuthenticationTypeProvider provided differrent AuthenticationTypes + + + + + + UmacCredentials + + + + + + Provides different types of AuthenticationType + + + + + This type indicates the Credentials based Authentication type. + + + + + This type indicates the Single sign on based Authentication type. + + + + + This type indicates the Anonymous Authentication type. + + + + + This type indicates the UI based interactive Authentication type. + + + + + The list of possible confirmation choices + + + + + Select None + + + + + Select Ok + + + + + Select Yes + + + + + Select Yes to All + + + + + Abort the operation + + + + + Select Retry + + + + + Select Ignore + + + + + Select No + + + + + Select No to All + + + + + Cancel the operation + + + + + The confirmation result. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Gets the caption of the confirmation. + + The caption. + + + + Gets the choices of the confirmation. + + The choices. + + + + Gets the detail text of the confirmation. + + The detail text. + + + + Gets the icon. + + The icon. + + + + Gets or sets if the confirmation is handled. + + The confirmation. + + + + Gets or sets the result of the confirmation. + + The result. + + + + Gets the text of the confirmation. + + The text. + + + + The list of possible confirmation icons + + + + + Icon is General + + + + + Icon is Critical + + + + + Icon is an Error + + + + + The list of possible confirmation results + + + + + Ok selected + + + + + Yes selected + + + + + Yes to All selected + + + + + Operation aborted + + + + + Retry selected + + + + + Ignore selected + + + + + No selected + + + + + No to All selected + + + + + Operation cancelled + + + + + The list of possible ways to configure document info during export. + + + + + No document info is exported + + + + + ExportSetting part of document info is exported + + + + + InstalledProducts part of document info is exported + + + + + CreatedTimeStamp part of document info is exported + + + + + Whole document info is exported + + + + + Engineering Delegate Invocation Exception + + + + + Engineering Target Invocation Exception + + + + + Engineering exception. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Gets a message that describes the current exception. + + The message. + + + + Gets the stack trace of the current exception. + + The StackTrace. + + + + Gets the message data that describes the current exception. + + The message data. + + + + Gets the detail message data that describes the current exception. + + The list of message details. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Engineering Not Supported Exception + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Engineering Object Disposed Exception + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Engineering Out Of Memory Exception + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + throws when user password violates the security setting password policy + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Engineering Runtime Exception + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Engineering Security Exception + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Engineering User Abort Exception + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + The class representing an exclusive access session to the TIA Portal + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Acquires a transaction instance from the active exclusive access session + + The persistence where the transaction is to be created + The description of the undo unit that is created for the open transaction + Siemens.Engineering.Transaction + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Indication if the user has requested a cancellation of the exclusive access session + + + + + + The information to display while an exclusive access session is active + + + + + + The list of possible scenarios supported by export action parameterization + + + + + Export including default values + + + + + Export excluding default and read-only values + + + + + Export including read-only values + + + + + Throws when a user who does not have required function right(s) to invoke an Openness API on a protected project + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Represents a TIAP project history event + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The time when the event occurred + + + + + + The event description + + + + + + Composition of HistoryEntries + + + + + IEngineeringComposition + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The element at the specified . + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is a collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Gets the collection of EngineeringCreateInfo objects describing the different CreateInfos on this object. + + The collection of EngineeringCreationInfo objects + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in . + + The specific type of object to be created. + The initial values for create parameters of the object being created. + An IEngineeringObject of initialized with values as indicated in ; otherwise an informative exception is thrown. + + + + Gets the number of elements contained within this Composition. + + The number of elements contained within this Composition. + + + + Gets a value indicating whether this Composition was instantiated as ReadOnly. + + true if this Composition was instantiated as ReadOnly; otherwise false. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Associated engineering objects + + + + + IEngineeringAssociation + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The element at the specified . + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Gets the number of elements contained within this association. + + The number of elements contained within this association. + + + + Gets a value indicating whether this association was instantiated as ReadOnly. + + true if this association was instantiated as ReadOnly; otherwise false. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The interface representing an engineering service + + + + + Access to Showable attributes + + + + + Flag to indicate to show in the editor + + + + + Access to SystemObject attributes + + + + + Indicates if this instance is a system object + + + + + + An interface indication that the item supports transactions + + + + + The list of possible options for Import + + + + + Throw if exists + + + + + Override existing + + + + + Skip the cultures and texts If the cultures indicated in a SimaticML file are not active in the project where it is being imported. + + + + + Activate the culture and import the text as well, if the cultures indicated in a SimaticML file are valid and supported in the project where it is being imported but are not active. + + + + + Represents a language that can be enabled in this Project + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The culture info object + + + + + + Collection of Languages. + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Adds an . + + The item to be added. + + + + Removes an . + + The item to be removed. + true if the item was removed; otherwise false. + + + + Searches for a language by a given culture. + + Language culture + Siemens.Engineering.Language + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Composition of Languages + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Searches for a language by a given culture. + + Language culture. + Siemens.Engineering.Language + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a language settings object. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + The collection of all supported languages. + + + + + + EOM parent of this object + + + + + + The collection of active languages. + + + + + + Represents an editing language. + + + + + + Represents a reference language. + + + + + + Throws when license not found to execute a TIA portal operation using openness API. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Represents a String in multiple language translations + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Contains a collection of multilingual text items. + + + + + + EOM parent of this object + + + + + + Multilingual text item. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents language of this item. + + + + + + Represents text content. + + + + + + Collection of multilingual text items. + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Searches multilingual text item by language. + + Language to find. + Siemens.Engineering.MultilingualTextItem + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Non Recoverable Exception. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Gets a message that describes the current exception. + + The message. + + + + Gets the stack trace of the current exception. + + The Stacktrace. + + + + Gets the message data that describes the current exception. + + The message data. + + + + Gets the detail message data that describes the current exception. + + The list of message details. + + + + The confirmation result. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Gets the caption of the confirmation. + + The caption. + + + + Gets the detail text of the confirmation. + + The detail text. + + + + Gets the icon. + + The icon. + + + + Gets or sets if the notification is handled. + + The confirmation. + + + + Gets the text of the notification. + + The text. + + + + The list of possible notification icons + + + + + Notification icon is Success + + + + + Notification icon is Information + + + + + Notification icon is a Warning + + + + + Notification icon is an Error + + + + + The modification state of an item being opened. + + + + + The library can only be read from + + + + + The library can be read from and written to + + + + + throws when user try to set or get password policy settings + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Represents a project + + + + + Base Class for Projects + + + + + Target for pasting a library master copy + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Export project text to an xlsx file + + Path to the xlsx file + The source language to use for the export of project texts + The target language to use for the export of project texts + + + + Import project text from an import file + + Path to the xlsx file + True if the source language is to be updated + Siemens.Engineering.ProjectTextResult + + + + Protects the project + + Administrator user name must be provided and it shouldn't be empty + Administrator user password must be added and it shouldn't be null or empty + + + + Show the indicated item in the HW editor of the attached TIA Portal + + Which view of the HW editor to show + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + The project's comment + + + + + + Composition of device user groups + + + + + + Composition of devices + + + + + + Composition of graphics + + + + + + Contains log of project history events + + + + + + Composition of HW extensions + + + + + + Project's language settings. + + + + + + EOM parent of this object + + + + + + Plant views + + + + + + Gets the project library + + + + + + Composition of Subnets + + + + + + Gets the devices system group + + + + + + Composition of used products in the project + + + + + + Author of the project + + + + + + Project copyright information + + + + + + The creation time of the project + + + + + + The project family + + + + + + True if there are unsaved changes to the project + + + + + + Indicates whether the project is the primary project + + + + + + To indicate whether Support for Simulation during block compilation is enabled for the project + + + + + + To indicate whether Support for Virtual PLC during block compilation is enabled for the project + + + + + + The time of the last modification of the project + + + + + + The project was last modified by this user. + + + + + + The name of the Project + + + + + + The path to this project + + + + + + The size of the project in KB + + + + + + The version of this project + + + + + + Archives the current project + + Directory where the project to be archived + File name for the archived file + Archivation mode + + + + Closes the project + + + + + Saves all changes of the project + + + + + Saves all changes of the project to a new location. + + Target location for newly SavedAs project + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Archivation mode + + + + + None + + + + + Compressed + + + + + Discards Restorable Data + + + + + Discards Restorable Data and compresses + + + + + Composition of Projects + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Open Action + + Path to the Tia Portal project file + Siemens.Engineering.Project + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project + + + + Open project and authenticate with UMAC if necessary. + + Path to the Tia Portal project file. + Delegate that will be called if user authentication with UMAC is required. + Siemens.Engineering.Project + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. + + + + Open project and authenticate with UMAC if necessary. + + Path to the Tia Portal project file. + Delegate that will be called if user authentication with UMAC is required. + Open mode. + Siemens.Engineering.Project + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. + + + + Open Action with project update is necessary + + Path to the Tia Portal project file + Siemens.Engineering.Project + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. + + + + Open Action with project update and authenticate with UMAC if necessary. + + Path to the Tia Portal project file. + Delegate that will be called if user authentication with UMAC is required. + Siemens.Engineering.Project + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. + + + + Open Action with project update and authenticate with UMAC if necessary. + + Path to the Tia Portal project file. + Delegate that will be called if user authentication with UMAC is required. + Open mode. + Siemens.Engineering.Project + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. + + + + Retrieves an archived project + + The path of the archived project file + The path to the folder where project would be retrieved. + Siemens.Engineering.Project + + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. + + + + Retrieves an archived project with UMAC + + The path of the archived project file + The path to the folder where project would be retrieved. + Delegate will be called if the project is protected and user authentication is required. If the project is not protected, then null can be passed as parameter + Siemens.Engineering.Project + + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. + + + + Retrieves an archived project with UMAC and opens the project as Primary or Secorndary + + The path of the archived project file + The path to the folder where project would be retrieved. + Delegate will be called if the project is protected and user authentication is required.If the project is not protected, then null can be passed as parameter + Project Open Mode + Siemens.Engineering.Project + + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. + + + + Retrieves a project from an archive and upgrades it to the current version + + The path of the archived project file + The path to the folder where project would be retrieved. + Siemens.Engineering.Project + + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. + + + + Retrieves a project from an archive and upgrades it to the current version with umac + + The path of the archived project file + The path to the folder where project would be retrieved. + Delegate will be called if the project is protected and user authentication is required.If the project is not protected, then null can be passed as parameter + Siemens.Engineering.Project + + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. + + + + Retrieves a project from an archive and upgrades it to the current version + + The path of the archived project file + The path to the folder where project would be retrieved. + Delegate will be called if the project is protected and user authentication is required.If the project is not protected, then null can be passed as parameter + Project Open Mode + Siemens.Engineering.Project + + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project. + + + + Create Action + + Directory that will contain project's folder. + The name of a project to be created. + Siemens.Engineering.Project + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Project open mode + + + + + Opens file as the primary project. + + + + + Opens file as a secondary project. + + + + + Represents a project text result + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Path to a text result + + + + + + Final state of the project text result + + + + + + The state of project text result + + + + + Info state + + + + + Warning state + + + + + Error state + + + + + Throws when simaticML version provided for an export API does not support in current TiaPortal + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + The access level of the associated TIA Portal + + + + + No access level + + + + + Internal use only. + + + + + Internal use only. + + + + + Modify access + + + + + Access to published features + + + + + Internal use only. + + + + + Internal use only. + + + + + The trust authority of the associated TIA Portal + + + + + No trust authority + + + + + Signed + + + + + Certified + + + + + Certified with expiration + + + + + Feature tokens + + + + + Represents an open transaction in a persistence (i.e. single unit of work) + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Commit transaction when disposed + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Indicates if the transaction can be committed. + + + + + + Indicates if a commit has been requested. + + + + + + Object that is used to authenticate user. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Set password. + + Password + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + User name. + + + + + + User Type + + + + + + The delegate that will called back for user credetials if project is protected. + + UmacCredetials instance + + + + User type. + + + + + Project user. + + + + + Global user. + + + + + Represents a product used by a project + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the used product + + + + + + The product version + + + + + + Composition of UsedProducts + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Defines the contract of a Protection Provider, should be used as the base class for client-specific ProtectionProviders + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets the invalid characters from the user password input + + System.Collections.Generic.IEnumerable<System.Char> + + + + Sets protection for the underlying object + + the password to protect the object with + + + + Removes protection from the underlying object + + the password the underlying object is currently protected with + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Cax Import Merge options + + + + + Move to ParkingLot folder + + + + + Overwrites existing items + + + + + Retain existing items + + + + + Service Provider for CAx Export/Import operations + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Command to CAx Export at Device level + + Device to Export + Export file path + Siemens.Engineering.Cax.TransferResult + + + + Command to CAx Export at Single/Multi user Project level + + Project to Export. Project can be single user or Multi-user. + Export file Path + Siemens.Engineering.Cax.TransferResult + + + + Command to CAx Export at Device level + + Device to Export + Export file path + Log file path + System.Boolean + + + + Command to CAx Export at Project level + + Project to Export + Export file Path + Log file Path + System.Boolean + + + + Command to CAx Export at Single/Multi user Project level + + Project to Export. Project can be single user or Multi-user. + Export file Path + Log file Path + System.Boolean + + + + Command to CAx Import + + Import file path + Cax Import Merge options + Siemens.Engineering.Cax.TransferResult + + + + Command to CAx Import + + Import file path + Log file path + Cax Import Merge options + System.Boolean + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The results of a CAx transfer + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Collection of output messages for the result of a given transfer scenario + + + + + + EOM parent of this object + + + + + + Number of errors in a given CAx transfer scenario + + + + + + Final state of a given transfer scenario + + + + + + Number of warnings in a given CAx transfer scenario + + + + + + Transfer result message + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Access to the transfer result messages for a given transfer scenario + + + + + + EOM parent of this object + + + + + + Date and time in a transfer result message + + + + + + Number of errors in a transfer result message + + + + + + Description or content of a transfer result message + + + + + + Final state in a transfer result message + + + + + + Number of warnings in a transfer result message + + + + + + Composition of transfer result message + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The list of possible transfer result states + + + + + Transfer finished successfully + + + + + Transfer finished with information + + + + + Transfer finished with warnings + + + + + Transfer finished with errors + + + + + Summary object that contains the result of a comparison + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Browse to the element containing the result of a given compare scenario + + + + + + Compare results on an element + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Browse to the collection of compare scenarios on a single element + + + + + + EOM parent of this object + + + + + + The result of a comparison + + + + + + Information on the result of a given compare scenario + + + + + + Left side name of a compare scenario on a single element + + + + + + Right side name of a compare scenario on a single element + + + + + + Composition of CompareResultElements + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The list of possible states of a compare result + + + + + Folder contents has one or more differences + + + + + Folder content is identical + + + + + Folder contents have one or more differences, folder's own state different + + + + + Folder content is the same, folder's own state is different + + + + + Objects are different + + + + + Left object is missing + + + + + Right object is missing + + + + + These 2 objects are identical + + + + + Comparison of these 2 objects is irrelevant + + + + + The class that provides compilation of an item + + + + + An interface indication that the item supports compilation + + + + + Compiles the item + + Siemens.Engineering.Compiler.CompilerResult + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Compiles the item + + Siemens.Engineering.Compiler.CompilerResult + + + + EOM parent of this object + + + + + + The results of a compilation + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Collection of output messages for the result of a given compile scenario + + + + + + EOM parent of this object + + + + + + Number of errors in a given compile scenario + + + + + + Final state of a given compile scenario + + + + + + Number of warnings in a given compile scenario + + + + + + Compilation results message + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Access to the compiler messages for a given compile scenario + + + + + + EOM parent of this object + + + + + + Date and time in a compiler message + + + + + + Description or content of a compiler message + + + + + + Number of errors in a compiler message + + + + + + Path to a compiler message + + + + + + Final state in a compiler message + + + + + + Number of warnings in a compiler message + + + + + + Composition of CompareResultMessages + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The list of possible compiler result options + + + + + Compile finished successfully + + + + + Compile finished with information + + + + + Compile finished with warnings + + + + + Compile finished with errors + + + + + Online accessible device + + + + + Connection cofiguration path to a device. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The subnet-address of the accessible device + + + + + + The accessible device series e.g. 'S7-1500' + + + + + + The MAC address of the accessible device + + + + + + Name of the accessible device + + + + + + The connection configuration address + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The nodeaddress as string + + + + + + The name of the configuration address + + + + + + Composition of ConfigurationAddresses + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create an address + + Address of node + Siemens.Engineering.Connection.ConfigurationAddress + + + + Finds a given configuration address + + Name to find + Siemens.Engineering.Connection.ConfigurationAddress + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The connection configuration gateway + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of configuration addresses + + + + + + EOM parent of this object + + + + + + The name of the configuration gateway + + + + + + Composition of ConfigurationGateways + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a given configuration gateway + + Name to find + Siemens.Engineering.Connection.ConfigurationGateway + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The connection configuration mode + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Composition of Pc interfaces + + + + + + The name of the configuration mode + + + + + + Composition of ConfigurationModes + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a given configuration mode + + Name to find + Siemens.Engineering.Connection.ConfigurationMode + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The connection configuration pc interface + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Delivers a list of accessible devices + + System.Collections.Generic.IList<Siemens.Engineering.Connection.ConfigurationAccessibleDevice> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of configurationAddress + + + + + + EOM parent of this object + + + + + + Composition of configuration Subnets + + + + + + Composition of configuration target interfaces + + + + + + The name of the configuration Pc interface + + + + + + Number identifying PcInterface + + + + + + Composition of ConfigurationPcInterfaces + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a given configuration pc interface + + Name to find + Number to find + Siemens.Engineering.Connection.ConfigurationPcInterface + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The connection configuration subnet + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of configuration addresses + + + + + + Get all gateways associated with this subnet + + + + + + EOM parent of this object + + + + + + The name of the configuration Subnet + + + + + + Composition of ConfigurationSubnets + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a given configuration Subnet + + Name to find + Siemens.Engineering.Connection.ConfigurationSubnet + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The connection configuration target interface + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of configurationAddress + + + + + + EOM parent of this object + + + + + + The name of the configuration target interface + + + + + + Composition of ConfigurationTargetInterfaces + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a given configuration target interface + + Name to find + Siemens.Engineering.Connection.ConfigurationTargetInterface + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Provides the online connection + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + If online is configured, then apply the configuration + + The address to apply the configuration + System.Boolean + + + + If online is configured, then apply the configuration + + The target interface for which to apply the configuration + System.Boolean + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Event for OnlineConfigurations like legitimation and secure communication. + + + + + Composition of configuration modes + + + + + + EOM parent of this object + + + + + + Disable Tls (Transport Layer Security) protocol. + + + + + + Indicates if the connection is configured + + + + + + Represents the access type of an CrossReference referenced object + + + + + Represents an undefined access value + + + + + Read only access + + + + + Write access + + + + + Read and write access + + + + + Represents the case when access type is not known + + + + + Definition access + + + + + Declaration access + + + + + Interface access + + + + + Jump access + + + + + Monitor access + + + + + Modify access + + + + + Force access + + + + + Call access + + + + + Unconditional block call access + + + + + Conditional block call access + + + + + Multiple instance access + + + + + Single instance access + + + + + Open access + + + + + Interlock access + + + + + Supervision access + + + + + Action access + + + + + Transition access + + + + + Read only access + + + + + Write access + + + + + Read and write access + + + + + Single instance access + + + + + Multiple instance access + + + + + PRODIAG supervision access + + + + + Initialization access + + + + + Declaration access + + + + + Declaration access + + + + + TypeAlarm access + + + + + InstanceAlarm access + + + + + Parameter instance access + + + + + Parameter instance access + + + + + CreateReference access + + + + + Create reference access + + + + + Represents the type of filters supported by cross reference service + + + + + Returns cross references for source object(s) + + + + + Returns cross references only for source object(s) with references + + + + + Returns cross references only for source object(s) without references + + + + + Returns cross references only for unused source object(s) + + + + + Represents the cross references result for an object + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Get the source object(s) on which cross reference is performed + + + + + + Represent an abstract CrossReference service object + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets the cross references for an object + + Represents the type of CrossReference filter + Siemens.Engineering.CrossReference.CrossReferenceResult + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + CrossReference Location object + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The access type of a referenced location object + + + + + + The address of a referenced location object + + + + + + The name of a referenced location object + + + + + + The reference location of a referenced object + + + + + + The reference type of a referenced location object + + + + + + Represents the underlying referenced as engineering object + + + + + + The name of the referenced as object + + + + + + The type name of a referenced location object + + + + + + Location composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents the CrossReference Reference object + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Get the locations of a referenced object + + + + + + EOM parent of this object + + + + + + The address of an CrossReference reference object + + + + + + The device name of an CrossReference reference object + + + + + + The name of an CrossReference reference object + + + + + + The path of an CrossReference reference object + + + + + + The type name of an CrossReference reference object + + + + + + Represents the underlying reference engineering object + + + + + + ReferenceObject Composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents the reference type of an CrossReference reference object + + + + + "Uses" relation, Represents a case when some object uses another one + + + + + "Used by" relation, Represents a case when some object is used by another one. + + + + + "Undefined" relation. Represents a relation that is not defined, The default ReferenceType value. + + + + + "TypeInstance" relation, Represents the case when some object is representing the type of another one. + + + + + "InstanceType" relation, Represents the case when some object is instance of another one + + + + + "Assigns" relation. Represents the case when some object is assigned as a parameter to another one + + + + + "Belongs" relation. Represents the case when some object belongs to another one + + + + + "Contains" relation. Represents the case when some object contains another one, is the opposite one to the "Belongs" relation. + + + + + "Defines" relation, Represents the case when some object defines another one + + + + + "DefinedBy" relation, Represents the case when some object is defined by another one + + + + + "Overlaps" relation, Represents the case when some object shares the same address range (fully or partially) with another object + + + + + "Scope" relation, Represents the case when some object defines a scope for another one. + + + + + "Unknown" relation, Represents the case when relationship between objects are not known/error in relationship + + + + + Represents the CrossReference SourceObject + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Get the children of the source object + + + + + + EOM parent of this object + + + + + + Get the references of the source object + + + + + + The address of an CrossReference source object + + + + + + The device name of an CrossReference source object + + + + + + The name of an CrossReference source object + + + + + + The path of an CrossReference source object + + + + + + The type name of an CrossReference source object + + + + + + The underlying source engineering object + + + + + + SourceObject composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Throws if CustomIdentity is not found for a given key. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + The class for setting and getting the user defined key-value + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Get the value for the given key + + The user defined key + System.String + + + + Remove CustomIdentity entry for the given key + + The key to which the custom identity entry to be deleted. + Throws if CustomIdentity for a given key is not found. + + + + The user defined key and value to set + + User defined key + User defined value + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + + + Configuration that allows to modify download. + + + + The list of possible download options + + + + + Download nothing + + + + + Download hardware. Complete download when used alone, delta download when used in combination with SoftwareOnlyChanges. + + + + + Download software all. Do not combine with SoftwareOnlyChanges + + + + + Download software only changes. Do not combine with Software + + + + + Service provides download functionality + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Downloads hardware and software into a folder + + Path where the configuration will be downloaded to + This delegate will be called for each configuration before the download. + Siemens.Engineering.Download.DownloadResult + + + + Downloads hardware and software to the device + + Connection cofiguration path to a device. + This delegate will be called for each configuration before the download. + This delegate will be called for each configuration after the download. + Download options + Siemens.Engineering.Download.DownloadResult + + + + Download Hardware and Software to a target with specific IP-Address + + Connection cofiguration path to a device. + Configuration address for station download + This delegate will be called for each configuration before the download. + This delegate will be called for each configuration after the download. + Download options + Siemens.Engineering.Download.DownloadResult + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Connection Configuration. + + + + + + EOM parent of this object + + + + + + The results of a download + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Collection of output messages for the result of a given download scenario. + + + + + + EOM parent of this object + + + + + + Number of errors in a given download scenario + + + + + + Final state of a given compile scenario + + + + + + Number of warnings in a given download scenario + + + + + + Download result message + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Access to the download messages for a given download scenario + + + + + + EOM parent of this object + + + + + + Date and time in a download message + + + + + + Number of errors in a download message + + + + + + Description or content of a download message + + + + + + Final state in a download message + + + + + + Number of warnings in a download message + + + + + + Composition of download result messages. + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The list of possible compiler result options + + + + + Download finished successfully + + + + + Download finished with information + + + + + Download finished with warnings + + + + + Download finished with errors + + + + + Service provides download functionality for R/H systems + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Downloads hardware and software into a folder + + Path where the configuration will be downloaded to + This delegate will be called for each configuration before the download. + Siemens.Engineering.Download.DownloadResult + + + + Downloads hardware and software to the backup device + + Connection cofiguration path to a device. + This delegate will be called for each configuration before the download. + This delegate will be called for each configuration after the download. + Download options + Siemens.Engineering.Download.DownloadResult + + + + Downloads hardware and software to the backup device with specific address + + Connection cofiguration path to a device. + Configuration address for station download + This delegate will be called for each configuration before the download. + This delegate will be called for each configuration after the download. + Download options + Siemens.Engineering.Download.DownloadResult + + + + Downloads hardware and software to the primary device + + Connection cofiguration path to a device. + This delegate will be called for each configuration before the download. + This delegate will be called for each configuration after the download. + Download options + Siemens.Engineering.Download.DownloadResult + + + + Downloads hardware and software to the primary device with specific address + + Connection cofiguration path to a device. + Configuration address for station download + This delegate will be called for each configuration before the download. + This delegate will be called for each configuration after the download. + Download options + Siemens.Engineering.Download.DownloadResult + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Connection Configuration. + + + + + + EOM parent of this object + + + + + + Active test and commissioning functions could be canceled by loading to the device. + + + + + Download configuration that provides choices. + + + + + Donwload configuration base class. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Descriptions of this onfiguration + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for ActiveTestCanBeAborted configuration + + + + + No action + + + + + Accept all + + + + + Active test and commissioning functions could prevent loading to the device. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for ActiveTestCanPreventDownload configuration + + + + + NoAction + + + + + Accept all + + + + + Download all alarm texts and text list texts + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for AlarmTextLibrariesDownload configuration + + + + + Consistent download + + + + + No action + + + + + Download software to device + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for AllBlocksDownload configuration + + + + + Download all blocks to the device + + + + + Block binding password configuration + + + + + Download password configuration. + + + + + Sets password + + Required password. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Is secure communication used. + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Checks before downloading to the device. + + + + + Download configuration that can be checked/unchecked. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies if this configuration checked. + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Download software to device + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for ConsistentBlocksDownload configuration + + + + + Consistent download + + + + + Different memory reserves in the online block and offline block are preventing "Download without reinitialization". + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for DataBlockReinitialization configuration + + + + + All data values, including retain data, will be initialized with their defined start values during loading. Set the PLC to STOP before loading. + + + + + No action regarding "Download with reinitialization". + + + + + Differences between configured and target modules (online) + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for DifferentTargetConfiguration configuration + + + + + No action + + + + + Accept all + + + + + Different data formats in online and offline project. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Based on this option dynamic certificates will be deleted + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The download must be expanded beyond your selection. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for ExpandDownload configuration + + + + + No action + + + + + Download + + + + + Components with a different version are installed on the target device. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The modules will initialize memory. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for InitializeMemory configuration + + + + + No action + + + + + Accept all + + + + + Load identification data to the PROFINET IO devices and their modules. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for LoadIdentificationData configuration + + + + + Load nothing + + + + + Load data + + + + + Enter a password to gain read access to the module. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Enter a password to gain write access to the module + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Overwrite if object exists online? + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Overwrite + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for OverwriteOnMemoryCard configuration + + + + + No action + + + + + Download to memory card + + + + + Delete and replace system data in target + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for OverwriteSystemData configuration + + + + + No action + + + + + Download to device + + + + + There are differences between the settings for the project and the settings for PLC programming. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Set the PlcMasterSecret password for download + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + CPU protection will be changed to a lower level. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for ProtectionLevelChanged configuration + + + + + No change + + + + + Continue downloading to the device + + + + + Reset module + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for ResetModule configuration + + + + + No action + + + + + Delete all + + + + + Available selections for LoadIdentificationData configuration + + + + + Accept All + + + + + Delete Selected + + + + + Delete All + + + + + Based on this option dynamic certificates will be deleted + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Start modules after downloading to device. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for StartBackupModules configuration + + + + + No action + + + + + Switch To Primary Cpu + + + + + Start module + + + + + Start modules after downloading to device. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for StartModules configuration + + + + + No action + + + + + Start module + + + + + The modules are stopped for downloading to device. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + The modules are stopped for downloading to device. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for StopHSystemOrModule configuration + + + + + No action + + + + + Stop R/H-System + + + + + Stop module + + + + + Available selections for StopHSystem configuration + + + + + No action + + + + + Stop R/H-System + + + + + The modules are stopped for downloading to device. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for StopModules configuration + + + + + No action + + + + + Stop all + + + + + Start modules after downloading to device. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for SwitchBackupToPrimary configuration + + + + + No action + + + + + Change to Primary + + + + + Download Software for Cpu or PlcSim + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for Target Device configuration + + + + + created software will be used in a real plc + + + + + created software will be used in a plc sim advanced plc instance + + + + + Turn off the sequence before loading. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Different project versions in the configured device and target device (online). + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Based on this option UMAC user management data will be downloaded + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for downloading umac user configuration + + + + + Keep online user management data + + + + + Update user management data but keep online password + + + + + Download all user management data (reset to project) + + + + + Wait on reboot of a pc system. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuation. + + + + + + Available selections for WaitOnReboot configuration. + + + + + Does not wait for a pc system reboot. + + + + + Waits until the reboot is done or timeout + + + + + Baseclass for all FingerprintDataItems + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Type of item delivers the fingerprintdataitem + + + + + + The value of the fingerprintdataitem + + + + + + Composition of FingerprintDateItems + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Service provides fingerprintdata functionality + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Contains a composition of fingerprintdataitems + + Configuration address for fingerprintdata + Online configuration delegate + Siemens.Engineering.FingerprintData.FingerprintDataResult + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Connection Configuration. + + + + + + EOM parent of this object + + + + + + Result of action GetFingerprintData + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of fingerprintdataitems + + + + + + EOM parent of this object + + + + + + Possible values for property AM1InputsActiveInputs + + + + + Value1Input + + + + + Value2Inputs + + + + + Possible values for property AM1InputsInputSignal + + + + + Value0To20ma + + + + + Value4To20ma + + + + + Possible values for property AM1InputsResponseToOpenCircuit + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property AM1LowerTripLevelActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpfOn + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property AM1LowerTripLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Trip + + + + + Possible values for property AM1LowerWarningLevelActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpfOn + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property AM1LowerWarningLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property AM1OutputsOutputSignal + + + + + Value0To20ma + + + + + Value4To20ma + + + + + Possible values for property AM1UpperTripLevelActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpfOn + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property AM1UpperTripLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Trip + + + + + Possible values for property AM1UpperWarningLevelActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpfOn + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property AM1UpperWarningLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property AM2InputsActiveInputs + + + + + Value1Input + + + + + Value2Inputs + + + + + Possible values for property AM2InputsInputSignal + + + + + Value0To20ma + + + + + Value4To20ma + + + + + Possible values for property AM2InputsResponseToOpenCircuit + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property AM2LowerTripLevelActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpfOn + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property AM2LowerTripLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Trip + + + + + Possible values for property AM2LowerWarningLevelActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpfOn + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property AM2LowerWarningLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property AM2OutputsOutputSignal + + + + + Value0To20ma + + + + + Value4To20ma + + + + + Possible values for property AM2UpperTripLevelActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpfOn + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property AM2UpperTripLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Trip + + + + + Possible values for property AM2UpperWarningLevelActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpfOn + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property AM2UpperWarningLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property Activation + + + + + PowerStageDisabled + + + + + PowerStageActive + + + + + PowerStageActiveStopCurrent + + + + + Possible values for property ActivePowerLowerTripLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Trip + + + + + Possible values for property ActivePowerLowerWarningLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property ActivePowerUpperResponseToTripLevel + + + + + Deactivated + + + + + Signal + + + + + Trip + + + + + Possible values for property ActivePowerUpperWarningLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + The object holding the address data + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Assign the current process image to the OB. + + The organizational block to assign. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Address's associated AddressControllers + + + + + + The IO type of the address + + + + + + Length of the address + + + + + + The start address of this address + + + + + + Associated addresses + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Composition of Addresses + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + AddressContext of an address + + + + + Address context: None + + + + + Address context: Device + + + + + Address context: Head + + + + + Address IO type + + + + + Address IO type: None + + + + + Address IO type: Input + + + + + Address IO type: Output + + + + + Address IO type: Substitute + + + + + Address IO type: Diagnosis + + + + + Possible values for property AmplifierBoost + + + + + Deactivated + + + + + Activated + + + + + No + + + + + Yes + + + + + Possible values for property ApplicationControlFunction + + + + + OverloadRelay + + + + + DirectStarter + + + + + ReversingStarter + + + + + MoldedCaseCircuitBreaker + + + + + StarDeltaStarter + + + + + StarDeltaReversingStarter + + + + + DahlanderStarter + + + + + DahlanderReversingStarter + + + + + PoleChangingStarter + + + + + PoleChangingReversingStarter + + + + + SolenoidValve + + + + + Positioner1 + + + + + Positioner2 + + + + + Positioner3 + + + + + Positioner4 + + + + + Positioner5 + + + + + SoftStarter + + + + + SoftStarterWithReversingContactor + + + + + Possible values for property ApplicationControllerActive + + + + + Deactivated + + + + + Active + + + + + Possible values for property AsiMultipleAddressDetection + + + + + Deactivated + + + + + ActivatedForAsi30V + + + + + ActivatedForAsi24V + + + + + Possible values for property AsiProfileID + + + + + Value0 + + + + + Value1 + + + + + Value2 + + + + + Value3 + + + + + Value4 + + + + + Value5 + + + + + Value6 + + + + + Value7 + + + + + Value8 + + + + + Value9 + + + + + ValueA + + + + + ValueB + + + + + ValueC + + + + + ValueD + + + + + ValueE + + + + + ValueF + + + + + Possible values for property AsiProfileID1 + + + + + Value0 + + + + + Value1 + + + + + Value2 + + + + + Value3 + + + + + Value4 + + + + + Value5 + + + + + Value6 + + + + + Value7 + + + + + Value8 + + + + + Value9 + + + + + ValueA + + + + + ValueB + + + + + ValueC + + + + + ValueD + + + + + ValueE + + + + + ValueF + + + + + Possible values for property AsiProfileIO + + + + + Value0 + + + + + Value1 + + + + + Value2 + + + + + Value3 + + + + + Value4 + + + + + Value5 + + + + + Value6 + + + + + Value7 + + + + + Value8 + + + + + Value9 + + + + + ValueA + + + + + ValueB + + + + + ValueC + + + + + ValueD + + + + + ValueE + + + + + ValueF + + + + + Possible values for property BaseFrequency + + + + + Value800 + + + + + Value400 + + + + + Value200 + + + + + Value80 + + + + + Value40 + + + + + Value20 + + + + + Value8 + + + + + Value4 + + + + + Value2000 + + + + + Possible values for property BasicType + + + + + None + + + + + Value1 + + + + + Value2 + + + + + Value3 + + + + + Possible values for property BasicUnitInputsDebouncingTimes + + + + + Value6 + + + + + Value16 + + + + + Value26 + + + + + Value36 + + + + + Devices baud rate + + + + + No Baud rate + + + + + Baud rate of 9600 + + + + + Baud rate of 19200 + + + + + Baud rate of 45450 + + + + + Baud rate of 93750 + + + + + Baud rate of 187500 + + + + + Baud rate of 500000 + + + + + Baud rate of 1500000 + + + + + Baud rate of 3000000 + + + + + Baud rate of 6000000 + + + + + Baud rate of 12000000 + + + + + Possible values for property BehaviorOfCounterValueAfterCaptureDI0 + + + + + ContinueCounting + + + + + SetToStartValueAndContinueCounting + + + + + Possible values for property BehaviorOfCounterValueAfterCaptureDI1 + + + + + ContinueCounting + + + + + SetToStartValueAndContinueCounting + + + + + Possible values for property BehaviorOfCounterValueAfterCaptureDI2 + + + + + ContinueCounting + + + + + SetToStartValueAndContinueCounting + + + + + Possible values for property BehaviorOfDI4 + + + + + DigitalInputWithoutFunction + + + + + GateStartOrStopLevelTriggered + + + + + Possible values for property BehaviorOfDI5 + + + + + DigitalInputWithoutFunction + + + + + CountDirection + + + + + Possible values for property BehaviorOfDI6 + + + + + DigitalInputWithoutFunction + + + + + GateStartOrStopLevelTriggered + + + + + Possible values for property BehaviorOfDI7 + + + + + DigitalInputWithoutFunction + + + + + CountDirection + + + + + Possible values for property BlockingCurrent + + + + + None + + + + + Value150 + + + + + Value200 + + + + + Value250 + + + + + Value300 + + + + + Value350 + + + + + Value400 + + + + + Value450 + + + + + Value500 + + + + + Value550 + + + + + Value600 + + + + + Value650 + + + + + Value700 + + + + + Value750 + + + + + Value800 + + + + + Value850 + + + + + Value900 + + + + + Value950 + + + + + Value1000 + + + + + Possible values for property BoostCurrent + + + + + Value0 + + + + + CouldNotCalculateTheDynamicDisplayName + + + + + CouldNotCalculateTheDynamicDisplayName2 + + + + + CouldNotCalculateTheDynamicDisplayName3 + + + + + CouldNotCalculateTheDynamicDisplayName4 + + + + + CouldNotCalculateTheDynamicDisplayName5 + + + + + CouldNotCalculateTheDynamicDisplayName6 + + + + + CouldNotCalculateTheDynamicDisplayName7 + + + + + CouldNotCalculateTheDynamicDisplayName8 + + + + + CouldNotCalculateTheDynamicDisplayName9 + + + + + CouldNotCalculateTheDynamicDisplayName10 + + + + + CouldNotCalculateTheDynamicDisplayName11 + + + + + CouldNotCalculateTheDynamicDisplayName12 + + + + + CouldNotCalculateTheDynamicDisplayName13 + + + + + CouldNotCalculateTheDynamicDisplayName14 + + + + + CouldNotCalculateTheDynamicDisplayName15 + + + + + CouldNotCalculateTheDynamicDisplayName16 + + + + + CouldNotCalculateTheDynamicDisplayName17 + + + + + CouldNotCalculateTheDynamicDisplayName18 + + + + + CouldNotCalculateTheDynamicDisplayName19 + + + + + CouldNotCalculateTheDynamicDisplayName20 + + + + + CouldNotCalculateTheDynamicDisplayName21 + + + + + CouldNotCalculateTheDynamicDisplayName22 + + + + + CouldNotCalculateTheDynamicDisplayName23 + + + + + CouldNotCalculateTheDynamicDisplayName24 + + + + + CouldNotCalculateTheDynamicDisplayName25 + + + + + CouldNotCalculateTheDynamicDisplayName26 + + + + + CouldNotCalculateTheDynamicDisplayName27 + + + + + CouldNotCalculateTheDynamicDisplayName28 + + + + + CouldNotCalculateTheDynamicDisplayName29 + + + + + CouldNotCalculateTheDynamicDisplayName30 + + + + + CouldNotCalculateTheDynamicDisplayName31 + + + + + CouldNotCalculateTheDynamicDisplayName32 + + + + + CouldNotCalculateTheDynamicDisplayName33 + + + + + CouldNotCalculateTheDynamicDisplayName34 + + + + + CouldNotCalculateTheDynamicDisplayName35 + + + + + Possible values for property Brightness + + + + + None + + + + + VeryDark + + + + + Dark + + + + + Medium + + + + + Bright + + + + + VeryBright + + + + + Possible values for property BusPowerSupplyActive + + + + + Deactivated + + + + + Active + + + + + BusProfile + + + + + No bus profile + + + + + Dp bus profile + + + + + Standard bus profile + + + + + Universal bus profile + + + + + User defined bus profile + + + + + Possible values for property CableLength + + + + + None + + + + + Length20m + + + + + Length50m + + + + + Length100m + + + + + Length1000m + + + + + Length3000m + + + + + Length5000m + + + + + Length10000m + + + + + Possible values for property CableLocking + + + + + NoCableLocking + + + + + ExternalViaPii + + + + + PolarityReversalPulse800Ms + + + + + PolarityReversalPermanent + + + + + OpenCollector + + + + + Possible values for property CableLockingFeedback + + + + + ExternalViaPiq + + + + + InternalModuleDi + + + + + NoFeedback + + + + + Cable Name + + + + + No cable name + + + + + FO Standard Cable 62 5 cable name + + + + + FO Standard Cable 9 cable name + + + + + FO Standard Cable GP 50 cable name + + + + + GI PCF Standard Cable cable name + + + + + GI POF Standard Cable cable name + + + + + PCF Standard Cable GP cable name + + + + + POF Standard Cable GP cable name + + + + + FO Trailing Cable GP cable name + + + + + Flexible FO Cable 62 5 cable name + + + + + Flexible FO Cable 9 cable name + + + + + GI PCF Trailing Cable cable name + + + + + GI POF Trailing Cable cable name + + + + + PCF Trailing Cable GP cable name + + + + + POF Trailing Cable cable name + + + + + FO Ground Cable cable name + + + + + Possible values for property Calculator2OperatingMode + + + + + BothInputsOfTheTypeWord + + + + + Inputs1And2AsDWordInput + + + + + Possible values for property Calculator2Operator + + + + + Addition + + + + + Subtraction + + + + + Multiplication + + + + + Division + + + + + Possible values for property Calculator3Operator1 + + + + + Addition + + + + + Subtraction + + + + + Multiplication + + + + + Division + + + + + Possible values for property Calculator3Operator2 + + + + + Addition + + + + + Subtraction + + + + + Multiplication + + + + + Division + + + + + Possible values for property Calculator3Operator3 + + + + + Addition + + + + + Subtraction + + + + + Multiplication + + + + + Division + + + + + Possible values for property Calculator3Priority1 + + + + + Low + + + + + Medium + + + + + High + + + + + Possible values for property Calculator3Priority2 + + + + + Low + + + + + Medium + + + + + High + + + + + Possible values for property Calculator3Priority3 + + + + + Low + + + + + Medium + + + + + High + + + + + Possible values for property Calculator4Operator1 + + + + + Addition + + + + + Subtraction + + + + + Multiplication + + + + + Division + + + + + Possible values for property Calculator4Operator2 + + + + + Addition + + + + + Subtraction + + + + + Multiplication + + + + + Division + + + + + Possible values for property Calculator4Operator3 + + + + + Addition + + + + + Subtraction + + + + + Multiplication + + + + + Division + + + + + Possible values for property Calculator4Priority1 + + + + + Low + + + + + Medium + + + + + High + + + + + Possible values for property Calculator4Priority2 + + + + + Low + + + + + Medium + + + + + High + + + + + Possible values for property Calculator4Priority3 + + + + + Low + + + + + Medium + + + + + High + + + + + Possible values for property Category + + + + + None + + + + + Currents + + + + + Voltages + + + + + Powers + + + + + Energies + + + + + QualityData + + + + + Other + + + + + PowerQualityValues + + + + + Harmonics + + + + + Specifies the constants for Certificate Usage option in Certificate Management Configuration + + + + + use certificates configured and download using TIA Portal + + + + + use certificates provided by certificate management during runtime + + + + + Represents supported services of the Certificate Management Configuration + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Certificate constant ID + + + + + + Represents group name of supported services of the Certificate Management Configuration + + + + + + Available services names from modules + + + + + + Composition for Plc supported services + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create a PLC supported service + + Module certificate Id of the PLC supported service + Folder name where thr certificate is stored for a perticular + Name of the module providing the service + Siemens.Engineering.HW.CertificateSupportedService + + + + Finds the perticular service + + Certificate Id of the module providing service + Siemens.Engineering.HW.CertificateSupportedService + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents name of the service supported by certificate management configuration. + + + + + Service is OpcUa + + + + + Service is webserver + + + + + Possible values for property ChangeIpAtDevice + + + + + SetIpAddressInTheProject + + + + + SetIpAddressAtTheDevice + + + + + Class representing a channel + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The IO type of the channel + + + + + + The number of this channel + + + + + + The type of this channel + + + + + + Possible values for property ChannelAssignment + + + + + Channel0 + + + + + Channel1 + + + + + Channel2 + + + + + Channel3 + + + + + Composition of Channels + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a given channel + + Type to find + IoType to find + Number to find + Siemens.Engineering.HW.Channel + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Possible values for property ChannelConfiguration + + + + + Value2Channels2A + + + + + Value1Channel4A + + + + + Value0Inputs16Outputs + + + + + Value3Inputs13Outputs + + + + + Value4Inputs12Outputs + + + + + Value8Inputs8Outputs + + + + + Value1Channel + + + + + Value2Channels + + + + + Value3Channels + + + + + Value4Channels + + + + + Channel IO type + + + + + Channel IO type: None + + + + + Channel IO type: Input + + + + + Channel IO type: Output + + + + + Channel IO type: Complex + + + + + Channel type + + + + + Channel Type: None + + + + + Channel Type: Analog type + + + + + Channel Type: Digital + + + + + Channel Type: Technology + + + + + Possible values for property ChannelTypeForIO + + + + + DigitalInput + + + + + DigitalOutput + + + + + Possible values for property ChargingStandard + + + + + Iec61851Minus1 + + + + + SaeJ1772 + + + + + DinSpec70121 + + + + + Possible values for property ChatterMonitoring + + + + + Deactivated + + + + + Active + + + + + Value3SignalChanges + + + + + Value4SignalChanges + + + + + Value5SignalChanges + + + + + Value6SignalChanges + + + + + Value7SignalChanges + + + + + Value8SignalChanges + + + + + Value9SignalChanges + + + + + Value10SignalChanges + + + + + Value11SignalChanges + + + + + Value12SignalChanges + + + + + Value13SignalChanges + + + + + Value14SignalChanges + + + + + Value15SignalChanges + + + + + Value16SignalChanges + + + + + Value17SignalChanges + + + + + Value18SignalChanges + + + + + Value19SignalChanges + + + + + Value20SignalChanges + + + + + Value21SignalChanges + + + + + Value22SignalChanges + + + + + Value23SignalChanges + + + + + Value24SignalChanges + + + + + Value25SignalChanges + + + + + Value26SignalChanges + + + + + Value27SignalChanges + + + + + Value28SignalChanges + + + + + Value29SignalChanges + + + + + Value30SignalChanges + + + + + Value31SignalChanges + + + + + Value32SignalChanges + + + + + Value2SignalChanges + + + + + Possible values for property Classification + + + + + None + + + + + CPU + + + + + HM + + + + + Possible values for property CodeType + + + + + Gray + + + + + Dual + + + + + Profibus Communication Load + + + + + Communication Load: None + + + + + Communication Load: Low + + + + + Communication Load: Medium + + + + + Communication Load: High + + + + + Possible values for property CompatibilityMode3UF50BasicType + + + + + Value1 + + + + + Value2 + + + + + Value3 + + + + + Possible values for property CompatibilityMode3UF50Mode + + + + + Dpv0 + + + + + Dpv1 + + + + + Possible values for property CompensationValue0 + + + + + Deactivated + + + + + Pressure + + + + + Density + + + + + KinematicViscosity + + + + + MediaTemperature + + + + + SensorTemperature + + + + + AuxiliaryTemperature + + + + + Possible values for property CompensationValue1 + + + + + Deactivated + + + + + Pressure + + + + + Density + + + + + KinematicViscosity + + + + + MediaTemperature + + + + + SensorTemperature + + + + + AuxiliaryTemperature + + + + + Possible values for property ComputerNameIdenticalToPcStationName + + + + + ComputerNameIdenticalToNameOfPcStation + + + + + ComputerNameIdenticalToNameOfPcStation1 + + + + + Possible values for property ConfigurationDQOrDIGroup0 + + + + + UseInputOrOutputIndividually + + + + + TimerDqWithEnableInput + + + + + Possible values for property ConfigurationDQOrDIGroup1 + + + + + UseInputOrOutputIndividually + + + + + TimerDqWithEnableInput + + + + + Possible values for property ConfigurationDQOrDIGroup2 + + + + + UseInputOrOutputIndividually + + + + + TimerDi2WithEnableInputDi3 + + + + + IncrementalEncoderABPhaseShifted + + + + + TimerDq2WithEnableInputDi2 + + + + + TimerDqWithEnableInput + + + + + Possible values for property ConnectionType + + + + + None + + + + + Value1P2w1Phase2Wire + + + + + Value3P4w3Phase4Wire + + + + + Value3P4wi3PhaseCurrentMeasurement4Wire + + + + + Value3P4w13Phase4WireSymmetricalLoad + + + + + Value3X1p2w3X1PhaseEach2Conductors + + + + + Value2P3w2Phase3Wire + + + + + Value3P3w3Phase3Wire + + + + + Value3P3w13Phase3WireSymmetricalLoad + + + + + Indexer + + + + + DriverMode + + + + + Endstufe + + + + + Possible values for property ContactorFeedback + + + + + ExternalViaPiq + + + + + InternalModuleDi + + + + + NoFeedback + + + + + Possible values for property ControlFunctionCurrentMeasuringModuleInstalled + + + + + Delta + + + + + IncomingCable + + + + + Possible values for property ControlFunctionFeedbackCLOSEDFC + + + + + NotConnected + + + + + FixedLevel0 + + + + + FixedLevel1 + + + + + EventAM2WarningLevel0420mAGt + + + + + EventAM2WarningLevel0420mALt + + + + + EventAM2TripLevel0420mAGt + + + + + EventAM2TripLevel0420mALt + + + + + BUTestResetButton + + + + + BUInput1 + + + + + BUInput2 + + + + + BUInput3 + + + + + BUInput4 + + + + + DM1Input1 + + + + + DM1Input2 + + + + + DM1Input3 + + + + + DM1Input4 + + + + + DM2Input1 + + + + + DM2Input2 + + + + + DM2Input3 + + + + + DM2Input4 + + + + + DM1SensorChannel1 + + + + + DM1SensorChannel2 + + + + + EventTM2SensorFault + + + + + EventTM2OutOfRange + + + + + EventTM2WarningLevelTGt + + + + + EventTM2TripLevelTGt + + + + + OPTestResetButton + + + + + OPButton1 + + + + + OPButton2 + + + + + OPButton3 + + + + + OPButton4 + + + + + EventLimitMonitor5 + + + + + EventLimitMonitor6 + + + + + AcyclicReceiveBit00 + + + + + AcyclicReceiveBit01 + + + + + AcyclicReceiveBit02 + + + + + AcyclicReceiveBit03 + + + + + AcyclicReceiveBit04 + + + + + AcyclicReceiveBit05 + + + + + AcyclicReceiveBit06 + + + + + AcyclicReceiveBit07 + + + + + AcyclicReceiveBit10 + + + + + AcyclicReceiveBit11 + + + + + AcyclicReceiveBit12 + + + + + AcyclicReceiveBit13 + + + + + AcyclicReceiveBit14 + + + + + AcyclicReceiveBit15 + + + + + AcyclicReceiveBit16 + + + + + AcyclicReceiveBit17 + + + + + CyclicReceiveBit00 + + + + + CyclicReceiveBit01 + + + + + CyclicReceiveBit02 + + + + + CyclicReceiveBit03 + + + + + CyclicReceiveBit04 + + + + + CyclicReceiveBit05 + + + + + CyclicReceiveBit06 + + + + + CyclicReceiveBit07 + + + + + CyclicReceiveBit10 + + + + + CyclicReceiveBit11 + + + + + CyclicReceiveBit12 + + + + + CyclicReceiveBit13 + + + + + CyclicReceiveBit14 + + + + + CyclicReceiveBit15 + + + + + CyclicReceiveBit16 + + + + + CyclicReceiveBit17 + + + + + EnabledControlCommandOnReverseFast + + + + + EnabledControlCommandOnReverse + + + + + EnabledControlCommandOff + + + + + EnabledControlCommandOnForward + + + + + EnabledControlCommandOnForwardFast + + + + + ContactorControl1QE1 + + + + + ContactorControl2QE2 + + + + + ContactorControl3QE3 + + + + + ContactorControl4QE4 + + + + + ContactorControl5QE5 + + + + + DisplayQLEReverseFast + + + + + DisplayQLEReverse + + + + + DisplayQLAOff + + + + + DisplayQLEForward + + + + + DisplayQLEForwardFast + + + + + DisplayQLSFault + + + + + StatusGroupFault + + + + + StatusGroupWarning + + + + + StatusDeviceOk + + + + + StatusBusOk + + + + + StatusPLCPCSInRun + + + + + StatusCurrentFlowing + + + + + StatusPROFIenergyCommandStartPausePending + + + + + StatusOnReverseFast + + + + + StatusOnReverse + + + + + StatusOff + + + + + StatusOnForward + + + + + StatusOnForwardFast + + + + + StatusStartActive + + + + + StatusInterlockingTimeActive + + + + + StatusChangeoverPauseActive + + + + + StatusPositionerRunsInOPENDirection + + + + + StatusPositionerRunsInCLOSEDDirection + + + + + StatusFeedbackCLOSED + + + + + StatusFeedbackOPEN + + + + + StatusTorqueCLOSED + + + + + StatusTorqueOPEN + + + + + StatusTestPosition + + + + + StatusOperationalProtectionOff + + + + + StatusRemoteMode + + + + + StatusEmergencyStartExecuted + + + + + StatusCoolingDownPeriodActive + + + + + StatusPauseTimeActive + + + + + StatusDeviceTestActive + + + + + StatusPhaseSequence123 + + + + + StatusPhaseSequence321 + + + + + StatusEnablingCircuitClosed + + + + + EventPrewarningOverload + + + + + EventUnbalance + + + + + EventOverload + + + + + EventOverloadAndPhaseFailure + + + + + EventInternalGroundFault + + + + + EventExternalGroundFault + + + + + EventExternalGroundFaultWarning + + + + + EventThermistorTripLevel + + + + + EventThermistorShortCircuit + + + + + EventThermistorOpenCircuit + + + + + EventTM1WarningLevelTGt + + + + + EventTM1TripLevelTGt + + + + + EventTM1SensorFault + + + + + EventTM1OutOfRange + + + + + EventWarningLevelIGt + + + + + EventWarningLevelILt + + + + + EventWarningLevelPGt + + + + + EventWarningLevelPLt + + + + + EventWarningLevelCosPhiLt + + + + + EventWarningLevelULt + + + + + EventAM1WarningLevel0420mAGt + + + + + EventAM1WarningLevel0420mALt + + + + + EventTripLevelIGt + + + + + EventTripLevelILt + + + + + EventTripLevelPGt + + + + + EventTripLevelPLt + + + + + EventTripLevelCosPhiLt + + + + + EventTripLevelULt + + + + + EventAM1TripLevel0420mAGt + + + + + EventAM1TripLevel0420mALt + + + + + EventStalledRotor + + + + + EventNoStartPermitted + + + + + EventNumberOfStartsGt + + + + + EventJustOneStartPossible + + + + + EventMotorOperatingHoursGt + + + + + EventStopTimeGt + + + + + EventLimitMonitor1 + + + + + EventLimitMonitor2 + + + + + EventLimitMonitor3 + + + + + EventLimitMonitor4 + + + + + EventExternalFault1 + + + + + EventExternalFault2 + + + + + EventExternalFault3 + + + + + EventExternalFault4 + + + + + EventExternalFault5 + + + + + EventExternalFault6 + + + + + EventAM2OpenCircuit + + + + + EventAM1OpenCircuit + + + + + EventSafetyrelatedTripping + + + + + EventMonitoringPeriodForMandatoryTestingTestRequirement + + + + + EventTimestampfctActiveAndOk + + + + + EventDMFLOCALOk + + + + + EventPROFIsafeActive + + + + + EventConfiguredOperatorPanelMissing + + + + + WarningFeedbackCircuit + + + + + WarningSimultaneity + + + + + FaultHardwareFaultBasicUnit + + + + + FaultModuleFault + + + + + FaultTemporaryComponents + + + + + FaultConfigurationError + + + + + FaultParameterization + + + + + FaultBus + + + + + FaultPLCPCS + + + + + FaultExecutionOnCommand + + + + + FaultExecutionSTOPCommand + + + + + FaultFeedbackOn + + + + + FaultFeedbackOff + + + + + FaultStalledPositioner + + + + + FaultDouble0 + + + + + FaultDouble1 + + + + + FaultEndPosition + + + + + FaultAntivalence + + + + + FaultTestPositionFeedback + + + + + FaultPowerFailure + + + + + FaultOperationalProtectionOff + + + + + SignalConditioning5Output + + + + + SignalConditioning6Output + + + + + TruthTable1Output + + + + + TruthTable2Output + + + + + TruthTable3Output + + + + + TruthTable4Output + + + + + TruthTable5Output + + + + + TruthTable6Output + + + + + TruthTable7Output + + + + + TruthTable8Output + + + + + TruthTable9Output1 + + + + + TruthTable9Output2 + + + + + TruthTable10Output + + + + + TruthTable11Output + + + + + Counter5Output + + + + + Counter6Output + + + + + Timer5Output + + + + + Timer6Output + + + + + Timer1Output + + + + + Timer2Output + + + + + Timer3Output + + + + + Timer4Output + + + + + Counter1Output + + + + + Counter2Output + + + + + Counter3Output + + + + + Counter4Output + + + + + SignalConditioning1Output + + + + + SignalConditioning2Output + + + + + SignalConditioning3Output + + + + + SignalConditioning4Output + + + + + NonvolatileElement1Output + + + + + NonvolatileElement2Output + + + + + NonvolatileElement3Output + + + + + NonvolatileElement4Output + + + + + Flashing1Output + + + + + Flashing2Output + + + + + Flashing3Output + + + + + Flicker1Output + + + + + Flicker2Output + + + + + Flicker3Output + + + + + PWMOutput + + + + + Possible values for property ControlFunctionFeedbackON + + + + + NotConnected + + + + + FixedLevel0 + + + + + FixedLevel1 + + + + + EventAM2WarningLevel0420mAGt + + + + + EventAM2WarningLevel0420mALt + + + + + EventAM2TripLevel0420mAGt + + + + + EventAM2TripLevel0420mALt + + + + + BUTestResetButton + + + + + BUInput1 + + + + + BUInput2 + + + + + BUInput3 + + + + + BUInput4 + + + + + DM1Input1 + + + + + DM1Input2 + + + + + DM1Input3 + + + + + DM1Input4 + + + + + DM2Input1 + + + + + DM2Input2 + + + + + DM2Input3 + + + + + DM2Input4 + + + + + DM1SensorChannel1 + + + + + DM1SensorChannel2 + + + + + EventTM2SensorFault + + + + + EventTM2OutOfRange + + + + + EventTM2WarningLevelTGt + + + + + EventTM2TripLevelTGt + + + + + OPTestResetButton + + + + + OPButton1 + + + + + OPButton2 + + + + + OPButton3 + + + + + OPButton4 + + + + + EventLimitMonitor5 + + + + + EventLimitMonitor6 + + + + + AcyclicReceiveBit00 + + + + + AcyclicReceiveBit01 + + + + + AcyclicReceiveBit02 + + + + + AcyclicReceiveBit03 + + + + + AcyclicReceiveBit04 + + + + + AcyclicReceiveBit05 + + + + + AcyclicReceiveBit06 + + + + + AcyclicReceiveBit07 + + + + + AcyclicReceiveBit10 + + + + + AcyclicReceiveBit11 + + + + + AcyclicReceiveBit12 + + + + + AcyclicReceiveBit13 + + + + + AcyclicReceiveBit14 + + + + + AcyclicReceiveBit15 + + + + + AcyclicReceiveBit16 + + + + + AcyclicReceiveBit17 + + + + + CyclicReceiveBit00 + + + + + CyclicReceiveBit01 + + + + + CyclicReceiveBit02 + + + + + CyclicReceiveBit03 + + + + + CyclicReceiveBit04 + + + + + CyclicReceiveBit05 + + + + + CyclicReceiveBit06 + + + + + CyclicReceiveBit07 + + + + + CyclicReceiveBit10 + + + + + CyclicReceiveBit11 + + + + + CyclicReceiveBit12 + + + + + CyclicReceiveBit13 + + + + + CyclicReceiveBit14 + + + + + CyclicReceiveBit15 + + + + + CyclicReceiveBit16 + + + + + CyclicReceiveBit17 + + + + + EnabledControlCommandOnReverseFast + + + + + EnabledControlCommandOnReverse + + + + + EnabledControlCommandOff + + + + + EnabledControlCommandOnForward + + + + + EnabledControlCommandOnForwardFast + + + + + ContactorControl1QE1 + + + + + ContactorControl2QE2 + + + + + ContactorControl3QE3 + + + + + ContactorControl4QE4 + + + + + ContactorControl5QE5 + + + + + DisplayQLEReverseFast + + + + + DisplayQLEReverse + + + + + DisplayQLAOff + + + + + DisplayQLEForward + + + + + DisplayQLEForwardFast + + + + + DisplayQLSFault + + + + + StatusGroupFault + + + + + StatusGroupWarning + + + + + StatusDeviceOk + + + + + StatusBusOk + + + + + StatusPLCPCSInRun + + + + + StatusCurrentFlowing + + + + + StatusPROFIenergyCommandStartPausePending + + + + + StatusOnReverseFast + + + + + StatusOnReverse + + + + + StatusOff + + + + + StatusOnForward + + + + + StatusOnForwardFast + + + + + StatusStartActive + + + + + StatusInterlockingTimeActive + + + + + StatusChangeoverPauseActive + + + + + StatusPositionerRunsInOPENDirection + + + + + StatusPositionerRunsInCLOSEDDirection + + + + + StatusFeedbackCLOSED + + + + + StatusFeedbackOPEN + + + + + StatusTorqueCLOSED + + + + + StatusTorqueOPEN + + + + + StatusTestPosition + + + + + StatusOperationalProtectionOff + + + + + StatusRemoteMode + + + + + StatusEmergencyStartExecuted + + + + + StatusCoolingDownPeriodActive + + + + + StatusPauseTimeActive + + + + + StatusDeviceTestActive + + + + + StatusPhaseSequence123 + + + + + StatusPhaseSequence321 + + + + + StatusEnablingCircuitClosed + + + + + EventPrewarningOverload + + + + + EventUnbalance + + + + + EventOverload + + + + + EventOverloadAndPhaseFailure + + + + + EventInternalGroundFault + + + + + EventExternalGroundFault + + + + + EventExternalGroundFaultWarning + + + + + EventThermistorTripLevel + + + + + EventThermistorShortCircuit + + + + + EventThermistorOpenCircuit + + + + + EventTM1WarningLevelTGt + + + + + EventTM1TripLevelTGt + + + + + EventTM1SensorFault + + + + + EventTM1OutOfRange + + + + + EventWarningLevelIGt + + + + + EventWarningLevelILt + + + + + EventWarningLevelPGt + + + + + EventWarningLevelPLt + + + + + EventWarningLevelCosPhiLt + + + + + EventWarningLevelULt + + + + + EventAM1WarningLevel0420mAGt + + + + + EventAM1WarningLevel0420mALt + + + + + EventTripLevelIGt + + + + + EventTripLevelILt + + + + + EventTripLevelPGt + + + + + EventTripLevelPLt + + + + + EventTripLevelCosPhiLt + + + + + EventTripLevelULt + + + + + EventAM1TripLevel0420mAGt + + + + + EventAM1TripLevel0420mALt + + + + + EventStalledRotor + + + + + EventNoStartPermitted + + + + + EventNumberOfStartsGt + + + + + EventJustOneStartPossible + + + + + EventMotorOperatingHoursGt + + + + + EventStopTimeGt + + + + + EventLimitMonitor1 + + + + + EventLimitMonitor2 + + + + + EventLimitMonitor3 + + + + + EventLimitMonitor4 + + + + + EventExternalFault1 + + + + + EventExternalFault2 + + + + + EventExternalFault3 + + + + + EventExternalFault4 + + + + + EventExternalFault5 + + + + + EventExternalFault6 + + + + + EventAM2OpenCircuit + + + + + EventAM1OpenCircuit + + + + + EventSafetyrelatedTripping + + + + + EventMonitoringPeriodForMandatoryTestingTestRequirement + + + + + EventTimestampfctActiveAndOk + + + + + EventDMFLOCALOk + + + + + EventPROFIsafeActive + + + + + EventConfiguredOperatorPanelMissing + + + + + WarningFeedbackCircuit + + + + + WarningSimultaneity + + + + + FaultHardwareFaultBasicUnit + + + + + FaultModuleFault + + + + + FaultTemporaryComponents + + + + + FaultConfigurationError + + + + + FaultParameterization + + + + + FaultBus + + + + + FaultPLCPCS + + + + + FaultExecutionOnCommand + + + + + FaultExecutionSTOPCommand + + + + + FaultFeedbackOn + + + + + FaultFeedbackOff + + + + + FaultStalledPositioner + + + + + FaultDouble0 + + + + + FaultDouble1 + + + + + FaultEndPosition + + + + + FaultAntivalence + + + + + FaultTestPositionFeedback + + + + + FaultPowerFailure + + + + + FaultOperationalProtectionOff + + + + + SignalConditioning5Output + + + + + SignalConditioning6Output + + + + + TruthTable1Output + + + + + TruthTable2Output + + + + + TruthTable3Output + + + + + TruthTable4Output + + + + + TruthTable5Output + + + + + TruthTable6Output + + + + + TruthTable7Output + + + + + TruthTable8Output + + + + + TruthTable9Output1 + + + + + TruthTable9Output2 + + + + + TruthTable10Output + + + + + TruthTable11Output + + + + + Counter5Output + + + + + Counter6Output + + + + + Timer5Output + + + + + Timer6Output + + + + + Timer1Output + + + + + Timer2Output + + + + + Timer3Output + + + + + Timer4Output + + + + + Counter1Output + + + + + Counter2Output + + + + + Counter3Output + + + + + Counter4Output + + + + + SignalConditioning1Output + + + + + SignalConditioning2Output + + + + + SignalConditioning3Output + + + + + SignalConditioning4Output + + + + + NonvolatileElement1Output + + + + + NonvolatileElement2Output + + + + + NonvolatileElement3Output + + + + + NonvolatileElement4Output + + + + + Flashing1Output + + + + + Flashing2Output + + + + + Flashing3Output + + + + + Flicker1Output + + + + + Flicker2Output + + + + + Flicker3Output + + + + + PWMOutput + + + + + Possible values for property ControlFunctionFeedbackOPENFO + + + + + NotConnected + + + + + FixedLevel0 + + + + + FixedLevel1 + + + + + EventAM2WarningLevel0420mAGt + + + + + EventAM2WarningLevel0420mALt + + + + + EventAM2TripLevel0420mAGt + + + + + EventAM2TripLevel0420mALt + + + + + BUTestResetButton + + + + + BUInput1 + + + + + BUInput2 + + + + + BUInput3 + + + + + BUInput4 + + + + + DM1Input1 + + + + + DM1Input2 + + + + + DM1Input3 + + + + + DM1Input4 + + + + + DM2Input1 + + + + + DM2Input2 + + + + + DM2Input3 + + + + + DM2Input4 + + + + + DM1SensorChannel1 + + + + + DM1SensorChannel2 + + + + + EventTM2SensorFault + + + + + EventTM2OutOfRange + + + + + EventTM2WarningLevelTGt + + + + + EventTM2TripLevelTGt + + + + + OPTestResetButton + + + + + OPButton1 + + + + + OPButton2 + + + + + OPButton3 + + + + + OPButton4 + + + + + EventLimitMonitor5 + + + + + EventLimitMonitor6 + + + + + AcyclicReceiveBit00 + + + + + AcyclicReceiveBit01 + + + + + AcyclicReceiveBit02 + + + + + AcyclicReceiveBit03 + + + + + AcyclicReceiveBit04 + + + + + AcyclicReceiveBit05 + + + + + AcyclicReceiveBit06 + + + + + AcyclicReceiveBit07 + + + + + AcyclicReceiveBit10 + + + + + AcyclicReceiveBit11 + + + + + AcyclicReceiveBit12 + + + + + AcyclicReceiveBit13 + + + + + AcyclicReceiveBit14 + + + + + AcyclicReceiveBit15 + + + + + AcyclicReceiveBit16 + + + + + AcyclicReceiveBit17 + + + + + CyclicReceiveBit00 + + + + + CyclicReceiveBit01 + + + + + CyclicReceiveBit02 + + + + + CyclicReceiveBit03 + + + + + CyclicReceiveBit04 + + + + + CyclicReceiveBit05 + + + + + CyclicReceiveBit06 + + + + + CyclicReceiveBit07 + + + + + CyclicReceiveBit10 + + + + + CyclicReceiveBit11 + + + + + CyclicReceiveBit12 + + + + + CyclicReceiveBit13 + + + + + CyclicReceiveBit14 + + + + + CyclicReceiveBit15 + + + + + CyclicReceiveBit16 + + + + + CyclicReceiveBit17 + + + + + EnabledControlCommandOnReverseFast + + + + + EnabledControlCommandOnReverse + + + + + EnabledControlCommandOff + + + + + EnabledControlCommandOnForward + + + + + EnabledControlCommandOnForwardFast + + + + + ContactorControl1QE1 + + + + + ContactorControl2QE2 + + + + + ContactorControl3QE3 + + + + + ContactorControl4QE4 + + + + + ContactorControl5QE5 + + + + + DisplayQLEReverseFast + + + + + DisplayQLEReverse + + + + + DisplayQLAOff + + + + + DisplayQLEForward + + + + + DisplayQLEForwardFast + + + + + DisplayQLSFault + + + + + StatusGroupFault + + + + + StatusGroupWarning + + + + + StatusDeviceOk + + + + + StatusBusOk + + + + + StatusPLCPCSInRun + + + + + StatusCurrentFlowing + + + + + StatusPROFIenergyCommandStartPausePending + + + + + StatusOnReverseFast + + + + + StatusOnReverse + + + + + StatusOff + + + + + StatusOnForward + + + + + StatusOnForwardFast + + + + + StatusStartActive + + + + + StatusInterlockingTimeActive + + + + + StatusChangeoverPauseActive + + + + + StatusPositionerRunsInOPENDirection + + + + + StatusPositionerRunsInCLOSEDDirection + + + + + StatusFeedbackCLOSED + + + + + StatusFeedbackOPEN + + + + + StatusTorqueCLOSED + + + + + StatusTorqueOPEN + + + + + StatusTestPosition + + + + + StatusOperationalProtectionOff + + + + + StatusRemoteMode + + + + + StatusEmergencyStartExecuted + + + + + StatusCoolingDownPeriodActive + + + + + StatusPauseTimeActive + + + + + StatusDeviceTestActive + + + + + StatusPhaseSequence123 + + + + + StatusPhaseSequence321 + + + + + StatusEnablingCircuitClosed + + + + + EventPrewarningOverload + + + + + EventUnbalance + + + + + EventOverload + + + + + EventOverloadAndPhaseFailure + + + + + EventInternalGroundFault + + + + + EventExternalGroundFault + + + + + EventExternalGroundFaultWarning + + + + + EventThermistorTripLevel + + + + + EventThermistorShortCircuit + + + + + EventThermistorOpenCircuit + + + + + EventTM1WarningLevelTGt + + + + + EventTM1TripLevelTGt + + + + + EventTM1SensorFault + + + + + EventTM1OutOfRange + + + + + EventWarningLevelIGt + + + + + EventWarningLevelILt + + + + + EventWarningLevelPGt + + + + + EventWarningLevelPLt + + + + + EventWarningLevelCosPhiLt + + + + + EventWarningLevelULt + + + + + EventAM1WarningLevel0420mAGt + + + + + EventAM1WarningLevel0420mALt + + + + + EventTripLevelIGt + + + + + EventTripLevelILt + + + + + EventTripLevelPGt + + + + + EventTripLevelPLt + + + + + EventTripLevelCosPhiLt + + + + + EventTripLevelULt + + + + + EventAM1TripLevel0420mAGt + + + + + EventAM1TripLevel0420mALt + + + + + EventStalledRotor + + + + + EventNoStartPermitted + + + + + EventNumberOfStartsGt + + + + + EventJustOneStartPossible + + + + + EventMotorOperatingHoursGt + + + + + EventStopTimeGt + + + + + EventLimitMonitor1 + + + + + EventLimitMonitor2 + + + + + EventLimitMonitor3 + + + + + EventLimitMonitor4 + + + + + EventExternalFault1 + + + + + EventExternalFault2 + + + + + EventExternalFault3 + + + + + EventExternalFault4 + + + + + EventExternalFault5 + + + + + EventExternalFault6 + + + + + EventAM2OpenCircuit + + + + + EventAM1OpenCircuit + + + + + EventSafetyrelatedTripping + + + + + EventMonitoringPeriodForMandatoryTestingTestRequirement + + + + + EventTimestampfctActiveAndOk + + + + + EventDMFLOCALOk + + + + + EventPROFIsafeActive + + + + + EventConfiguredOperatorPanelMissing + + + + + WarningFeedbackCircuit + + + + + WarningSimultaneity + + + + + FaultHardwareFaultBasicUnit + + + + + FaultModuleFault + + + + + FaultTemporaryComponents + + + + + FaultConfigurationError + + + + + FaultParameterization + + + + + FaultBus + + + + + FaultPLCPCS + + + + + FaultExecutionOnCommand + + + + + FaultExecutionSTOPCommand + + + + + FaultFeedbackOn + + + + + FaultFeedbackOff + + + + + FaultStalledPositioner + + + + + FaultDouble0 + + + + + FaultDouble1 + + + + + FaultEndPosition + + + + + FaultAntivalence + + + + + FaultTestPositionFeedback + + + + + FaultPowerFailure + + + + + FaultOperationalProtectionOff + + + + + SignalConditioning5Output + + + + + SignalConditioning6Output + + + + + TruthTable1Output + + + + + TruthTable2Output + + + + + TruthTable3Output + + + + + TruthTable4Output + + + + + TruthTable5Output + + + + + TruthTable6Output + + + + + TruthTable7Output + + + + + TruthTable8Output + + + + + TruthTable9Output1 + + + + + TruthTable9Output2 + + + + + TruthTable10Output + + + + + TruthTable11Output + + + + + Counter5Output + + + + + Counter6Output + + + + + Timer5Output + + + + + Timer6Output + + + + + Timer1Output + + + + + Timer2Output + + + + + Timer3Output + + + + + Timer4Output + + + + + Counter1Output + + + + + Counter2Output + + + + + Counter3Output + + + + + Counter4Output + + + + + SignalConditioning1Output + + + + + SignalConditioning2Output + + + + + SignalConditioning3Output + + + + + SignalConditioning4Output + + + + + NonvolatileElement1Output + + + + + NonvolatileElement2Output + + + + + NonvolatileElement3Output + + + + + NonvolatileElement4Output + + + + + Flashing1Output + + + + + Flashing2Output + + + + + Flashing3Output + + + + + Flicker1Output + + + + + Flicker2Output + + + + + Flicker3Output + + + + + PWMOutput + + + + + Possible values for property ControlFunctionForward + + + + + NotConnected + + + + + FixedLevel0 + + + + + FixedLevel1 + + + + + EventAM2WarningLevel0420mAGt + + + + + EventAM2WarningLevel0420mALt + + + + + EventAM2TripLevel0420mAGt + + + + + EventAM2TripLevel0420mALt + + + + + BUTestResetButton + + + + + BUInput1 + + + + + BUInput2 + + + + + BUInput3 + + + + + BUInput4 + + + + + DM1Input1 + + + + + DM1Input2 + + + + + DM1Input3 + + + + + DM1Input4 + + + + + DM2Input1 + + + + + DM2Input2 + + + + + DM2Input3 + + + + + DM2Input4 + + + + + DM1SensorChannel1 + + + + + DM1SensorChannel2 + + + + + EventTM2SensorFault + + + + + EventTM2OutOfRange + + + + + EventTM2WarningLevelTGt + + + + + EventTM2TripLevelTGt + + + + + OPTestResetButton + + + + + OPButton1 + + + + + OPButton2 + + + + + OPButton3 + + + + + OPButton4 + + + + + EventLimitMonitor5 + + + + + EventLimitMonitor6 + + + + + AcyclicReceiveBit00 + + + + + AcyclicReceiveBit01 + + + + + AcyclicReceiveBit02 + + + + + AcyclicReceiveBit03 + + + + + AcyclicReceiveBit04 + + + + + AcyclicReceiveBit05 + + + + + AcyclicReceiveBit06 + + + + + AcyclicReceiveBit07 + + + + + AcyclicReceiveBit10 + + + + + AcyclicReceiveBit11 + + + + + AcyclicReceiveBit12 + + + + + AcyclicReceiveBit13 + + + + + AcyclicReceiveBit14 + + + + + AcyclicReceiveBit15 + + + + + AcyclicReceiveBit16 + + + + + AcyclicReceiveBit17 + + + + + CyclicReceiveBit00 + + + + + CyclicReceiveBit01 + + + + + CyclicReceiveBit02 + + + + + CyclicReceiveBit03 + + + + + CyclicReceiveBit04 + + + + + CyclicReceiveBit05 + + + + + CyclicReceiveBit06 + + + + + CyclicReceiveBit07 + + + + + CyclicReceiveBit10 + + + + + CyclicReceiveBit11 + + + + + CyclicReceiveBit12 + + + + + CyclicReceiveBit13 + + + + + CyclicReceiveBit14 + + + + + CyclicReceiveBit15 + + + + + CyclicReceiveBit16 + + + + + CyclicReceiveBit17 + + + + + EnabledControlCommandOnReverseFast + + + + + EnabledControlCommandOnReverse + + + + + EnabledControlCommandOff + + + + + EnabledControlCommandOnForward + + + + + EnabledControlCommandOnForwardFast + + + + + ContactorControl1QE1 + + + + + ContactorControl2QE2 + + + + + ContactorControl3QE3 + + + + + ContactorControl4QE4 + + + + + ContactorControl5QE5 + + + + + DisplayQLEReverseFast + + + + + DisplayQLEReverse + + + + + DisplayQLAOff + + + + + DisplayQLEForward + + + + + DisplayQLEForwardFast + + + + + DisplayQLSFault + + + + + StatusGroupFault + + + + + StatusGroupWarning + + + + + StatusDeviceOk + + + + + StatusBusOk + + + + + StatusPLCPCSInRun + + + + + StatusCurrentFlowing + + + + + StatusPROFIenergyCommandStartPausePending + + + + + StatusOnReverseFast + + + + + StatusOnReverse + + + + + StatusOff + + + + + StatusOnForward + + + + + StatusOnForwardFast + + + + + StatusStartActive + + + + + StatusInterlockingTimeActive + + + + + StatusChangeoverPauseActive + + + + + StatusPositionerRunsInOPENDirection + + + + + StatusPositionerRunsInCLOSEDDirection + + + + + StatusFeedbackCLOSED + + + + + StatusFeedbackOPEN + + + + + StatusTorqueCLOSED + + + + + StatusTorqueOPEN + + + + + StatusTestPosition + + + + + StatusOperationalProtectionOff + + + + + StatusRemoteMode + + + + + StatusEmergencyStartExecuted + + + + + StatusCoolingDownPeriodActive + + + + + StatusPauseTimeActive + + + + + StatusDeviceTestActive + + + + + StatusPhaseSequence123 + + + + + StatusPhaseSequence321 + + + + + StatusEnablingCircuitClosed + + + + + EventPrewarningOverload + + + + + EventUnbalance + + + + + EventOverload + + + + + EventOverloadAndPhaseFailure + + + + + EventInternalGroundFault + + + + + EventExternalGroundFault + + + + + EventExternalGroundFaultWarning + + + + + EventThermistorTripLevel + + + + + EventThermistorShortCircuit + + + + + EventThermistorOpenCircuit + + + + + EventTM1WarningLevelTGt + + + + + EventTM1TripLevelTGt + + + + + EventTM1SensorFault + + + + + EventTM1OutOfRange + + + + + EventWarningLevelIGt + + + + + EventWarningLevelILt + + + + + EventWarningLevelPGt + + + + + EventWarningLevelPLt + + + + + EventWarningLevelCosPhiLt + + + + + EventWarningLevelULt + + + + + EventAM1WarningLevel0420mAGt + + + + + EventAM1WarningLevel0420mALt + + + + + EventTripLevelIGt + + + + + EventTripLevelILt + + + + + EventTripLevelPGt + + + + + EventTripLevelPLt + + + + + EventTripLevelCosPhiLt + + + + + EventTripLevelULt + + + + + EventAM1TripLevel0420mAGt + + + + + EventAM1TripLevel0420mALt + + + + + EventStalledRotor + + + + + EventNoStartPermitted + + + + + EventNumberOfStartsGt + + + + + EventJustOneStartPossible + + + + + EventMotorOperatingHoursGt + + + + + EventStopTimeGt + + + + + EventLimitMonitor1 + + + + + EventLimitMonitor2 + + + + + EventLimitMonitor3 + + + + + EventLimitMonitor4 + + + + + EventExternalFault1 + + + + + EventExternalFault2 + + + + + EventExternalFault3 + + + + + EventExternalFault4 + + + + + EventExternalFault5 + + + + + EventExternalFault6 + + + + + EventAM2OpenCircuit + + + + + EventAM1OpenCircuit + + + + + EventSafetyrelatedTripping + + + + + EventMonitoringPeriodForMandatoryTestingTestRequirement + + + + + EventTimestampfctActiveAndOk + + + + + EventDMFLOCALOk + + + + + EventPROFIsafeActive + + + + + EventConfiguredOperatorPanelMissing + + + + + WarningFeedbackCircuit + + + + + WarningSimultaneity + + + + + FaultHardwareFaultBasicUnit + + + + + FaultModuleFault + + + + + FaultTemporaryComponents + + + + + FaultConfigurationError + + + + + FaultParameterization + + + + + FaultBus + + + + + FaultPLCPCS + + + + + FaultExecutionOnCommand + + + + + FaultExecutionSTOPCommand + + + + + FaultFeedbackOn + + + + + FaultFeedbackOff + + + + + FaultStalledPositioner + + + + + FaultDouble0 + + + + + FaultDouble1 + + + + + FaultEndPosition + + + + + FaultAntivalence + + + + + FaultTestPositionFeedback + + + + + FaultPowerFailure + + + + + FaultOperationalProtectionOff + + + + + SignalConditioning5Output + + + + + SignalConditioning6Output + + + + + TruthTable1Output + + + + + TruthTable2Output + + + + + TruthTable3Output + + + + + TruthTable4Output + + + + + TruthTable5Output + + + + + TruthTable6Output + + + + + TruthTable7Output + + + + + TruthTable8Output + + + + + TruthTable9Output1 + + + + + TruthTable9Output2 + + + + + TruthTable10Output + + + + + TruthTable11Output + + + + + Counter5Output + + + + + Counter6Output + + + + + Timer5Output + + + + + Timer6Output + + + + + Timer1Output + + + + + Timer2Output + + + + + Timer3Output + + + + + Timer4Output + + + + + Counter1Output + + + + + Counter2Output + + + + + Counter3Output + + + + + Counter4Output + + + + + SignalConditioning1Output + + + + + SignalConditioning2Output + + + + + SignalConditioning3Output + + + + + SignalConditioning4Output + + + + + NonvolatileElement1Output + + + + + NonvolatileElement2Output + + + + + NonvolatileElement3Output + + + + + NonvolatileElement4Output + + + + + Flashing1Output + + + + + Flashing2Output + + + + + Flashing3Output + + + + + Flicker1Output + + + + + Flicker2Output + + + + + Flicker3Output + + + + + PWMOutput + + + + + Possible values for property ControlFunctionForwardFast + + + + + NotConnected + + + + + FixedLevel0 + + + + + FixedLevel1 + + + + + EventAM2WarningLevel0420mAGt + + + + + EventAM2WarningLevel0420mALt + + + + + EventAM2TripLevel0420mAGt + + + + + EventAM2TripLevel0420mALt + + + + + BUTestResetButton + + + + + BUInput1 + + + + + BUInput2 + + + + + BUInput3 + + + + + BUInput4 + + + + + DM1Input1 + + + + + DM1Input2 + + + + + DM1Input3 + + + + + DM1Input4 + + + + + DM2Input1 + + + + + DM2Input2 + + + + + DM2Input3 + + + + + DM2Input4 + + + + + DM1SensorChannel1 + + + + + DM1SensorChannel2 + + + + + EventTM2SensorFault + + + + + EventTM2OutOfRange + + + + + EventTM2WarningLevelTGt + + + + + EventTM2TripLevelTGt + + + + + OPTestResetButton + + + + + OPButton1 + + + + + OPButton2 + + + + + OPButton3 + + + + + OPButton4 + + + + + EventLimitMonitor5 + + + + + EventLimitMonitor6 + + + + + AcyclicReceiveBit00 + + + + + AcyclicReceiveBit01 + + + + + AcyclicReceiveBit02 + + + + + AcyclicReceiveBit03 + + + + + AcyclicReceiveBit04 + + + + + AcyclicReceiveBit05 + + + + + AcyclicReceiveBit06 + + + + + AcyclicReceiveBit07 + + + + + AcyclicReceiveBit10 + + + + + AcyclicReceiveBit11 + + + + + AcyclicReceiveBit12 + + + + + AcyclicReceiveBit13 + + + + + AcyclicReceiveBit14 + + + + + AcyclicReceiveBit15 + + + + + AcyclicReceiveBit16 + + + + + AcyclicReceiveBit17 + + + + + CyclicReceiveBit00 + + + + + CyclicReceiveBit01 + + + + + CyclicReceiveBit02 + + + + + CyclicReceiveBit03 + + + + + CyclicReceiveBit04 + + + + + CyclicReceiveBit05 + + + + + CyclicReceiveBit06 + + + + + CyclicReceiveBit07 + + + + + CyclicReceiveBit10 + + + + + CyclicReceiveBit11 + + + + + CyclicReceiveBit12 + + + + + CyclicReceiveBit13 + + + + + CyclicReceiveBit14 + + + + + CyclicReceiveBit15 + + + + + CyclicReceiveBit16 + + + + + CyclicReceiveBit17 + + + + + EnabledControlCommandOnReverseFast + + + + + EnabledControlCommandOnReverse + + + + + EnabledControlCommandOff + + + + + EnabledControlCommandOnForward + + + + + EnabledControlCommandOnForwardFast + + + + + ContactorControl1QE1 + + + + + ContactorControl2QE2 + + + + + ContactorControl3QE3 + + + + + ContactorControl4QE4 + + + + + ContactorControl5QE5 + + + + + DisplayQLEReverseFast + + + + + DisplayQLEReverse + + + + + DisplayQLAOff + + + + + DisplayQLEForward + + + + + DisplayQLEForwardFast + + + + + DisplayQLSFault + + + + + StatusGroupFault + + + + + StatusGroupWarning + + + + + StatusDeviceOk + + + + + StatusBusOk + + + + + StatusPLCPCSInRun + + + + + StatusCurrentFlowing + + + + + StatusPROFIenergyCommandStartPausePending + + + + + StatusOnReverseFast + + + + + StatusOnReverse + + + + + StatusOff + + + + + StatusOnForward + + + + + StatusOnForwardFast + + + + + StatusStartActive + + + + + StatusInterlockingTimeActive + + + + + StatusChangeoverPauseActive + + + + + StatusPositionerRunsInOPENDirection + + + + + StatusPositionerRunsInCLOSEDDirection + + + + + StatusFeedbackCLOSED + + + + + StatusFeedbackOPEN + + + + + StatusTorqueCLOSED + + + + + StatusTorqueOPEN + + + + + StatusTestPosition + + + + + StatusOperationalProtectionOff + + + + + StatusRemoteMode + + + + + StatusEmergencyStartExecuted + + + + + StatusCoolingDownPeriodActive + + + + + StatusPauseTimeActive + + + + + StatusDeviceTestActive + + + + + StatusPhaseSequence123 + + + + + StatusPhaseSequence321 + + + + + StatusEnablingCircuitClosed + + + + + EventPrewarningOverload + + + + + EventUnbalance + + + + + EventOverload + + + + + EventOverloadAndPhaseFailure + + + + + EventInternalGroundFault + + + + + EventExternalGroundFault + + + + + EventExternalGroundFaultWarning + + + + + EventThermistorTripLevel + + + + + EventThermistorShortCircuit + + + + + EventThermistorOpenCircuit + + + + + EventTM1WarningLevelTGt + + + + + EventTM1TripLevelTGt + + + + + EventTM1SensorFault + + + + + EventTM1OutOfRange + + + + + EventWarningLevelIGt + + + + + EventWarningLevelILt + + + + + EventWarningLevelPGt + + + + + EventWarningLevelPLt + + + + + EventWarningLevelCosPhiLt + + + + + EventWarningLevelULt + + + + + EventAM1WarningLevel0420mAGt + + + + + EventAM1WarningLevel0420mALt + + + + + EventTripLevelIGt + + + + + EventTripLevelILt + + + + + EventTripLevelPGt + + + + + EventTripLevelPLt + + + + + EventTripLevelCosPhiLt + + + + + EventTripLevelULt + + + + + EventAM1TripLevel0420mAGt + + + + + EventAM1TripLevel0420mALt + + + + + EventStalledRotor + + + + + EventNoStartPermitted + + + + + EventNumberOfStartsGt + + + + + EventJustOneStartPossible + + + + + EventMotorOperatingHoursGt + + + + + EventStopTimeGt + + + + + EventLimitMonitor1 + + + + + EventLimitMonitor2 + + + + + EventLimitMonitor3 + + + + + EventLimitMonitor4 + + + + + EventExternalFault1 + + + + + EventExternalFault2 + + + + + EventExternalFault3 + + + + + EventExternalFault4 + + + + + EventExternalFault5 + + + + + EventExternalFault6 + + + + + EventAM2OpenCircuit + + + + + EventAM1OpenCircuit + + + + + EventSafetyrelatedTripping + + + + + EventMonitoringPeriodForMandatoryTestingTestRequirement + + + + + EventTimestampfctActiveAndOk + + + + + EventDMFLOCALOk + + + + + EventPROFIsafeActive + + + + + EventConfiguredOperatorPanelMissing + + + + + WarningFeedbackCircuit + + + + + WarningSimultaneity + + + + + FaultHardwareFaultBasicUnit + + + + + FaultModuleFault + + + + + FaultTemporaryComponents + + + + + FaultConfigurationError + + + + + FaultParameterization + + + + + FaultBus + + + + + FaultPLCPCS + + + + + FaultExecutionOnCommand + + + + + FaultExecutionSTOPCommand + + + + + FaultFeedbackOn + + + + + FaultFeedbackOff + + + + + FaultStalledPositioner + + + + + FaultDouble0 + + + + + FaultDouble1 + + + + + FaultEndPosition + + + + + FaultAntivalence + + + + + FaultTestPositionFeedback + + + + + FaultPowerFailure + + + + + FaultOperationalProtectionOff + + + + + SignalConditioning5Output + + + + + SignalConditioning6Output + + + + + TruthTable1Output + + + + + TruthTable2Output + + + + + TruthTable3Output + + + + + TruthTable4Output + + + + + TruthTable5Output + + + + + TruthTable6Output + + + + + TruthTable7Output + + + + + TruthTable8Output + + + + + TruthTable9Output1 + + + + + TruthTable9Output2 + + + + + TruthTable10Output + + + + + TruthTable11Output + + + + + Counter5Output + + + + + Counter6Output + + + + + Timer5Output + + + + + Timer6Output + + + + + Timer1Output + + + + + Timer2Output + + + + + Timer3Output + + + + + Timer4Output + + + + + Counter1Output + + + + + Counter2Output + + + + + Counter3Output + + + + + Counter4Output + + + + + SignalConditioning1Output + + + + + SignalConditioning2Output + + + + + SignalConditioning3Output + + + + + SignalConditioning4Output + + + + + NonvolatileElement1Output + + + + + NonvolatileElement2Output + + + + + NonvolatileElement3Output + + + + + NonvolatileElement4Output + + + + + Flashing1Output + + + + + Flashing2Output + + + + + Flashing3Output + + + + + Flicker1Output + + + + + Flicker2Output + + + + + Flicker3Output + + + + + PWMOutput + + + + + Possible values for property ControlFunctionOFF + + + + + NotConnected + + + + + FixedLevel0 + + + + + FixedLevel1 + + + + + EventAM2WarningLevel0420mAGt + + + + + EventAM2WarningLevel0420mALt + + + + + EventAM2TripLevel0420mAGt + + + + + EventAM2TripLevel0420mALt + + + + + BUTestResetButton + + + + + BUInput1 + + + + + BUInput2 + + + + + BUInput3 + + + + + BUInput4 + + + + + DM1Input1 + + + + + DM1Input2 + + + + + DM1Input3 + + + + + DM1Input4 + + + + + DM2Input1 + + + + + DM2Input2 + + + + + DM2Input3 + + + + + DM2Input4 + + + + + DM1SensorChannel1 + + + + + DM1SensorChannel2 + + + + + EventTM2SensorFault + + + + + EventTM2OutOfRange + + + + + EventTM2WarningLevelTGt + + + + + EventTM2TripLevelTGt + + + + + OPTestResetButton + + + + + OPButton1 + + + + + OPButton2 + + + + + OPButton3 + + + + + OPButton4 + + + + + EventLimitMonitor5 + + + + + EventLimitMonitor6 + + + + + AcyclicReceiveBit00 + + + + + AcyclicReceiveBit01 + + + + + AcyclicReceiveBit02 + + + + + AcyclicReceiveBit03 + + + + + AcyclicReceiveBit04 + + + + + AcyclicReceiveBit05 + + + + + AcyclicReceiveBit06 + + + + + AcyclicReceiveBit07 + + + + + AcyclicReceiveBit10 + + + + + AcyclicReceiveBit11 + + + + + AcyclicReceiveBit12 + + + + + AcyclicReceiveBit13 + + + + + AcyclicReceiveBit14 + + + + + AcyclicReceiveBit15 + + + + + AcyclicReceiveBit16 + + + + + AcyclicReceiveBit17 + + + + + CyclicReceiveBit00 + + + + + CyclicReceiveBit01 + + + + + CyclicReceiveBit02 + + + + + CyclicReceiveBit03 + + + + + CyclicReceiveBit04 + + + + + CyclicReceiveBit05 + + + + + CyclicReceiveBit06 + + + + + CyclicReceiveBit07 + + + + + CyclicReceiveBit10 + + + + + CyclicReceiveBit11 + + + + + CyclicReceiveBit12 + + + + + CyclicReceiveBit13 + + + + + CyclicReceiveBit14 + + + + + CyclicReceiveBit15 + + + + + CyclicReceiveBit16 + + + + + CyclicReceiveBit17 + + + + + EnabledControlCommandOnReverseFast + + + + + EnabledControlCommandOnReverse + + + + + EnabledControlCommandOff + + + + + EnabledControlCommandOnForward + + + + + EnabledControlCommandOnForwardFast + + + + + ContactorControl1QE1 + + + + + ContactorControl2QE2 + + + + + ContactorControl3QE3 + + + + + ContactorControl4QE4 + + + + + ContactorControl5QE5 + + + + + DisplayQLEReverseFast + + + + + DisplayQLEReverse + + + + + DisplayQLAOff + + + + + DisplayQLEForward + + + + + DisplayQLEForwardFast + + + + + DisplayQLSFault + + + + + StatusGroupFault + + + + + StatusGroupWarning + + + + + StatusDeviceOk + + + + + StatusBusOk + + + + + StatusPLCPCSInRun + + + + + StatusCurrentFlowing + + + + + StatusPROFIenergyCommandStartPausePending + + + + + StatusOnReverseFast + + + + + StatusOnReverse + + + + + StatusOff + + + + + StatusOnForward + + + + + StatusOnForwardFast + + + + + StatusStartActive + + + + + StatusInterlockingTimeActive + + + + + StatusChangeoverPauseActive + + + + + StatusPositionerRunsInOPENDirection + + + + + StatusPositionerRunsInCLOSEDDirection + + + + + StatusFeedbackCLOSED + + + + + StatusFeedbackOPEN + + + + + StatusTorqueCLOSED + + + + + StatusTorqueOPEN + + + + + StatusTestPosition + + + + + StatusOperationalProtectionOff + + + + + StatusRemoteMode + + + + + StatusEmergencyStartExecuted + + + + + StatusCoolingDownPeriodActive + + + + + StatusPauseTimeActive + + + + + StatusDeviceTestActive + + + + + StatusPhaseSequence123 + + + + + StatusPhaseSequence321 + + + + + StatusEnablingCircuitClosed + + + + + EventPrewarningOverload + + + + + EventUnbalance + + + + + EventOverload + + + + + EventOverloadAndPhaseFailure + + + + + EventInternalGroundFault + + + + + EventExternalGroundFault + + + + + EventExternalGroundFaultWarning + + + + + EventThermistorTripLevel + + + + + EventThermistorShortCircuit + + + + + EventThermistorOpenCircuit + + + + + EventTM1WarningLevelTGt + + + + + EventTM1TripLevelTGt + + + + + EventTM1SensorFault + + + + + EventTM1OutOfRange + + + + + EventWarningLevelIGt + + + + + EventWarningLevelILt + + + + + EventWarningLevelPGt + + + + + EventWarningLevelPLt + + + + + EventWarningLevelCosPhiLt + + + + + EventWarningLevelULt + + + + + EventAM1WarningLevel0420mAGt + + + + + EventAM1WarningLevel0420mALt + + + + + EventTripLevelIGt + + + + + EventTripLevelILt + + + + + EventTripLevelPGt + + + + + EventTripLevelPLt + + + + + EventTripLevelCosPhiLt + + + + + EventTripLevelULt + + + + + EventAM1TripLevel0420mAGt + + + + + EventAM1TripLevel0420mALt + + + + + EventStalledRotor + + + + + EventNoStartPermitted + + + + + EventNumberOfStartsGt + + + + + EventJustOneStartPossible + + + + + EventMotorOperatingHoursGt + + + + + EventStopTimeGt + + + + + EventLimitMonitor1 + + + + + EventLimitMonitor2 + + + + + EventLimitMonitor3 + + + + + EventLimitMonitor4 + + + + + EventExternalFault1 + + + + + EventExternalFault2 + + + + + EventExternalFault3 + + + + + EventExternalFault4 + + + + + EventExternalFault5 + + + + + EventExternalFault6 + + + + + EventAM2OpenCircuit + + + + + EventAM1OpenCircuit + + + + + EventSafetyrelatedTripping + + + + + EventMonitoringPeriodForMandatoryTestingTestRequirement + + + + + EventTimestampfctActiveAndOk + + + + + EventDMFLOCALOk + + + + + EventPROFIsafeActive + + + + + EventConfiguredOperatorPanelMissing + + + + + WarningFeedbackCircuit + + + + + WarningSimultaneity + + + + + FaultHardwareFaultBasicUnit + + + + + FaultModuleFault + + + + + FaultTemporaryComponents + + + + + FaultConfigurationError + + + + + FaultParameterization + + + + + FaultBus + + + + + FaultPLCPCS + + + + + FaultExecutionOnCommand + + + + + FaultExecutionSTOPCommand + + + + + FaultFeedbackOn + + + + + FaultFeedbackOff + + + + + FaultStalledPositioner + + + + + FaultDouble0 + + + + + FaultDouble1 + + + + + FaultEndPosition + + + + + FaultAntivalence + + + + + FaultTestPositionFeedback + + + + + FaultPowerFailure + + + + + FaultOperationalProtectionOff + + + + + SignalConditioning5Output + + + + + SignalConditioning6Output + + + + + TruthTable1Output + + + + + TruthTable2Output + + + + + TruthTable3Output + + + + + TruthTable4Output + + + + + TruthTable5Output + + + + + TruthTable6Output + + + + + TruthTable7Output + + + + + TruthTable8Output + + + + + TruthTable9Output1 + + + + + TruthTable9Output2 + + + + + TruthTable10Output + + + + + TruthTable11Output + + + + + Counter5Output + + + + + Counter6Output + + + + + Timer5Output + + + + + Timer6Output + + + + + Timer1Output + + + + + Timer2Output + + + + + Timer3Output + + + + + Timer4Output + + + + + Counter1Output + + + + + Counter2Output + + + + + Counter3Output + + + + + Counter4Output + + + + + SignalConditioning1Output + + + + + SignalConditioning2Output + + + + + SignalConditioning3Output + + + + + SignalConditioning4Output + + + + + NonvolatileElement1Output + + + + + NonvolatileElement2Output + + + + + NonvolatileElement3Output + + + + + NonvolatileElement4Output + + + + + Flashing1Output + + + + + Flashing2Output + + + + + Flashing3Output + + + + + Flicker1Output + + + + + Flicker2Output + + + + + Flicker3Output + + + + + PWMOutput + + + + + Possible values for property ControlFunctionReverse + + + + + NotConnected + + + + + FixedLevel0 + + + + + FixedLevel1 + + + + + EventAM2WarningLevel0420mAGt + + + + + EventAM2WarningLevel0420mALt + + + + + EventAM2TripLevel0420mAGt + + + + + EventAM2TripLevel0420mALt + + + + + BUTestResetButton + + + + + BUInput1 + + + + + BUInput2 + + + + + BUInput3 + + + + + BUInput4 + + + + + DM1Input1 + + + + + DM1Input2 + + + + + DM1Input3 + + + + + DM1Input4 + + + + + DM2Input1 + + + + + DM2Input2 + + + + + DM2Input3 + + + + + DM2Input4 + + + + + DM1SensorChannel1 + + + + + DM1SensorChannel2 + + + + + EventTM2SensorFault + + + + + EventTM2OutOfRange + + + + + EventTM2WarningLevelTGt + + + + + EventTM2TripLevelTGt + + + + + OPTestResetButton + + + + + OPButton1 + + + + + OPButton2 + + + + + OPButton3 + + + + + OPButton4 + + + + + EventLimitMonitor5 + + + + + EventLimitMonitor6 + + + + + AcyclicReceiveBit00 + + + + + AcyclicReceiveBit01 + + + + + AcyclicReceiveBit02 + + + + + AcyclicReceiveBit03 + + + + + AcyclicReceiveBit04 + + + + + AcyclicReceiveBit05 + + + + + AcyclicReceiveBit06 + + + + + AcyclicReceiveBit07 + + + + + AcyclicReceiveBit10 + + + + + AcyclicReceiveBit11 + + + + + AcyclicReceiveBit12 + + + + + AcyclicReceiveBit13 + + + + + AcyclicReceiveBit14 + + + + + AcyclicReceiveBit15 + + + + + AcyclicReceiveBit16 + + + + + AcyclicReceiveBit17 + + + + + CyclicReceiveBit00 + + + + + CyclicReceiveBit01 + + + + + CyclicReceiveBit02 + + + + + CyclicReceiveBit03 + + + + + CyclicReceiveBit04 + + + + + CyclicReceiveBit05 + + + + + CyclicReceiveBit06 + + + + + CyclicReceiveBit07 + + + + + CyclicReceiveBit10 + + + + + CyclicReceiveBit11 + + + + + CyclicReceiveBit12 + + + + + CyclicReceiveBit13 + + + + + CyclicReceiveBit14 + + + + + CyclicReceiveBit15 + + + + + CyclicReceiveBit16 + + + + + CyclicReceiveBit17 + + + + + EnabledControlCommandOnReverseFast + + + + + EnabledControlCommandOnReverse + + + + + EnabledControlCommandOff + + + + + EnabledControlCommandOnForward + + + + + EnabledControlCommandOnForwardFast + + + + + ContactorControl1QE1 + + + + + ContactorControl2QE2 + + + + + ContactorControl3QE3 + + + + + ContactorControl4QE4 + + + + + ContactorControl5QE5 + + + + + DisplayQLEReverseFast + + + + + DisplayQLEReverse + + + + + DisplayQLAOff + + + + + DisplayQLEForward + + + + + DisplayQLEForwardFast + + + + + DisplayQLSFault + + + + + StatusGroupFault + + + + + StatusGroupWarning + + + + + StatusDeviceOk + + + + + StatusBusOk + + + + + StatusPLCPCSInRun + + + + + StatusCurrentFlowing + + + + + StatusPROFIenergyCommandStartPausePending + + + + + StatusOnReverseFast + + + + + StatusOnReverse + + + + + StatusOff + + + + + StatusOnForward + + + + + StatusOnForwardFast + + + + + StatusStartActive + + + + + StatusInterlockingTimeActive + + + + + StatusChangeoverPauseActive + + + + + StatusPositionerRunsInOPENDirection + + + + + StatusPositionerRunsInCLOSEDDirection + + + + + StatusFeedbackCLOSED + + + + + StatusFeedbackOPEN + + + + + StatusTorqueCLOSED + + + + + StatusTorqueOPEN + + + + + StatusTestPosition + + + + + StatusOperationalProtectionOff + + + + + StatusRemoteMode + + + + + StatusEmergencyStartExecuted + + + + + StatusCoolingDownPeriodActive + + + + + StatusPauseTimeActive + + + + + StatusDeviceTestActive + + + + + StatusPhaseSequence123 + + + + + StatusPhaseSequence321 + + + + + StatusEnablingCircuitClosed + + + + + EventPrewarningOverload + + + + + EventUnbalance + + + + + EventOverload + + + + + EventOverloadAndPhaseFailure + + + + + EventInternalGroundFault + + + + + EventExternalGroundFault + + + + + EventExternalGroundFaultWarning + + + + + EventThermistorTripLevel + + + + + EventThermistorShortCircuit + + + + + EventThermistorOpenCircuit + + + + + EventTM1WarningLevelTGt + + + + + EventTM1TripLevelTGt + + + + + EventTM1SensorFault + + + + + EventTM1OutOfRange + + + + + EventWarningLevelIGt + + + + + EventWarningLevelILt + + + + + EventWarningLevelPGt + + + + + EventWarningLevelPLt + + + + + EventWarningLevelCosPhiLt + + + + + EventWarningLevelULt + + + + + EventAM1WarningLevel0420mAGt + + + + + EventAM1WarningLevel0420mALt + + + + + EventTripLevelIGt + + + + + EventTripLevelILt + + + + + EventTripLevelPGt + + + + + EventTripLevelPLt + + + + + EventTripLevelCosPhiLt + + + + + EventTripLevelULt + + + + + EventAM1TripLevel0420mAGt + + + + + EventAM1TripLevel0420mALt + + + + + EventStalledRotor + + + + + EventNoStartPermitted + + + + + EventNumberOfStartsGt + + + + + EventJustOneStartPossible + + + + + EventMotorOperatingHoursGt + + + + + EventStopTimeGt + + + + + EventLimitMonitor1 + + + + + EventLimitMonitor2 + + + + + EventLimitMonitor3 + + + + + EventLimitMonitor4 + + + + + EventExternalFault1 + + + + + EventExternalFault2 + + + + + EventExternalFault3 + + + + + EventExternalFault4 + + + + + EventExternalFault5 + + + + + EventExternalFault6 + + + + + EventAM2OpenCircuit + + + + + EventAM1OpenCircuit + + + + + EventSafetyrelatedTripping + + + + + EventMonitoringPeriodForMandatoryTestingTestRequirement + + + + + EventTimestampfctActiveAndOk + + + + + EventDMFLOCALOk + + + + + EventPROFIsafeActive + + + + + EventConfiguredOperatorPanelMissing + + + + + WarningFeedbackCircuit + + + + + WarningSimultaneity + + + + + FaultHardwareFaultBasicUnit + + + + + FaultModuleFault + + + + + FaultTemporaryComponents + + + + + FaultConfigurationError + + + + + FaultParameterization + + + + + FaultBus + + + + + FaultPLCPCS + + + + + FaultExecutionOnCommand + + + + + FaultExecutionSTOPCommand + + + + + FaultFeedbackOn + + + + + FaultFeedbackOff + + + + + FaultStalledPositioner + + + + + FaultDouble0 + + + + + FaultDouble1 + + + + + FaultEndPosition + + + + + FaultAntivalence + + + + + FaultTestPositionFeedback + + + + + FaultPowerFailure + + + + + FaultOperationalProtectionOff + + + + + SignalConditioning5Output + + + + + SignalConditioning6Output + + + + + TruthTable1Output + + + + + TruthTable2Output + + + + + TruthTable3Output + + + + + TruthTable4Output + + + + + TruthTable5Output + + + + + TruthTable6Output + + + + + TruthTable7Output + + + + + TruthTable8Output + + + + + TruthTable9Output1 + + + + + TruthTable9Output2 + + + + + TruthTable10Output + + + + + TruthTable11Output + + + + + Counter5Output + + + + + Counter6Output + + + + + Timer5Output + + + + + Timer6Output + + + + + Timer1Output + + + + + Timer2Output + + + + + Timer3Output + + + + + Timer4Output + + + + + Counter1Output + + + + + Counter2Output + + + + + Counter3Output + + + + + Counter4Output + + + + + SignalConditioning1Output + + + + + SignalConditioning2Output + + + + + SignalConditioning3Output + + + + + SignalConditioning4Output + + + + + NonvolatileElement1Output + + + + + NonvolatileElement2Output + + + + + NonvolatileElement3Output + + + + + NonvolatileElement4Output + + + + + Flashing1Output + + + + + Flashing2Output + + + + + Flashing3Output + + + + + Flicker1Output + + + + + Flicker2Output + + + + + Flicker3Output + + + + + PWMOutput + + + + + Possible values for property ControlFunctionReverseFast + + + + + NotConnected + + + + + FixedLevel0 + + + + + FixedLevel1 + + + + + EventAM2WarningLevel0420mAGt + + + + + EventAM2WarningLevel0420mALt + + + + + EventAM2TripLevel0420mAGt + + + + + EventAM2TripLevel0420mALt + + + + + BUTestResetButton + + + + + BUInput1 + + + + + BUInput2 + + + + + BUInput3 + + + + + BUInput4 + + + + + DM1Input1 + + + + + DM1Input2 + + + + + DM1Input3 + + + + + DM1Input4 + + + + + DM2Input1 + + + + + DM2Input2 + + + + + DM2Input3 + + + + + DM2Input4 + + + + + DM1SensorChannel1 + + + + + DM1SensorChannel2 + + + + + EventTM2SensorFault + + + + + EventTM2OutOfRange + + + + + EventTM2WarningLevelTGt + + + + + EventTM2TripLevelTGt + + + + + OPTestResetButton + + + + + OPButton1 + + + + + OPButton2 + + + + + OPButton3 + + + + + OPButton4 + + + + + EventLimitMonitor5 + + + + + EventLimitMonitor6 + + + + + AcyclicReceiveBit00 + + + + + AcyclicReceiveBit01 + + + + + AcyclicReceiveBit02 + + + + + AcyclicReceiveBit03 + + + + + AcyclicReceiveBit04 + + + + + AcyclicReceiveBit05 + + + + + AcyclicReceiveBit06 + + + + + AcyclicReceiveBit07 + + + + + AcyclicReceiveBit10 + + + + + AcyclicReceiveBit11 + + + + + AcyclicReceiveBit12 + + + + + AcyclicReceiveBit13 + + + + + AcyclicReceiveBit14 + + + + + AcyclicReceiveBit15 + + + + + AcyclicReceiveBit16 + + + + + AcyclicReceiveBit17 + + + + + CyclicReceiveBit00 + + + + + CyclicReceiveBit01 + + + + + CyclicReceiveBit02 + + + + + CyclicReceiveBit03 + + + + + CyclicReceiveBit04 + + + + + CyclicReceiveBit05 + + + + + CyclicReceiveBit06 + + + + + CyclicReceiveBit07 + + + + + CyclicReceiveBit10 + + + + + CyclicReceiveBit11 + + + + + CyclicReceiveBit12 + + + + + CyclicReceiveBit13 + + + + + CyclicReceiveBit14 + + + + + CyclicReceiveBit15 + + + + + CyclicReceiveBit16 + + + + + CyclicReceiveBit17 + + + + + EnabledControlCommandOnReverseFast + + + + + EnabledControlCommandOnReverse + + + + + EnabledControlCommandOff + + + + + EnabledControlCommandOnForward + + + + + EnabledControlCommandOnForwardFast + + + + + ContactorControl1QE1 + + + + + ContactorControl2QE2 + + + + + ContactorControl3QE3 + + + + + ContactorControl4QE4 + + + + + ContactorControl5QE5 + + + + + DisplayQLEReverseFast + + + + + DisplayQLEReverse + + + + + DisplayQLAOff + + + + + DisplayQLEForward + + + + + DisplayQLEForwardFast + + + + + DisplayQLSFault + + + + + StatusGroupFault + + + + + StatusGroupWarning + + + + + StatusDeviceOk + + + + + StatusBusOk + + + + + StatusPLCPCSInRun + + + + + StatusCurrentFlowing + + + + + StatusPROFIenergyCommandStartPausePending + + + + + StatusOnReverseFast + + + + + StatusOnReverse + + + + + StatusOff + + + + + StatusOnForward + + + + + StatusOnForwardFast + + + + + StatusStartActive + + + + + StatusInterlockingTimeActive + + + + + StatusChangeoverPauseActive + + + + + StatusPositionerRunsInOPENDirection + + + + + StatusPositionerRunsInCLOSEDDirection + + + + + StatusFeedbackCLOSED + + + + + StatusFeedbackOPEN + + + + + StatusTorqueCLOSED + + + + + StatusTorqueOPEN + + + + + StatusTestPosition + + + + + StatusOperationalProtectionOff + + + + + StatusRemoteMode + + + + + StatusEmergencyStartExecuted + + + + + StatusCoolingDownPeriodActive + + + + + StatusPauseTimeActive + + + + + StatusDeviceTestActive + + + + + StatusPhaseSequence123 + + + + + StatusPhaseSequence321 + + + + + StatusEnablingCircuitClosed + + + + + EventPrewarningOverload + + + + + EventUnbalance + + + + + EventOverload + + + + + EventOverloadAndPhaseFailure + + + + + EventInternalGroundFault + + + + + EventExternalGroundFault + + + + + EventExternalGroundFaultWarning + + + + + EventThermistorTripLevel + + + + + EventThermistorShortCircuit + + + + + EventThermistorOpenCircuit + + + + + EventTM1WarningLevelTGt + + + + + EventTM1TripLevelTGt + + + + + EventTM1SensorFault + + + + + EventTM1OutOfRange + + + + + EventWarningLevelIGt + + + + + EventWarningLevelILt + + + + + EventWarningLevelPGt + + + + + EventWarningLevelPLt + + + + + EventWarningLevelCosPhiLt + + + + + EventWarningLevelULt + + + + + EventAM1WarningLevel0420mAGt + + + + + EventAM1WarningLevel0420mALt + + + + + EventTripLevelIGt + + + + + EventTripLevelILt + + + + + EventTripLevelPGt + + + + + EventTripLevelPLt + + + + + EventTripLevelCosPhiLt + + + + + EventTripLevelULt + + + + + EventAM1TripLevel0420mAGt + + + + + EventAM1TripLevel0420mALt + + + + + EventStalledRotor + + + + + EventNoStartPermitted + + + + + EventNumberOfStartsGt + + + + + EventJustOneStartPossible + + + + + EventMotorOperatingHoursGt + + + + + EventStopTimeGt + + + + + EventLimitMonitor1 + + + + + EventLimitMonitor2 + + + + + EventLimitMonitor3 + + + + + EventLimitMonitor4 + + + + + EventExternalFault1 + + + + + EventExternalFault2 + + + + + EventExternalFault3 + + + + + EventExternalFault4 + + + + + EventExternalFault5 + + + + + EventExternalFault6 + + + + + EventAM2OpenCircuit + + + + + EventAM1OpenCircuit + + + + + EventSafetyrelatedTripping + + + + + EventMonitoringPeriodForMandatoryTestingTestRequirement + + + + + EventTimestampfctActiveAndOk + + + + + EventDMFLOCALOk + + + + + EventPROFIsafeActive + + + + + EventConfiguredOperatorPanelMissing + + + + + WarningFeedbackCircuit + + + + + WarningSimultaneity + + + + + FaultHardwareFaultBasicUnit + + + + + FaultModuleFault + + + + + FaultTemporaryComponents + + + + + FaultConfigurationError + + + + + FaultParameterization + + + + + FaultBus + + + + + FaultPLCPCS + + + + + FaultExecutionOnCommand + + + + + FaultExecutionSTOPCommand + + + + + FaultFeedbackOn + + + + + FaultFeedbackOff + + + + + FaultStalledPositioner + + + + + FaultDouble0 + + + + + FaultDouble1 + + + + + FaultEndPosition + + + + + FaultAntivalence + + + + + FaultTestPositionFeedback + + + + + FaultPowerFailure + + + + + FaultOperationalProtectionOff + + + + + SignalConditioning5Output + + + + + SignalConditioning6Output + + + + + TruthTable1Output + + + + + TruthTable2Output + + + + + TruthTable3Output + + + + + TruthTable4Output + + + + + TruthTable5Output + + + + + TruthTable6Output + + + + + TruthTable7Output + + + + + TruthTable8Output + + + + + TruthTable9Output1 + + + + + TruthTable9Output2 + + + + + TruthTable10Output + + + + + TruthTable11Output + + + + + Counter5Output + + + + + Counter6Output + + + + + Timer5Output + + + + + Timer6Output + + + + + Timer1Output + + + + + Timer2Output + + + + + Timer3Output + + + + + Timer4Output + + + + + Counter1Output + + + + + Counter2Output + + + + + Counter3Output + + + + + Counter4Output + + + + + SignalConditioning1Output + + + + + SignalConditioning2Output + + + + + SignalConditioning3Output + + + + + SignalConditioning4Output + + + + + NonvolatileElement1Output + + + + + NonvolatileElement2Output + + + + + NonvolatileElement3Output + + + + + NonvolatileElement4Output + + + + + Flashing1Output + + + + + Flashing2Output + + + + + Flashing3Output + + + + + Flicker1Output + + + + + Flicker2Output + + + + + Flicker3Output + + + + + PWMOutput + + + + + Possible values for property ControlFunctionTorqueCLOSEDTC + + + + + NotConnected + + + + + FixedLevel0 + + + + + FixedLevel1 + + + + + EventAM2WarningLevel0420mAGt + + + + + EventAM2WarningLevel0420mALt + + + + + EventAM2TripLevel0420mAGt + + + + + EventAM2TripLevel0420mALt + + + + + BUTestResetButton + + + + + BUInput1 + + + + + BUInput2 + + + + + BUInput3 + + + + + BUInput4 + + + + + DM1Input1 + + + + + DM1Input2 + + + + + DM1Input3 + + + + + DM1Input4 + + + + + DM2Input1 + + + + + DM2Input2 + + + + + DM2Input3 + + + + + DM2Input4 + + + + + DM1SensorChannel1 + + + + + DM1SensorChannel2 + + + + + EventTM2SensorFault + + + + + EventTM2OutOfRange + + + + + EventTM2WarningLevelTGt + + + + + EventTM2TripLevelTGt + + + + + OPTestResetButton + + + + + OPButton1 + + + + + OPButton2 + + + + + OPButton3 + + + + + OPButton4 + + + + + EventLimitMonitor5 + + + + + EventLimitMonitor6 + + + + + AcyclicReceiveBit00 + + + + + AcyclicReceiveBit01 + + + + + AcyclicReceiveBit02 + + + + + AcyclicReceiveBit03 + + + + + AcyclicReceiveBit04 + + + + + AcyclicReceiveBit05 + + + + + AcyclicReceiveBit06 + + + + + AcyclicReceiveBit07 + + + + + AcyclicReceiveBit10 + + + + + AcyclicReceiveBit11 + + + + + AcyclicReceiveBit12 + + + + + AcyclicReceiveBit13 + + + + + AcyclicReceiveBit14 + + + + + AcyclicReceiveBit15 + + + + + AcyclicReceiveBit16 + + + + + AcyclicReceiveBit17 + + + + + CyclicReceiveBit00 + + + + + CyclicReceiveBit01 + + + + + CyclicReceiveBit02 + + + + + CyclicReceiveBit03 + + + + + CyclicReceiveBit04 + + + + + CyclicReceiveBit05 + + + + + CyclicReceiveBit06 + + + + + CyclicReceiveBit07 + + + + + CyclicReceiveBit10 + + + + + CyclicReceiveBit11 + + + + + CyclicReceiveBit12 + + + + + CyclicReceiveBit13 + + + + + CyclicReceiveBit14 + + + + + CyclicReceiveBit15 + + + + + CyclicReceiveBit16 + + + + + CyclicReceiveBit17 + + + + + EnabledControlCommandOnReverseFast + + + + + EnabledControlCommandOnReverse + + + + + EnabledControlCommandOff + + + + + EnabledControlCommandOnForward + + + + + EnabledControlCommandOnForwardFast + + + + + ContactorControl1QE1 + + + + + ContactorControl2QE2 + + + + + ContactorControl3QE3 + + + + + ContactorControl4QE4 + + + + + ContactorControl5QE5 + + + + + DisplayQLEReverseFast + + + + + DisplayQLEReverse + + + + + DisplayQLAOff + + + + + DisplayQLEForward + + + + + DisplayQLEForwardFast + + + + + DisplayQLSFault + + + + + StatusGroupFault + + + + + StatusGroupWarning + + + + + StatusDeviceOk + + + + + StatusBusOk + + + + + StatusPLCPCSInRun + + + + + StatusCurrentFlowing + + + + + StatusPROFIenergyCommandStartPausePending + + + + + StatusOnReverseFast + + + + + StatusOnReverse + + + + + StatusOff + + + + + StatusOnForward + + + + + StatusOnForwardFast + + + + + StatusStartActive + + + + + StatusInterlockingTimeActive + + + + + StatusChangeoverPauseActive + + + + + StatusPositionerRunsInOPENDirection + + + + + StatusPositionerRunsInCLOSEDDirection + + + + + StatusFeedbackCLOSED + + + + + StatusFeedbackOPEN + + + + + StatusTorqueCLOSED + + + + + StatusTorqueOPEN + + + + + StatusTestPosition + + + + + StatusOperationalProtectionOff + + + + + StatusRemoteMode + + + + + StatusEmergencyStartExecuted + + + + + StatusCoolingDownPeriodActive + + + + + StatusPauseTimeActive + + + + + StatusDeviceTestActive + + + + + StatusPhaseSequence123 + + + + + StatusPhaseSequence321 + + + + + StatusEnablingCircuitClosed + + + + + EventPrewarningOverload + + + + + EventUnbalance + + + + + EventOverload + + + + + EventOverloadAndPhaseFailure + + + + + EventInternalGroundFault + + + + + EventExternalGroundFault + + + + + EventExternalGroundFaultWarning + + + + + EventThermistorTripLevel + + + + + EventThermistorShortCircuit + + + + + EventThermistorOpenCircuit + + + + + EventTM1WarningLevelTGt + + + + + EventTM1TripLevelTGt + + + + + EventTM1SensorFault + + + + + EventTM1OutOfRange + + + + + EventWarningLevelIGt + + + + + EventWarningLevelILt + + + + + EventWarningLevelPGt + + + + + EventWarningLevelPLt + + + + + EventWarningLevelCosPhiLt + + + + + EventWarningLevelULt + + + + + EventAM1WarningLevel0420mAGt + + + + + EventAM1WarningLevel0420mALt + + + + + EventTripLevelIGt + + + + + EventTripLevelILt + + + + + EventTripLevelPGt + + + + + EventTripLevelPLt + + + + + EventTripLevelCosPhiLt + + + + + EventTripLevelULt + + + + + EventAM1TripLevel0420mAGt + + + + + EventAM1TripLevel0420mALt + + + + + EventStalledRotor + + + + + EventNoStartPermitted + + + + + EventNumberOfStartsGt + + + + + EventJustOneStartPossible + + + + + EventMotorOperatingHoursGt + + + + + EventStopTimeGt + + + + + EventLimitMonitor1 + + + + + EventLimitMonitor2 + + + + + EventLimitMonitor3 + + + + + EventLimitMonitor4 + + + + + EventExternalFault1 + + + + + EventExternalFault2 + + + + + EventExternalFault3 + + + + + EventExternalFault4 + + + + + EventExternalFault5 + + + + + EventExternalFault6 + + + + + EventAM2OpenCircuit + + + + + EventAM1OpenCircuit + + + + + EventSafetyrelatedTripping + + + + + EventMonitoringPeriodForMandatoryTestingTestRequirement + + + + + EventTimestampfctActiveAndOk + + + + + EventDMFLOCALOk + + + + + EventPROFIsafeActive + + + + + EventConfiguredOperatorPanelMissing + + + + + WarningFeedbackCircuit + + + + + WarningSimultaneity + + + + + FaultHardwareFaultBasicUnit + + + + + FaultModuleFault + + + + + FaultTemporaryComponents + + + + + FaultConfigurationError + + + + + FaultParameterization + + + + + FaultBus + + + + + FaultPLCPCS + + + + + FaultExecutionOnCommand + + + + + FaultExecutionSTOPCommand + + + + + FaultFeedbackOn + + + + + FaultFeedbackOff + + + + + FaultStalledPositioner + + + + + FaultDouble0 + + + + + FaultDouble1 + + + + + FaultEndPosition + + + + + FaultAntivalence + + + + + FaultTestPositionFeedback + + + + + FaultPowerFailure + + + + + FaultOperationalProtectionOff + + + + + SignalConditioning5Output + + + + + SignalConditioning6Output + + + + + TruthTable1Output + + + + + TruthTable2Output + + + + + TruthTable3Output + + + + + TruthTable4Output + + + + + TruthTable5Output + + + + + TruthTable6Output + + + + + TruthTable7Output + + + + + TruthTable8Output + + + + + TruthTable9Output1 + + + + + TruthTable9Output2 + + + + + TruthTable10Output + + + + + TruthTable11Output + + + + + Counter5Output + + + + + Counter6Output + + + + + Timer5Output + + + + + Timer6Output + + + + + Timer1Output + + + + + Timer2Output + + + + + Timer3Output + + + + + Timer4Output + + + + + Counter1Output + + + + + Counter2Output + + + + + Counter3Output + + + + + Counter4Output + + + + + SignalConditioning1Output + + + + + SignalConditioning2Output + + + + + SignalConditioning3Output + + + + + SignalConditioning4Output + + + + + NonvolatileElement1Output + + + + + NonvolatileElement2Output + + + + + NonvolatileElement3Output + + + + + NonvolatileElement4Output + + + + + Flashing1Output + + + + + Flashing2Output + + + + + Flashing3Output + + + + + Flicker1Output + + + + + Flicker2Output + + + + + Flicker3Output + + + + + PWMOutput + + + + + Possible values for property ControlFunctionTorqueOPENTO + + + + + NotConnected + + + + + FixedLevel0 + + + + + FixedLevel1 + + + + + EventAM2WarningLevel0420mAGt + + + + + EventAM2WarningLevel0420mALt + + + + + EventAM2TripLevel0420mAGt + + + + + EventAM2TripLevel0420mALt + + + + + BUTestResetButton + + + + + BUInput1 + + + + + BUInput2 + + + + + BUInput3 + + + + + BUInput4 + + + + + DM1Input1 + + + + + DM1Input2 + + + + + DM1Input3 + + + + + DM1Input4 + + + + + DM2Input1 + + + + + DM2Input2 + + + + + DM2Input3 + + + + + DM2Input4 + + + + + DM1SensorChannel1 + + + + + DM1SensorChannel2 + + + + + EventTM2SensorFault + + + + + EventTM2OutOfRange + + + + + EventTM2WarningLevelTGt + + + + + EventTM2TripLevelTGt + + + + + OPTestResetButton + + + + + OPButton1 + + + + + OPButton2 + + + + + OPButton3 + + + + + OPButton4 + + + + + EventLimitMonitor5 + + + + + EventLimitMonitor6 + + + + + AcyclicReceiveBit00 + + + + + AcyclicReceiveBit01 + + + + + AcyclicReceiveBit02 + + + + + AcyclicReceiveBit03 + + + + + AcyclicReceiveBit04 + + + + + AcyclicReceiveBit05 + + + + + AcyclicReceiveBit06 + + + + + AcyclicReceiveBit07 + + + + + AcyclicReceiveBit10 + + + + + AcyclicReceiveBit11 + + + + + AcyclicReceiveBit12 + + + + + AcyclicReceiveBit13 + + + + + AcyclicReceiveBit14 + + + + + AcyclicReceiveBit15 + + + + + AcyclicReceiveBit16 + + + + + AcyclicReceiveBit17 + + + + + CyclicReceiveBit00 + + + + + CyclicReceiveBit01 + + + + + CyclicReceiveBit02 + + + + + CyclicReceiveBit03 + + + + + CyclicReceiveBit04 + + + + + CyclicReceiveBit05 + + + + + CyclicReceiveBit06 + + + + + CyclicReceiveBit07 + + + + + CyclicReceiveBit10 + + + + + CyclicReceiveBit11 + + + + + CyclicReceiveBit12 + + + + + CyclicReceiveBit13 + + + + + CyclicReceiveBit14 + + + + + CyclicReceiveBit15 + + + + + CyclicReceiveBit16 + + + + + CyclicReceiveBit17 + + + + + EnabledControlCommandOnReverseFast + + + + + EnabledControlCommandOnReverse + + + + + EnabledControlCommandOff + + + + + EnabledControlCommandOnForward + + + + + EnabledControlCommandOnForwardFast + + + + + ContactorControl1QE1 + + + + + ContactorControl2QE2 + + + + + ContactorControl3QE3 + + + + + ContactorControl4QE4 + + + + + ContactorControl5QE5 + + + + + DisplayQLEReverseFast + + + + + DisplayQLEReverse + + + + + DisplayQLAOff + + + + + DisplayQLEForward + + + + + DisplayQLEForwardFast + + + + + DisplayQLSFault + + + + + StatusGroupFault + + + + + StatusGroupWarning + + + + + StatusDeviceOk + + + + + StatusBusOk + + + + + StatusPLCPCSInRun + + + + + StatusCurrentFlowing + + + + + StatusPROFIenergyCommandStartPausePending + + + + + StatusOnReverseFast + + + + + StatusOnReverse + + + + + StatusOff + + + + + StatusOnForward + + + + + StatusOnForwardFast + + + + + StatusStartActive + + + + + StatusInterlockingTimeActive + + + + + StatusChangeoverPauseActive + + + + + StatusPositionerRunsInOPENDirection + + + + + StatusPositionerRunsInCLOSEDDirection + + + + + StatusFeedbackCLOSED + + + + + StatusFeedbackOPEN + + + + + StatusTorqueCLOSED + + + + + StatusTorqueOPEN + + + + + StatusTestPosition + + + + + StatusOperationalProtectionOff + + + + + StatusRemoteMode + + + + + StatusEmergencyStartExecuted + + + + + StatusCoolingDownPeriodActive + + + + + StatusPauseTimeActive + + + + + StatusDeviceTestActive + + + + + StatusPhaseSequence123 + + + + + StatusPhaseSequence321 + + + + + StatusEnablingCircuitClosed + + + + + EventPrewarningOverload + + + + + EventUnbalance + + + + + EventOverload + + + + + EventOverloadAndPhaseFailure + + + + + EventInternalGroundFault + + + + + EventExternalGroundFault + + + + + EventExternalGroundFaultWarning + + + + + EventThermistorTripLevel + + + + + EventThermistorShortCircuit + + + + + EventThermistorOpenCircuit + + + + + EventTM1WarningLevelTGt + + + + + EventTM1TripLevelTGt + + + + + EventTM1SensorFault + + + + + EventTM1OutOfRange + + + + + EventWarningLevelIGt + + + + + EventWarningLevelILt + + + + + EventWarningLevelPGt + + + + + EventWarningLevelPLt + + + + + EventWarningLevelCosPhiLt + + + + + EventWarningLevelULt + + + + + EventAM1WarningLevel0420mAGt + + + + + EventAM1WarningLevel0420mALt + + + + + EventTripLevelIGt + + + + + EventTripLevelILt + + + + + EventTripLevelPGt + + + + + EventTripLevelPLt + + + + + EventTripLevelCosPhiLt + + + + + EventTripLevelULt + + + + + EventAM1TripLevel0420mAGt + + + + + EventAM1TripLevel0420mALt + + + + + EventStalledRotor + + + + + EventNoStartPermitted + + + + + EventNumberOfStartsGt + + + + + EventJustOneStartPossible + + + + + EventMotorOperatingHoursGt + + + + + EventStopTimeGt + + + + + EventLimitMonitor1 + + + + + EventLimitMonitor2 + + + + + EventLimitMonitor3 + + + + + EventLimitMonitor4 + + + + + EventExternalFault1 + + + + + EventExternalFault2 + + + + + EventExternalFault3 + + + + + EventExternalFault4 + + + + + EventExternalFault5 + + + + + EventExternalFault6 + + + + + EventAM2OpenCircuit + + + + + EventAM1OpenCircuit + + + + + EventSafetyrelatedTripping + + + + + EventMonitoringPeriodForMandatoryTestingTestRequirement + + + + + EventTimestampfctActiveAndOk + + + + + EventDMFLOCALOk + + + + + EventPROFIsafeActive + + + + + EventConfiguredOperatorPanelMissing + + + + + WarningFeedbackCircuit + + + + + WarningSimultaneity + + + + + FaultHardwareFaultBasicUnit + + + + + FaultModuleFault + + + + + FaultTemporaryComponents + + + + + FaultConfigurationError + + + + + FaultParameterization + + + + + FaultBus + + + + + FaultPLCPCS + + + + + FaultExecutionOnCommand + + + + + FaultExecutionSTOPCommand + + + + + FaultFeedbackOn + + + + + FaultFeedbackOff + + + + + FaultStalledPositioner + + + + + FaultDouble0 + + + + + FaultDouble1 + + + + + FaultEndPosition + + + + + FaultAntivalence + + + + + FaultTestPositionFeedback + + + + + FaultPowerFailure + + + + + FaultOperationalProtectionOff + + + + + SignalConditioning5Output + + + + + SignalConditioning6Output + + + + + TruthTable1Output + + + + + TruthTable2Output + + + + + TruthTable3Output + + + + + TruthTable4Output + + + + + TruthTable5Output + + + + + TruthTable6Output + + + + + TruthTable7Output + + + + + TruthTable8Output + + + + + TruthTable9Output1 + + + + + TruthTable9Output2 + + + + + TruthTable10Output + + + + + TruthTable11Output + + + + + Counter5Output + + + + + Counter6Output + + + + + Timer5Output + + + + + Timer6Output + + + + + Timer1Output + + + + + Timer2Output + + + + + Timer3Output + + + + + Timer4Output + + + + + Counter1Output + + + + + Counter2Output + + + + + Counter3Output + + + + + Counter4Output + + + + + SignalConditioning1Output + + + + + SignalConditioning2Output + + + + + SignalConditioning3Output + + + + + SignalConditioning4Output + + + + + NonvolatileElement1Output + + + + + NonvolatileElement2Output + + + + + NonvolatileElement3Output + + + + + NonvolatileElement4Output + + + + + Flashing1Output + + + + + Flashing2Output + + + + + Flashing3Output + + + + + Flicker1Output + + + + + Flicker2Output + + + + + Flicker3Output + + + + + PWMOutput + + + + + Possible values for property ControlStationModeSelectorS1 + + + + + NotConnected + + + + + FixedLevel0 + + + + + FixedLevel1 + + + + + EventAM2WarningLevel0420mAGt + + + + + EventAM2WarningLevel0420mALt + + + + + EventAM2TripLevel0420mAGt + + + + + EventAM2TripLevel0420mALt + + + + + BUTestResetButton + + + + + BUInput1 + + + + + BUInput2 + + + + + BUInput3 + + + + + BUInput4 + + + + + DM1Input1 + + + + + DM1Input2 + + + + + DM1Input3 + + + + + DM1Input4 + + + + + DM2Input1 + + + + + DM2Input2 + + + + + DM2Input3 + + + + + DM2Input4 + + + + + DM1SensorChannel1 + + + + + DM1SensorChannel2 + + + + + EventTM2SensorFault + + + + + EventTM2OutOfRange + + + + + EventTM2WarningLevelTGt + + + + + EventTM2TripLevelTGt + + + + + OPTestResetButton + + + + + OPButton1 + + + + + OPButton2 + + + + + OPButton3 + + + + + OPButton4 + + + + + EventLimitMonitor5 + + + + + EventLimitMonitor6 + + + + + AcyclicReceiveBit00 + + + + + AcyclicReceiveBit01 + + + + + AcyclicReceiveBit02 + + + + + AcyclicReceiveBit03 + + + + + AcyclicReceiveBit04 + + + + + AcyclicReceiveBit05 + + + + + AcyclicReceiveBit06 + + + + + AcyclicReceiveBit07 + + + + + AcyclicReceiveBit10 + + + + + AcyclicReceiveBit11 + + + + + AcyclicReceiveBit12 + + + + + AcyclicReceiveBit13 + + + + + AcyclicReceiveBit14 + + + + + AcyclicReceiveBit15 + + + + + AcyclicReceiveBit16 + + + + + AcyclicReceiveBit17 + + + + + CyclicReceiveBit00 + + + + + CyclicReceiveBit01 + + + + + CyclicReceiveBit02 + + + + + CyclicReceiveBit03 + + + + + CyclicReceiveBit04 + + + + + CyclicReceiveBit05 + + + + + CyclicReceiveBit06 + + + + + CyclicReceiveBit07 + + + + + CyclicReceiveBit10 + + + + + CyclicReceiveBit11 + + + + + CyclicReceiveBit12 + + + + + CyclicReceiveBit13 + + + + + CyclicReceiveBit14 + + + + + CyclicReceiveBit15 + + + + + CyclicReceiveBit16 + + + + + CyclicReceiveBit17 + + + + + EnabledControlCommandOnReverseFast + + + + + EnabledControlCommandOnReverse + + + + + EnabledControlCommandOff + + + + + EnabledControlCommandOnForward + + + + + EnabledControlCommandOnForwardFast + + + + + ContactorControl1QE1 + + + + + ContactorControl2QE2 + + + + + ContactorControl3QE3 + + + + + ContactorControl4QE4 + + + + + ContactorControl5QE5 + + + + + DisplayQLEReverseFast + + + + + DisplayQLEReverse + + + + + DisplayQLAOff + + + + + DisplayQLEForward + + + + + DisplayQLEForwardFast + + + + + DisplayQLSFault + + + + + StatusGroupFault + + + + + StatusGroupWarning + + + + + StatusDeviceOk + + + + + StatusBusOk + + + + + StatusPLCPCSInRun + + + + + StatusCurrentFlowing + + + + + StatusPROFIenergyCommandStartPausePending + + + + + StatusOnReverseFast + + + + + StatusOnReverse + + + + + StatusOff + + + + + StatusOnForward + + + + + StatusOnForwardFast + + + + + StatusStartActive + + + + + StatusInterlockingTimeActive + + + + + StatusChangeoverPauseActive + + + + + StatusPositionerRunsInOPENDirection + + + + + StatusPositionerRunsInCLOSEDDirection + + + + + StatusFeedbackCLOSED + + + + + StatusFeedbackOPEN + + + + + StatusTorqueCLOSED + + + + + StatusTorqueOPEN + + + + + StatusTestPosition + + + + + StatusOperationalProtectionOff + + + + + StatusRemoteMode + + + + + StatusEmergencyStartExecuted + + + + + StatusCoolingDownPeriodActive + + + + + StatusPauseTimeActive + + + + + StatusDeviceTestActive + + + + + StatusPhaseSequence123 + + + + + StatusPhaseSequence321 + + + + + StatusEnablingCircuitClosed + + + + + EventPrewarningOverload + + + + + EventUnbalance + + + + + EventOverload + + + + + EventOverloadAndPhaseFailure + + + + + EventInternalGroundFault + + + + + EventExternalGroundFault + + + + + EventExternalGroundFaultWarning + + + + + EventThermistorTripLevel + + + + + EventThermistorShortCircuit + + + + + EventThermistorOpenCircuit + + + + + EventTM1WarningLevelTGt + + + + + EventTM1TripLevelTGt + + + + + EventTM1SensorFault + + + + + EventTM1OutOfRange + + + + + EventWarningLevelIGt + + + + + EventWarningLevelILt + + + + + EventWarningLevelPGt + + + + + EventWarningLevelPLt + + + + + EventWarningLevelCosPhiLt + + + + + EventWarningLevelULt + + + + + EventAM1WarningLevel0420mAGt + + + + + EventAM1WarningLevel0420mALt + + + + + EventTripLevelIGt + + + + + EventTripLevelILt + + + + + EventTripLevelPGt + + + + + EventTripLevelPLt + + + + + EventTripLevelCosPhiLt + + + + + EventTripLevelULt + + + + + EventAM1TripLevel0420mAGt + + + + + EventAM1TripLevel0420mALt + + + + + EventStalledRotor + + + + + EventNoStartPermitted + + + + + EventNumberOfStartsGt + + + + + EventJustOneStartPossible + + + + + EventMotorOperatingHoursGt + + + + + EventStopTimeGt + + + + + EventLimitMonitor1 + + + + + EventLimitMonitor2 + + + + + EventLimitMonitor3 + + + + + EventLimitMonitor4 + + + + + EventExternalFault1 + + + + + EventExternalFault2 + + + + + EventExternalFault3 + + + + + EventExternalFault4 + + + + + EventExternalFault5 + + + + + EventExternalFault6 + + + + + EventAM2OpenCircuit + + + + + EventAM1OpenCircuit + + + + + EventSafetyrelatedTripping + + + + + EventMonitoringPeriodForMandatoryTestingTestRequirement + + + + + EventTimestampfctActiveAndOk + + + + + EventDMFLOCALOk + + + + + EventPROFIsafeActive + + + + + EventConfiguredOperatorPanelMissing + + + + + WarningFeedbackCircuit + + + + + WarningSimultaneity + + + + + FaultHardwareFaultBasicUnit + + + + + FaultModuleFault + + + + + FaultTemporaryComponents + + + + + FaultConfigurationError + + + + + FaultParameterization + + + + + FaultBus + + + + + FaultPLCPCS + + + + + FaultExecutionOnCommand + + + + + FaultExecutionSTOPCommand + + + + + FaultFeedbackOn + + + + + FaultFeedbackOff + + + + + FaultStalledPositioner + + + + + FaultDouble0 + + + + + FaultDouble1 + + + + + FaultEndPosition + + + + + FaultAntivalence + + + + + FaultTestPositionFeedback + + + + + FaultPowerFailure + + + + + FaultOperationalProtectionOff + + + + + SignalConditioning5Output + + + + + SignalConditioning6Output + + + + + TruthTable1Output + + + + + TruthTable2Output + + + + + TruthTable3Output + + + + + TruthTable4Output + + + + + TruthTable5Output + + + + + TruthTable6Output + + + + + TruthTable7Output + + + + + TruthTable8Output + + + + + TruthTable9Output1 + + + + + TruthTable9Output2 + + + + + TruthTable10Output + + + + + TruthTable11Output + + + + + Counter5Output + + + + + Counter6Output + + + + + Timer5Output + + + + + Timer6Output + + + + + Timer1Output + + + + + Timer2Output + + + + + Timer3Output + + + + + Timer4Output + + + + + Counter1Output + + + + + Counter2Output + + + + + Counter3Output + + + + + Counter4Output + + + + + SignalConditioning1Output + + + + + SignalConditioning2Output + + + + + SignalConditioning3Output + + + + + SignalConditioning4Output + + + + + NonvolatileElement1Output + + + + + NonvolatileElement2Output + + + + + NonvolatileElement3Output + + + + + NonvolatileElement4Output + + + + + Flashing1Output + + + + + Flashing2Output + + + + + Flashing3Output + + + + + Flicker1Output + + + + + Flicker2Output + + + + + Flicker3Output + + + + + PWMOutput + + + + + Possible values for property ControlStationModeSelectorS2 + + + + + NotConnected + + + + + FixedLevel0 + + + + + FixedLevel1 + + + + + EventAM2WarningLevel0420mAGt + + + + + EventAM2WarningLevel0420mALt + + + + + EventAM2TripLevel0420mAGt + + + + + EventAM2TripLevel0420mALt + + + + + BUTestResetButton + + + + + BUInput1 + + + + + BUInput2 + + + + + BUInput3 + + + + + BUInput4 + + + + + DM1Input1 + + + + + DM1Input2 + + + + + DM1Input3 + + + + + DM1Input4 + + + + + DM2Input1 + + + + + DM2Input2 + + + + + DM2Input3 + + + + + DM2Input4 + + + + + DM1SensorChannel1 + + + + + DM1SensorChannel2 + + + + + EventTM2SensorFault + + + + + EventTM2OutOfRange + + + + + EventTM2WarningLevelTGt + + + + + EventTM2TripLevelTGt + + + + + OPTestResetButton + + + + + OPButton1 + + + + + OPButton2 + + + + + OPButton3 + + + + + OPButton4 + + + + + EventLimitMonitor5 + + + + + EventLimitMonitor6 + + + + + AcyclicReceiveBit00 + + + + + AcyclicReceiveBit01 + + + + + AcyclicReceiveBit02 + + + + + AcyclicReceiveBit03 + + + + + AcyclicReceiveBit04 + + + + + AcyclicReceiveBit05 + + + + + AcyclicReceiveBit06 + + + + + AcyclicReceiveBit07 + + + + + AcyclicReceiveBit10 + + + + + AcyclicReceiveBit11 + + + + + AcyclicReceiveBit12 + + + + + AcyclicReceiveBit13 + + + + + AcyclicReceiveBit14 + + + + + AcyclicReceiveBit15 + + + + + AcyclicReceiveBit16 + + + + + AcyclicReceiveBit17 + + + + + CyclicReceiveBit00 + + + + + CyclicReceiveBit01 + + + + + CyclicReceiveBit02 + + + + + CyclicReceiveBit03 + + + + + CyclicReceiveBit04 + + + + + CyclicReceiveBit05 + + + + + CyclicReceiveBit06 + + + + + CyclicReceiveBit07 + + + + + CyclicReceiveBit10 + + + + + CyclicReceiveBit11 + + + + + CyclicReceiveBit12 + + + + + CyclicReceiveBit13 + + + + + CyclicReceiveBit14 + + + + + CyclicReceiveBit15 + + + + + CyclicReceiveBit16 + + + + + CyclicReceiveBit17 + + + + + EnabledControlCommandOnReverseFast + + + + + EnabledControlCommandOnReverse + + + + + EnabledControlCommandOff + + + + + EnabledControlCommandOnForward + + + + + EnabledControlCommandOnForwardFast + + + + + ContactorControl1QE1 + + + + + ContactorControl2QE2 + + + + + ContactorControl3QE3 + + + + + ContactorControl4QE4 + + + + + ContactorControl5QE5 + + + + + DisplayQLEReverseFast + + + + + DisplayQLEReverse + + + + + DisplayQLAOff + + + + + DisplayQLEForward + + + + + DisplayQLEForwardFast + + + + + DisplayQLSFault + + + + + StatusGroupFault + + + + + StatusGroupWarning + + + + + StatusDeviceOk + + + + + StatusBusOk + + + + + StatusPLCPCSInRun + + + + + StatusCurrentFlowing + + + + + StatusPROFIenergyCommandStartPausePending + + + + + StatusOnReverseFast + + + + + StatusOnReverse + + + + + StatusOff + + + + + StatusOnForward + + + + + StatusOnForwardFast + + + + + StatusStartActive + + + + + StatusInterlockingTimeActive + + + + + StatusChangeoverPauseActive + + + + + StatusPositionerRunsInOPENDirection + + + + + StatusPositionerRunsInCLOSEDDirection + + + + + StatusFeedbackCLOSED + + + + + StatusFeedbackOPEN + + + + + StatusTorqueCLOSED + + + + + StatusTorqueOPEN + + + + + StatusTestPosition + + + + + StatusOperationalProtectionOff + + + + + StatusRemoteMode + + + + + StatusEmergencyStartExecuted + + + + + StatusCoolingDownPeriodActive + + + + + StatusPauseTimeActive + + + + + StatusDeviceTestActive + + + + + StatusPhaseSequence123 + + + + + StatusPhaseSequence321 + + + + + StatusEnablingCircuitClosed + + + + + EventPrewarningOverload + + + + + EventUnbalance + + + + + EventOverload + + + + + EventOverloadAndPhaseFailure + + + + + EventInternalGroundFault + + + + + EventExternalGroundFault + + + + + EventExternalGroundFaultWarning + + + + + EventThermistorTripLevel + + + + + EventThermistorShortCircuit + + + + + EventThermistorOpenCircuit + + + + + EventTM1WarningLevelTGt + + + + + EventTM1TripLevelTGt + + + + + EventTM1SensorFault + + + + + EventTM1OutOfRange + + + + + EventWarningLevelIGt + + + + + EventWarningLevelILt + + + + + EventWarningLevelPGt + + + + + EventWarningLevelPLt + + + + + EventWarningLevelCosPhiLt + + + + + EventWarningLevelULt + + + + + EventAM1WarningLevel0420mAGt + + + + + EventAM1WarningLevel0420mALt + + + + + EventTripLevelIGt + + + + + EventTripLevelILt + + + + + EventTripLevelPGt + + + + + EventTripLevelPLt + + + + + EventTripLevelCosPhiLt + + + + + EventTripLevelULt + + + + + EventAM1TripLevel0420mAGt + + + + + EventAM1TripLevel0420mALt + + + + + EventStalledRotor + + + + + EventNoStartPermitted + + + + + EventNumberOfStartsGt + + + + + EventJustOneStartPossible + + + + + EventMotorOperatingHoursGt + + + + + EventStopTimeGt + + + + + EventLimitMonitor1 + + + + + EventLimitMonitor2 + + + + + EventLimitMonitor3 + + + + + EventLimitMonitor4 + + + + + EventExternalFault1 + + + + + EventExternalFault2 + + + + + EventExternalFault3 + + + + + EventExternalFault4 + + + + + EventExternalFault5 + + + + + EventExternalFault6 + + + + + EventAM2OpenCircuit + + + + + EventAM1OpenCircuit + + + + + EventSafetyrelatedTripping + + + + + EventMonitoringPeriodForMandatoryTestingTestRequirement + + + + + EventTimestampfctActiveAndOk + + + + + EventDMFLOCALOk + + + + + EventPROFIsafeActive + + + + + EventConfiguredOperatorPanelMissing + + + + + WarningFeedbackCircuit + + + + + WarningSimultaneity + + + + + FaultHardwareFaultBasicUnit + + + + + FaultModuleFault + + + + + FaultTemporaryComponents + + + + + FaultConfigurationError + + + + + FaultParameterization + + + + + FaultBus + + + + + FaultPLCPCS + + + + + FaultExecutionOnCommand + + + + + FaultExecutionSTOPCommand + + + + + FaultFeedbackOn + + + + + FaultFeedbackOff + + + + + FaultStalledPositioner + + + + + FaultDouble0 + + + + + FaultDouble1 + + + + + FaultEndPosition + + + + + FaultAntivalence + + + + + FaultTestPositionFeedback + + + + + FaultPowerFailure + + + + + FaultOperationalProtectionOff + + + + + SignalConditioning5Output + + + + + SignalConditioning6Output + + + + + TruthTable1Output + + + + + TruthTable2Output + + + + + TruthTable3Output + + + + + TruthTable4Output + + + + + TruthTable5Output + + + + + TruthTable6Output + + + + + TruthTable7Output + + + + + TruthTable8Output + + + + + TruthTable9Output1 + + + + + TruthTable9Output2 + + + + + TruthTable10Output + + + + + TruthTable11Output + + + + + Counter5Output + + + + + Counter6Output + + + + + Timer5Output + + + + + Timer6Output + + + + + Timer1Output + + + + + Timer2Output + + + + + Timer3Output + + + + + Timer4Output + + + + + Counter1Output + + + + + Counter2Output + + + + + Counter3Output + + + + + Counter4Output + + + + + SignalConditioning1Output + + + + + SignalConditioning2Output + + + + + SignalConditioning3Output + + + + + SignalConditioning4Output + + + + + NonvolatileElement1Output + + + + + NonvolatileElement2Output + + + + + NonvolatileElement3Output + + + + + NonvolatileElement4Output + + + + + Flashing1Output + + + + + Flashing2Output + + + + + Flashing3Output + + + + + Flicker1Output + + + + + Flicker2Output + + + + + Flicker3Output + + + + + PWMOutput + + + + + Possible values for property CosPhiLowerTripLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Trip + + + + + Possible values for property CosPhiLowerWarningLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property CountDirection + + + + + Normal + + + + + Inverted + + + + + Backward + + + + + Forward + + + + + Possible values for property CountDirectionDQ0 + + + + + None + + + + + Up + + + + + Down + + + + + InBothDirections + + + + + Possible values for property CountDirectionDQ1 + + + + + None + + + + + Up + + + + + Down + + + + + InBothDirections + + + + + Possible values for property CountDirectionForSynchronization + + + + + None + + + + + Up + + + + + Down + + + + + InBothDirections + + + + + Possible values for property CounterConfiguration + + + + + None + + + + + Value2Counters + + + + + Value4Counters + + + + + Possible values for property CounterMode + + + + + PeriodicCountFunction + + + + + NormalCountFunction + + + + + CascadingFunction + + + + + OnceCountFunction + + + + + ContinuouslyCountFunction + + + + + Possible values for property CurrentDelayTime + + + + + Value1 + + + + + Value2 + + + + + Value4 + + + + + Value6 + + + + + Value8 + + + + + Value10 + + + + + Value12 + + + + + Value14 + + + + + Value16 + + + + + Value20 + + + + + Value40 + + + + + Value60 + + + + + Value100 + + + + + Value200 + + + + + Value500 + + + + + Value1000 + + + + + Possible values for property CurrentLimitsLowerTripLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Trip + + + + + Possible values for property CurrentLimitsLowerWarningLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property CurrentLimitsUpperTripLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Trip + + + + + Possible values for property CurrentLimitsUpperWarningLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property CurrentMeasurement + + + + + Deactivated + + + + + NeutralCurrentMeasurement + + + + + NeutralCurrentCalculation + + + + + Possible values for property CurrentTransformerForL1L2L3AndNeutralConductor + + + + + CurrentToVoltageConverter + + + + + RogowskiCoil + + + + + Possible values for property CurrentTransformerSecondaryCurrent + + + + + Value1A + + + + + Value5A + + + + + Possible values for property CyclicSendDataFloatValuesByte10to13 + + + + + NotConnected + + + + + MaxCurrentI + + + + + AverageCurrentI + + + + + CurrentIL1 + + + + + CurrentIL2 + + + + + CurrentIL3 + + + + + ActivePowerP + + + + + ApparentPowerS + + + + + LineToLineVoltageUl1L2 + + + + + LineToLineVoltageUl2L3 + + + + + LineToLineVoltageUl3L1 + + + + + CosPhi + + + + + FrequencyHz + + + + + PhaseVoltageUl1N + + + + + PhaseVoltageUl2N + + + + + PhaseVoltageUl3N + + + + + ActivePowerPaSigned + + + + + ActivePowerPbSignedInverted + + + + + Possible values for property CyclicSendDataFloatValuesByte14to17 + + + + + NotConnected + + + + + MaxCurrentI + + + + + AverageCurrentI + + + + + CurrentIL1 + + + + + CurrentIL2 + + + + + CurrentIL3 + + + + + ActivePowerP + + + + + ApparentPowerS + + + + + LineToLineVoltageUl1L2 + + + + + LineToLineVoltageUl2L3 + + + + + LineToLineVoltageUl3L1 + + + + + CosPhi + + + + + FrequencyHz + + + + + PhaseVoltageUl1N + + + + + PhaseVoltageUl2N + + + + + PhaseVoltageUl3N + + + + + ActivePowerPaSigned + + + + + ActivePowerPbSignedInverted + + + + + Possible values for property CyclicSendDataFloatValuesByte2to5 + + + + + NotConnected + + + + + MaxCurrentI + + + + + AverageCurrentI + + + + + CurrentIL1 + + + + + CurrentIL2 + + + + + CurrentIL3 + + + + + ActivePowerP + + + + + ApparentPowerS + + + + + LineToLineVoltageUl1L2 + + + + + LineToLineVoltageUl2L3 + + + + + LineToLineVoltageUl3L1 + + + + + CosPhi + + + + + FrequencyHz + + + + + PhaseVoltageUl1N + + + + + PhaseVoltageUl2N + + + + + PhaseVoltageUl3N + + + + + ActivePowerPaSigned + + + + + ActivePowerPbSignedInverted + + + + + Possible values for property CyclicSendDataFloatValuesByte6to9 + + + + + NotConnected + + + + + MaxCurrentI + + + + + AverageCurrentI + + + + + CurrentIL1 + + + + + CurrentIL2 + + + + + CurrentIL3 + + + + + ActivePowerP + + + + + ApparentPowerS + + + + + LineToLineVoltageUl1L2 + + + + + LineToLineVoltageUl2L3 + + + + + LineToLineVoltageUl3L1 + + + + + CosPhi + + + + + FrequencyHz + + + + + PhaseVoltageUl1N + + + + + PhaseVoltageUl2N + + + + + PhaseVoltageUl3N + + + + + ActivePowerPaSigned + + + + + ActivePowerPbSignedInverted + + + + + Possible values for property DIMode + + + + + Deactivate + + + + + StartDosingOnRisingLevel + + + + + StopDosingOnRisingLevel + + + + + ResetCounter1OnRisingLevel + + + + + ResetCounter2OnRisingLevel + + + + + ResetCounter3OnRisingLevel + + + + + ResetAllCounterOnRisingLevel + + + + + SetZeroPointOnRisingLevel + + + + + StopOrContinueDosing + + + + + ForceOutputs + + + + + FreezeProcessValues + + + + + StopOrContinueCounter1 + + + + + StopOrContinueCounter2 + + + + + StopOrContinueCounter3 + + + + + NoControlFromStartParameters + + + + + Possible values for property DMInputsDebouncingTimes + + + + + Value6 + + + + + Value16 + + + + + Value26 + + + + + Value36 + + + + + Possible values for property DPMasterMode + + + + + LessthanBetriebsartFestlegenGeaterthan + + + + + CanTransparent + + + + + CanopenManager + + + + + CanopenSlave + + + + + Possible values for property DQMode + + + + + Deactivate + + + + + StateSignal + + + + + FlowDirection + + + + + Possible values for property DataBits + + + + + None + + + + + Value7 + + + + + Value8 + + + + + Possible values for property DataFlowControl + + + + + None + + + + + XonOrXoff + + + + + RtsOrCts + + + + + AutomaticUseOfV24Signals + + + + + HardwareRtsAlwaysSwitched + + + + + HardwareRtsAlwaysOnIgnoreDtrDsr + + + + + HardwareRtsAlwaysOn + + + + + Possible values for property DataFormat + + + + + S7 + + + + + Possible values for property DelayTimeForLimitMonitoring + + + + + None + + + + + Value1S + + + + + Value2S + + + + + Value3S + + + + + Value4S + + + + + Value5S + + + + + Value6S + + + + + Value7S + + + + + Value8S + + + + + Value9S + + + + + Value10S + + + + + Possible values for property DensityUnit + + + + + Default + + + + + GramPerCubicCentimeter + + + + + GramPerMilliliter + + + + + GramPerLiter + + + + + GramPerCubicMeter + + + + + KilogramPerCubicDecimeter + + + + + KilogramPerLiter + + + + + KilogramPerCubicMeter + + + + + PoundsPerCubicFoot + + + + + PoundsPerGallons + + + + + PoundsPerImperialGallons + + + + + PoundsPerCubicInch + + + + + MilligramPerCubicDecimeter + + + + + MilligramPerLiter + + + + + MilligramPerCubicMeter + + + + + TonPerCubicYard + + + + + MetricTonPerCubicMeter + + + + + MicrogramPerLiter + + + + + MegagramPerCubicMeter + + + + + Device as an container for DeviceItems + + + + + The base for hardware modules like devices or device items + + + + + Access to the device/device item in a HW compare scenario + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines if plug can be copied + + Device for which the Plug will be moved + The position number where to create the plug + System.Boolean + + + + Determines if plug can be moved + + Device for which the Plug will be moved + The position number where to create the plug + System.Boolean + + + + Determines if plug can be created + + The type identifier to use to create the plug + The name of the plug to create + The position number where to create the plug + System.Boolean + + + + Compare the hardware object vs the given target + + The target to compare to the hardware object + Siemens.Engineering.Compare.CompareResult + + + + Determine some information about free slots. + + System.Collections.Generic.IList<Siemens.Engineering.HW.Extensions.PlugLocation> + + + + Copies a plug to a given device + + Device for which the Plug will be moved + The position number where to create the plug + Siemens.Engineering.HW.DeviceItem + + + + Moves a plug to a given device + + Device for which the Plug will be moved + The position number where to create the plug + Siemens.Engineering.HW.DeviceItem + + + + Creates and plugs a device item in a given hardware object. + + The type identifier of the device item to create. + The name of the device item to create. + The position number where to plug the created device item + Siemens.Engineering.HW.DeviceItem + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of device items + + + + + + Composition of HW identifiers + + + + + + EOM parent of this object + + + + + + Associated device items for this device + + + + + + The name of the device + + + + + + The type identifier of this device + + + + + + A source item used to create a master copy + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Show the indicated item in the HW editor + + Which view of the HW editor to show + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Indicates if this device is a Gsd device + + + + + + Associate unplugged items + + + + + + Composition of Devices + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create device from MasterCopy + + The source master copy + Siemens.Engineering.HW.Device + + + + Create a device with subcomponents + + Type identifier of the device to be created with sub items + Name of the device to be created with sub items + The name of the device to create with subcomponents + Siemens.Engineering.HW.Device + + + + + Creates a Device + + Type identifier of the device to be created + Name of device to be created + Siemens.Engineering.HW.Device + + + + Finds a given device + + Name to find + Siemens.Engineering.HW.Device + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Group containing devices + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of devices + + + + + + EOM parent of this object + + + + + + The name of the device group + + + + + + Hardware device + + + + + DeviceItem object as representation of a hardware module + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Change the type of the device item + + The identifier of the new type + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of addresses + + + + + + Composition of channels + + + + + + The classifications a device item can belong to; Flags-enum + + + + + + This is the object where other DeviceItems are placed + + + + + + Indicates if the device item is built into the device + + + + + + Indicates if this device item is plugged into a device + + + + + + Position number of this device item + + + + + + Associated device items + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The classifications a device item can belong to; Flags-enum. + + + + + No classification. + + + + + The device item is a CPU. + + + + + The device item is a head module. + + + + + The device item is a Compact module. + + + + + The device item is a IoLink module. + + + + + Composition of DeviceItems + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create device item from MasterCopy + + The source MasterCopy + Siemens.Engineering.HW.DeviceItem + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Hardware device item + + + + + Represents a device system group (e.g. ungrouped devices group) + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Group containing the devices + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of device user groups + + + + + + EOM parent of this object + + + + + + The name of the device user group + + + + + + Composition of DeviceUserGroups + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create device user group from MasterCopy + + The source MasterCopy + Siemens.Engineering.HW.DeviceUserGroup + + + + Creates a device user group + + Name of group to be created + Siemens.Engineering.HW.DeviceUserGroup + + + + Finds a given device user group + + Name to find + Siemens.Engineering.HW.DeviceUserGroup + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + DHCP Supported Modes + + + + + DHCP Client Id is set via Mac Address + + + + + DHCP Client Id is set in project + + + + + Possible values for property Diag_HighErrorLimit + + + + + Deactivated + + + + + Activated + + + + + Possible values for property Diag_HighWarningLimit + + + + + Deactivated + + + + + Activated + + + + + Possible values for property Diag_LowErrorLimit + + + + + Deactivated + + + + + Activated + + + + + Possible values for property Diag_LowWarningLimit + + + + + Deactivated + + + + + Activated + + + + + Possible values for property DiagnosticParameterMode + + + + + DefineDifferentSettingForTheSidesOfTheCoupler + + + + + ApplySettingsForBothSidesOfTheCoupler + + + + + Possible values for property DiagnosticsCPlug + + + + + Unmonitored + + + + + Monitored + + + + + Possible values for property DiagnosticsCycleCounter + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsCycleCounterPilotValves + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsGroup + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsInterrupt + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsNoSupplyVoltage + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsOverflow + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsPort1 + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsPort2 + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsPort3 + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsPort4 + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsRedundantPowerSupply + + + + + NoRedundantPowerSupply + + + + + RedundantPowerSupply + + + + + RedundantPowerSupplyRequired + + + + + Possible values for property DiagnosticsShortCircuitActive + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsShortCircuitToGround + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsShortCircuitToLplus + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsUnderflow + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsWireBreak + + + + + Deactivated + + + + + Active + + + + + Possible values for property DiagnosticsWireBreakLimit + + + + + None + + + + + Value1Dot185mA + + + + + Value3Dot6mA + + + + + Possible values for property DigitalInputDirection + + + + + Normal + + + + + Inverted + + + + + Possible values for property DisableUdpFrameBufferingActive + + + + + Deactivate + + + + + Activate + + + + + Possible values for property DisplayAsiModuleDiagnostics + + + + + DisplayAsiModuleDiagnosticsOnAsiModule + + + + + DisplayAsiModuleDiagnosticsOnAsiMaster + + + + + Possible values for property DisplayAutoLogOffTime + + + + + Disabled + + + + + Value1Minute + + + + + Value2Minutes + + + + + Value5Minutes + + + + + Value10Minutes + + + + + Value15Minutes + + + + + Value30Minutes + + + + + Value1Hour + + + + + Possible values for property DisplayDefaultLanguage + + + + + English + + + + + German + + + + + Italian + + + + + French + + + + + Spanish + + + + + ChineseSimplified + + + + + Japanese + + + + + Korean + + + + + Russian + + + + + Turkish + + + + + PortugueseBrazil + + + + + Possible values for property DisplayTimeToEnergySavingMode + + + + + Disabled + + + + + Value30Seconds + + + + + Value1Minute + + + + + Value2Minutes + + + + + Value5Minutes + + + + + Value10Minutes + + + + + Value15Minutes + + + + + Value30Minutes + + + + + Possible values for property DisplayTimeToStandbyMode + + + + + Disabled + + + + + Value30Seconds + + + + + Value1Minute + + + + + Value2Minutes + + + + + Value5Minutes + + + + + Value10Minutes + + + + + Value15Minutes + + + + + Value30Minutes + + + + + Possible values for property DisplayUpdateInterval + + + + + Disabled + + + + + Value1Second + + + + + Value2Seconds + + + + + Value3Seconds + + + + + Value4Seconds + + + + + Value5Seconds + + + + + Value10Seconds + + + + + Value15Seconds + + + + + Value30Seconds + + + + + Value1Minute + + + + + Value2Minutes + + + + + Value5Minutes + + + + + Possible values for property DpOperatingMode + + + + + NoDp + + + + + DpMaster + + + + + DpSlave + + + + + DpMasterClass2 + + + + + Possible values for property DpProtocolMode + + + + + None + + + + + DpV0 + + + + + S7Compatible + + + + + DpV1 + + + + + Possible values for property DriveEnableOutput + + + + + None + + + + + X11Clamp21 + + + + + X11Clamp22 + + + + + X11Clamp23 + + + + + X11Clamp24 + + + + + X11Clamp25 + + + + + X11Clamp26 + + + + + X11Clamp27 + + + + + X11Clamp28 + + + + + X11Clamp31 + + + + + X11Clamp32 + + + + + X11Clamp33 + + + + + X11Clamp34 + + + + + X11Clamp35 + + + + + X11Clamp36 + + + + + X11Clamp37 + + + + + X11Clamp38 + + + + + X12Clamp21 + + + + + X12Clamp22 + + + + + X12Clamp23 + + + + + X12Clamp24 + + + + + X12Clamp25 + + + + + X12Clamp26 + + + + + X12Clamp27 + + + + + X12Clamp28 + + + + + X12Clamp31 + + + + + X12Clamp32 + + + + + X12Clamp33 + + + + + X12Clamp34 + + + + + X12Clamp35 + + + + + X12Clamp36 + + + + + X12Clamp37 + + + + + X12Clamp38 + + + + + Dq0 + + + + + Diq2 + + + + + Possible values for property DriveReadyInput + + + + + None + + + + + X11Clamp1 + + + + + X11Clamp2 + + + + + X11Clamp3 + + + + + X11Clamp4 + + + + + X11Clamp5 + + + + + X11Clamp6 + + + + + X11Clamp7 + + + + + X11Clamp8 + + + + + X11Clamp9 + + + + + X11Clamp10 + + + + + X11Clamp11 + + + + + X11Clamp12 + + + + + X11Clamp13 + + + + + X11Clamp14 + + + + + X11Clamp15 + + + + + X11Clamp16 + + + + + X11Clamp17 + + + + + X11Clamp18 + + + + + X12Clamp1 + + + + + X12Clamp2 + + + + + X12Clamp3 + + + + + X12Clamp4 + + + + + X12Clamp5 + + + + + X12Clamp6 + + + + + X12Clamp7 + + + + + X12Clamp8 + + + + + X12Clamp9 + + + + + X12Clamp10 + + + + + X12Clamp11 + + + + + X12Clamp12 + + + + + X12Clamp13 + + + + + X12Clamp14 + + + + + X12Clamp15 + + + + + X12Clamp16 + + + + + X12Clamp17 + + + + + X12Clamp18 + + + + + Di0 + + + + + Di1 + + + + + Diq2 + + + + + Possible values for property DryRunningProtectionBehavior + + + + + Deactivated + + + + + Trip + + + + + Possible values for property EMGroundFaultResponse + + + + + Signal + + + + + Trip + + + + + Warn + + + + + Possible values for property EMGroundFaultSensorFaultResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property EMTripLevelActiveStatus + + + + + AlwaysOn + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property EMTripLevelResponse + + + + + Signal + + + + + Trip + + + + + Possible values for property EMWarningActiveStatus + + + + + AlwaysOn + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property EMWarningLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property EdgeSelection + + + + + AtRisingEdge + + + + + AtFallingEdge + + + + + AtRisingAndFallingEdge + + + + + Possible values for property EdgeSelectionDI0 + + + + + None + + + + + AtRisingEdge + + + + + AtFallingEdge + + + + + AtRisingAndFallingEdge + + + + + Possible values for property EdgeSelectionDI1 + + + + + None + + + + + AtRisingEdge + + + + + AtFallingEdge + + + + + AtRisingAndFallingEdge + + + + + Possible values for property EdgeSelectionDI2 + + + + + None + + + + + AtRisingEdge + + + + + AtFallingEdge + + + + + AtRisingAndFallingEdge + + + + + Possible values for property EdgeSelectionReferenceSwitch + + + + + AtRisingEdge + + + + + AtFallingEdge + + + + + Possible values for property EffectiveDirection + + + + + None + + + + + Positive + + + + + Negative + + + + + Both + + + + + Possible values for property EncoderEvaluation + + + + + None + + + + + FDisabledDisabled + + + + + F1oo21oo1 + + + + + F1oo21oo2 + + + + + F1oo1Disabled + + + + + F1oo11oo1 + + + + + F1oo2Disabled + + + + + F1oo2 + + + + + F1oo1 + + + + + Possible values for property EncoderType + + + + + Deactivated + + + + + Namur + + + + + NotUsed + + + + + Value10KiloOhms + + + + + Value47KiloOhms + + + + + Linear + + + + + Rotary + + + + + Possible values for property EndValueEnergyCounter + + + + + NoEndValueCountIndefinitely + + + + + CountPeriodicallyTo10Dot3 + + + + + CountPeriodicallyTo10Dot6 + + + + + CountPeriodicallyTo10Dot9 + + + + + CountPeriodicallyTo10Dot12 + + + + + CountPeriodicallyTo10Dot15 + + + + + Possible values for property ExternalFault1ActiveStatus + + + + + Always + + + + + OnlyWhenMotorOn + + + + + Possible values for property ExternalFault1Response + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property ExternalFault1Type + + + + + NoContact + + + + + NcContact + + + + + Possible values for property ExternalFault2ActiveStatus + + + + + Always + + + + + OnlyWhenMotorOn + + + + + Possible values for property ExternalFault2Response + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property ExternalFault2Type + + + + + NoContact + + + + + NcContact + + + + + Possible values for property ExternalFault3ActiveStatus + + + + + Always + + + + + OnlyWhenMotorOn + + + + + Possible values for property ExternalFault3Response + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property ExternalFault3Type + + + + + NoContact + + + + + NcContact + + + + + Possible values for property ExternalFault4ActiveStatus + + + + + Always + + + + + OnlyWhenMotorOn + + + + + Possible values for property ExternalFault4Response + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property ExternalFault4Type + + + + + NoContact + + + + + NcContact + + + + + Possible values for property ExternalFault5ActiveStatus + + + + + Always + + + + + OnlyWhenMotorOn + + + + + Possible values for property ExternalFault5Response + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property ExternalFault5Type + + + + + NoContact + + + + + NcContact + + + + + Possible values for property ExternalFault6ActiveStatus + + + + + Always + + + + + OnlyWhenMotorOn + + + + + Possible values for property ExternalFault6Response + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property ExternalFault6Type + + + + + NoContact + + + + + NcContact + + + + + Possible values for property FailsafeFOperatingMode + + + + + None + + + + + FailsafeModuleParametersMode0x101 + + + + + FailsafeModuleParametersMode0x4A4A + + + + + FailsafeModuleParametersMode0x5454 + + + + + FailsafeModuleParametersMode0x8484 + + + + + FailsafeModuleParametersMode0x9898 + + + + + FailsafeModuleParametersMode0xD3D3 + + + + + Possible values for property Failsafe_Activated + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_ActivatedLightTest + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_BehaviorAfterChannelFault + + + + + PassivateTheEntireModule + + + + + PassivateChannel + + + + + Possible values for property Failsafe_ChannelFailureAcknowledge + + + + + Manual + + + + + Automatic + + + + + Possible values for property Failsafe_ChatterMonitoring + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_ControlOfOutput + + + + + FCPU + + + + + FCPUAndOnboardFDI + + + + + Possible values for property Failsafe_DiagnosisWireBreak + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_DisableDarkTestFor48Hours + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_DisableDarkTestMaxSIL2_CAT3_PLd + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_DiscrepancyBehavior + + + + + SupplyLastValidValue + + + + + SupplyValue0 + + + + + Possible values for property Failsafe_DiscrepancyMonitoring + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_DiscrepancyTimeUnlimited + + + + + DiscrepancyTimeFinite + + + + + DiscrepancyTimeInfinite + + + + + Possible values for property Failsafe_FCRCSeed + + + + + CRCSeed16 + + + + + CRCSeed32 + + + + + Possible values for property Failsafe_FCapabilityActivated + + + + + PseudoDeactivated + + + + + PseudoActive + + + + + Possible values for property Failsafe_FCheckSeqNr + + + + + NoCheck + + + + + Check + + + + + Possible values for property Failsafe_FCheckiPar + + + + + NoCheck + + + + + Check + + + + + Possible values for property Failsafe_FParVersion + + + + + V1mode + + + + + V2mode + + + + + Possible values for property Failsafe_FPassivation + + + + + DeviceModule + + + + + Channel + + + + + Possible values for property Failsafe_FSIL + + + + + SIL1 + + + + + SIL2 + + + + + SIL3 + + + + + NoSIL + + + + + Possible values for property Failsafe_F_CRC_Length + + + + + ThreeByteCRC + + + + + TwoByteCRC + + + + + FourByteCRC + + + + + Possible values for property Failsafe_InputDelay + + + + + Value0ms + + + + + Value0dot4ms + + + + + Value0dot8ms + + + + + Value1dot6ms + + + + + Value3dot2ms + + + + + Value0dot5ms + + + + + Value6dot4ms + + + + + Value3ms + + + + + Value10ms + + + + + Value12dot8ms + + + + + Value15ms + + + + + Value20ms + + + + + Value50ms + + + + + Value60ms + + + + + Value70ms + + + + + Value80ms + + + + + Value90ms + + + + + Value100ms + + + + + Value110ms + + + + + Value120ms + + + + + Value130ms + + + + + Value140ms + + + + + Value150ms + + + + + Possible values for property Failsafe_InterferenceFrequencySuppression + + + + + Value50Hz + + + + + Value60Hz + + + + + Possible values for property Failsafe_ManualAssignmentFIODBNumber + + + + + Automatic + + + + + Manual + + + + + Possible values for property Failsafe_MaxReadbackTimeLightTestAndDarkTest + + + + + Value08Or10ms + + + + + Value30Or50ms + + + + + Possible values for property Failsafe_MaximumTestPeriod + + + + + Value100sec + + + + + Value1000sec + + + + + Possible values for property Failsafe_MeasuringRange + + + + + Value0To20 + + + + + Value4To20 + + + + + Value0ToDot10 + + + + + Possible values for property Failsafe_OutputTest + + + + + Deactivate + + + + + Activate + + + + + Possible values for property Failsafe_OutputType + + + + + PMSwitching + + + + + PPSwitching + + + + + Possible values for property Failsafe_PulseExtension + + + + + ValueDontExtend + + + + + Value0Dot5 + + + + + Value1 + + + + + Value2 + + + + + Possible values for property Failsafe_ReadbackTime + + + + + Value1 + + + + + Value5 + + + + + Value10 + + + + + Value50 + + + + + Value100 + + + + + Value200 + + + + + Value400 + + + + + Possible values for property Failsafe_ReintegrationAfterChannelFault + + + + + Adjustable + + + + + AllChannelsAutomatically + + + + + AllChannelsManually + + + + + Possible values for property Failsafe_ReintegrationAfterDiscrepancyError + + + + + Test0SignalNotNecessary + + + + + Test0SignalNecessary + + + + + Possible values for property Failsafe_SensorEvaluation + + + + + Value1oo1Evaluation + + + + + Value1oo2EvaluationEquivalent + + + + + Value1oo2EvaluationNonEquivalent + + + + + Value1oo2Evaluation2Channel3WireNonEquivalent + + + + + Value1oo2Evaluation2Channel4WireNonEquivalent + + + + + Possible values for property Failsafe_SensorInterconnection + + + + + Deactivated + + + + + Value1Channel + + + + + Value2ChannelEquivalent + + + + + Value2ChannelNonEquivalent + + + + + Possible values for property Failsafe_SensorSupply + + + + + SensorSupply0 + + + + + SensorSupply1 + + + + + SensorSupply2 + + + + + SensorSupply3 + + + + + SensorSupply4 + + + + + SensorSupply5 + + + + + SensorSupply6 + + + + + SensorSupply7 + + + + + ExternalSensorSupply + + + + + External + + + + + Internal + + + + + Possible values for property Failsafe_SequenceMonitoring + + + + + Deactivated + + + + + SequenceMonitoringAscending + + + + + SequenceMonitoringDescending + + + + + Possible values for property Failsafe_ShortCircuitDiagnosticActive + + + + + Disable + + + + + Enable + + + + + Possible values for property Failsafe_ShortCircuitTestDuration + + + + + Value0 + + + + + Value1Dot6 + + + + + Value3Dot2 + + + + + Value6Dot4 + + + + + Value12Dot8 + + + + + Possible values for property Failsafe_ShortCircuitTestInterval + + + + + Value0 + + + + + Value12Dot8 + + + + + Value25Dot6 + + + + + Value51Dot2 + + + + + Value102Dot4 + + + + + Value204Dot8 + + + + + Value409Dot6 + + + + + Value819Dot2 + + + + + Possible values for property Failsafe_ShortCircuitTest_0 + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_ShortCircuitTest_1 + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_ShortCircuitTest_2 + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_ShortCircuitTest_3 + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_ShortCircuitTest_4 + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_ShortCircuitTest_5 + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_ShortCircuitTest_6 + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_ShortCircuitTest_7 + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_Smoothing + + + + + Value1x + + + + + Value2x + + + + + Value4x + + + + + Value8x + + + + + Value16x + + + + + Value32x + + + + + Value64x + + + + + Possible values for property Failsafe_StartupTest + + + + + Deactivated + + + + + Active + + + + + Possible values for property Failsafe_SuppliedChannels_0 + + + + + Channels0ToDot3 + + + + + Channels0ToDot7 + + + + + Channels0ToDot15 + + + + + NoChannels + + + + + Possible values for property Failsafe_SuppliedChannels_1 + + + + + Channels4ToDot7 + + + + + NoChannels + + + + + Possible values for property Failsafe_SuppliedChannels_2 + + + + + Channels8ToDot11 + + + + + Channels8ToDot15 + + + + + NoChannels + + + + + Possible values for property Failsafe_SuppliedChannels_3 + + + + + Channels12ToDot15 + + + + + NoChannels + + + + + Possible values for property Failsafe_UnitValue + + + + + Min + + + + + Max + + + + + Possible values for property FeedbackValue + + + + + RemainingDistance + + + + + AbsolutePosition + + + + + Speed + + + + + Possible values for property FilterFrequency + + + + + Value100Hz + + + + + Value200Hz + + + + + Value500Hz + + + + + Value1kHz + + + + + Value2kHz + + + + + Value5kHz + + + + + Value10kHz + + + + + Value20kHz + + + + + Value50kHz + + + + + Value100kHz + + + + + Value200kHz + + + + + Value500kHz + + + + + Value1MHz + + + + + Possible values for property FloatingMeanValueFilterActive + + + + + Active + + + + + Deactivated + + + + + Possible values for property FlowVelocityUnit + + + + + Default + + + + + MetersPerSecond + + + + + MilliMetersPerSecond + + + + + MetersPerHoure + + + + + KiloMetersPerHoure + + + + + Knots + + + + + InchesPerSecond + + + + + FeetPerSecond + + + + + YardsPerSecond + + + + + InchesPerMinute + + + + + FeetPerMinute + + + + + YardsPerMinute + + + + + InchesPerHour + + + + + FeetPerHour + + + + + YardsPerHour + + + + + MilesPerHour + + + + + Represents a ForceTableAccessRule object + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents webserver access + + + + + + Represents Plc Force table + + + + + + Composition of ForceTableAccessRule + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates a ForceTableAccessRule object + + Represents Plc Force table + Represents webserver access + Siemens.Engineering.HW.ForceTableAccessRule + + + + Finds a given ForceTableAccessRule by ForceTable + + Represents Plc Force table + Siemens.Engineering.HW.ForceTableAccessRule + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Possible values for property ForcedValues + + + + + Deactivate + + + + + Activate + + + + + Possible values for property FrameLength + + + + + Value0 + + + + + Value13BitRightJustified + + + + + Value25BitRightJustified + + + + + Value10Bit + + + + + Value11Bit + + + + + Value12Bit + + + + + Value13Bit + + + + + Value14Bit + + + + + Value15Bit + + + + + Value16Bit + + + + + Value17Bit + + + + + Value18Bit + + + + + Value19Bit + + + + + Value20Bit + + + + + Value21Bit + + + + + Value22Bit + + + + + Value23Bit + + + + + Value24Bit + + + + + Value25Bit + + + + + Value26Bit + + + + + Value27Bit + + + + + Value28Bit + + + + + Value29Bit + + + + + Value30Bit + + + + + Value31Bit + + + + + Value32Bit + + + + + Value33Bit + + + + + Value34Bit + + + + + Value35Bit + + + + + Value36Bit + + + + + Value37Bit + + + + + Value38Bit + + + + + Value39Bit + + + + + Value40Bit + + + + + Possible values for property FrameType + + + + + StandardMessageFrame3 + + + + + StandardFrame81 + + + + + SegmentDp2 + + + + + SegmentDp2Dp3 + + + + + SegmentDp2Dp3Dp1 + + + + + SegmentDp2Dp3Dp1Pg + + + + + SegmentDp2Dp3Dp1PgTsync + + + + + Possible values for property FrequencyForCapture + + + + + Once + + + + + Periodic + + + + + Possible values for property FunctionDI + + + + + GateStartOrStopLevelTriggered + + + + + GateStartEdgeTriggered + + + + + GateStopEdgeTriggered + + + + + Synchronization + + + + + LatchOnPositiveEdge + + + + + Capture + + + + + DigitalInputWithoutFunction + + + + + InvertDirection + + + + + Input + + + + + HwEnable + + + + + HardwareGate + + + + + RetriggerOnRisingEdge + + + + + ExternalPulseEnable + + + + + ExternalStop + + + + + LimitSwitch + + + + + Possible values for property FunctionDI0 + + + + + GateStartOrStopLevelTriggered + + + + + GateStartEdgeTriggered + + + + + GateStopEdgeTriggered + + + + + Synchronization + + + + + EnableSynchronizationAtSignalN + + + + + Capture + + + + + DigitalInputWithoutFunction + + + + + Possible values for property FunctionDI1 + + + + + GateStartOrStopLevelTriggered + + + + + GateStartEdgeTriggered + + + + + GateStopEdgeTriggered + + + + + Synchronization + + + + + EnableSynchronizationAtSignalN + + + + + Capture + + + + + DigitalInputWithoutFunction + + + + + Possible values for property FunctionDI2 + + + + + GateStartOrStopLevelTriggered + + + + + GateStartEdgeTriggered + + + + + GateStopEdgeTriggered + + + + + Synchronization + + + + + EnableSynchronizationAtSignalN + + + + + Capture + + + + + DigitalInputWithoutFunction + + + + + Possible values for property FunctionInputS1 + + + + + None + + + + + LimitSwitch + + + + + LimitSwitchPlus + + + + + ReferenceSwitch + + + + + Possible values for property FunctionInputS2 + + + + + None + + + + + LimitSwitch + + + + + LimitSwitchPlus + + + + + ReferenceSwitch + + + + + Possible values for property FunctionInputS3 + + + + + None + + + + + LimitSwitch + + + + + LimitSwitchPlus + + + + + ReferenceSwitch + + + + + Possible values for property GateControlActive + + + + + Deactivated + + + + + Active + + + + + Possible values for property GenerateDeviceNamesAutomatically + + + + + Manual + + + + + Automatic + + + + + Possible values for property HardwareInterrupt + + + + + Deactivated + + + + + Active + + + + + Possible values for property HardwareInterruptActive + + + + + PseudoDeactivated + + + + + PseudoActive + + + + + Possible values for property HardwareInterruptFallingEdgeActive + + + + + Deactivated + + + + + Active + + + + + Possible values for property HardwareInterruptRisingEdgeActive + + + + + Deactivated + + + + + Active + + + + + Hardware Resources that are assignable for interfaces + + + + + Undefined + + + + + X1 + + + + + X2 + + + + + X3 + + + + + X4 + + + + + X101 + + + + + X102 + + + + + X103 + + + + + X104 + + + + + X105 + + + + + X106 + + + + + X107 + + + + + X108 + + + + + X109 + + + + + X110 + + + + + X111 + + + + + Possible values for property HartTag + + + + + None + + + + + Value4Hart + + + + + Value8Hart + + + + + Value1Multihart + + + + + Possible values for property HighErrorLimit + + + + + Deactivated + + + + + Activated + + + + + Possible values for property HighLimitCurrent + + + + + None + + + + + Value50Dot00 + + + + + Value53Dot13 + + + + + Value56Dot25 + + + + + Value59Dot38 + + + + + Value62Dot50 + + + + + Value65Dot63 + + + + + Value68Dot75 + + + + + Value71Dot88 + + + + + Value75Dot00 + + + + + Value78Dot13 + + + + + Value81Dot25 + + + + + Value84Dot38 + + + + + Value87Dot50 + + + + + Value90Dot63 + + + + + Value93Dot75 + + + + + Value96Dot88 + + + + + Value100Dot00 + + + + + Value103Dot13 + + + + + Value106Dot25 + + + + + Value109Dot38 + + + + + Value112Dot50 + + + + + Value115Dot63 + + + + + Value118Dot75 + + + + + Value121Dot88 + + + + + Value125Dot00 + + + + + Value128Dot13 + + + + + Value131Dot25 + + + + + Value134Dot38 + + + + + Value137Dot50 + + + + + Value140Dot63 + + + + + Value143Dot75 + + + + + Value146Dot88 + + + + + Value150Dot00 + + + + + Value153Dot13 + + + + + Value156Dot25 + + + + + Value159Dot38 + + + + + Value162Dot50 + + + + + Value165Dot63 + + + + + Value168Dot75 + + + + + Value171Dot88 + + + + + Value175Dot00 + + + + + Value178Dot13 + + + + + Value181Dot25 + + + + + Value184Dot38 + + + + + Value187Dot50 + + + + + Value190Dot63 + + + + + Value193Dot75 + + + + + Value196Dot88 + + + + + Value200Dot00 + + + + + Value203Dot13 + + + + + Value206Dot25 + + + + + Value209Dot38 + + + + + Value212Dot50 + + + + + Value215Dot63 + + + + + Value218Dot75 + + + + + Value221Dot88 + + + + + Value225Dot00 + + + + + Value228Dot13 + + + + + Value231Dot25 + + + + + Value234Dot38 + + + + + Value237Dot50 + + + + + Value240Dot63 + + + + + Value243Dot75 + + + + + Value246Dot88 + + + + + Value250Dot00 + + + + + Value253Dot13 + + + + + Value256Dot25 + + + + + Value259Dot38 + + + + + Value262Dot50 + + + + + Value265Dot63 + + + + + Value268Dot75 + + + + + Value271Dot88 + + + + + Value275Dot00 + + + + + Value278Dot13 + + + + + Value281Dot25 + + + + + Value284Dot38 + + + + + Value287Dot50 + + + + + Value290Dot63 + + + + + Value293Dot75 + + + + + Value296Dot88 + + + + + Value300Dot00 + + + + + Value303Dot13 + + + + + Value306Dot25 + + + + + Value309Dot38 + + + + + Value312Dot50 + + + + + Value315Dot63 + + + + + Value318Dot75 + + + + + Value321Dot88 + + + + + Value325Dot00 + + + + + Value328Dot13 + + + + + Value331Dot25 + + + + + Value334Dot38 + + + + + Value337Dot50 + + + + + Value340Dot63 + + + + + Value343Dot75 + + + + + Value346Dot88 + + + + + Value350Dot00 + + + + + Value353Dot13 + + + + + Value356Dot25 + + + + + Value359Dot38 + + + + + Value362Dot50 + + + + + Value365Dot63 + + + + + Value368Dot75 + + + + + Value371Dot88 + + + + + Value375Dot00 + + + + + Value378Dot13 + + + + + Value381Dot25 + + + + + Value384Dot38 + + + + + Value387Dot50 + + + + + Value390Dot63 + + + + + Value393Dot75 + + + + + Value396Dot88 + + + + + Value400Dot00 + + + + + Possible values for property HighWarningLimit + + + + + Deactivated + + + + + Activated + + + + + Possible values for property HscDI0 + + + + + None + + + + + X11Clamp1 + + + + + X11Clamp2 + + + + + X11Clamp3 + + + + + X11Clamp4 + + + + + X11Clamp5 + + + + + X11Clamp6 + + + + + X11Clamp7 + + + + + X11Clamp8 + + + + + X11Clamp11 + + + + + X11Clamp12 + + + + + X11Clamp13 + + + + + X11Clamp14 + + + + + X11Clamp15 + + + + + X11Clamp16 + + + + + X11Clamp17 + + + + + X11Clamp18 + + + + + X12Clamp1 + + + + + X12Clamp2 + + + + + X12Clamp3 + + + + + X12Clamp4 + + + + + X12Clamp5 + + + + + X12Clamp6 + + + + + X12Clamp7 + + + + + X12Clamp8 + + + + + X12Clamp11 + + + + + X12Clamp12 + + + + + X12Clamp13 + + + + + X12Clamp14 + + + + + X12Clamp15 + + + + + X12Clamp16 + + + + + X12Clamp17 + + + + + X12Clamp18 + + + + + Possible values for property HscDI1 + + + + + None + + + + + X11Clamp1 + + + + + X11Clamp2 + + + + + X11Clamp3 + + + + + X11Clamp4 + + + + + X11Clamp5 + + + + + X11Clamp6 + + + + + X11Clamp7 + + + + + X11Clamp8 + + + + + X11Clamp11 + + + + + X11Clamp12 + + + + + X11Clamp13 + + + + + X11Clamp14 + + + + + X11Clamp15 + + + + + X11Clamp16 + + + + + X11Clamp17 + + + + + X11Clamp18 + + + + + X12Clamp1 + + + + + X12Clamp2 + + + + + X12Clamp3 + + + + + X12Clamp4 + + + + + X12Clamp5 + + + + + X12Clamp6 + + + + + X12Clamp7 + + + + + X12Clamp8 + + + + + X12Clamp11 + + + + + X12Clamp12 + + + + + X12Clamp13 + + + + + X12Clamp14 + + + + + X12Clamp15 + + + + + X12Clamp16 + + + + + X12Clamp17 + + + + + X12Clamp18 + + + + + Possible values for property HscDQ1 + + + + + None + + + + + X11Clamp22 + + + + + X11Clamp24 + + + + + X11Clamp25 + + + + + X11Clamp26 + + + + + X11Clamp27 + + + + + X11Clamp28 + + + + + X11Clamp32 + + + + + X11Clamp34 + + + + + X11Clamp35 + + + + + X11Clamp36 + + + + + X11Clamp37 + + + + + X11Clamp38 + + + + + Possible values for property HwEnable + + + + + EdgeTriggered + + + + + LevelTriggered + + + + + Represents a HW identifier + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Associated Hw identifier controllers + + + + + + Identifier for this HW identifier + + + + + + Associated Hw identifiers + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Composition of HwIdentifiers + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Possible values for property IEPBLinkOperatingMode + + + + + IEPBLinkOperatingModePnioProxy + + + + + IEPBLinkOperatingModeGateway + + + + + IEPBLinkOperatingModeS71500RHPnioProxy + + + + + Possible values for property IIRLowPassFilterActive + + + + + Activate + + + + + Deactivated + + + + + Repesents objects which can participate in sync domain + + + + + Association of SyncDomainParticipant objects + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Adds an . + + The item to be added. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Possible values for property IdentificationMode + + + + + DefineDifferentSettingForTheSidesOfTheCoupler + + + + + ApplySettingsForBothSidesOfTheCoupler + + + + + Possible values for property Input1Action + + + + + NoAction + + + + + TripWithoutRestart + + + + + TripWithRestart + + + + + TripEndPositionCw + + + + + TripEndPositionCcw + + + + + GroupWarning + + + + + ManualModeLocal + + + + + EmergencyStart + + + + + MotorCw + + + + + MotorCcw + + + + + QuickStop + + + + + TripReset + + + + + ColdRun + + + + + Possible values for property Input1Level + + + + + NormallyClosed + + + + + NormallyOpen + + + + + Possible values for property Input1Signal + + + + + NonRetentive + + + + + Retentive + + + + + Possible values for property Input2Action + + + + + NoAction + + + + + TripWithoutRestart + + + + + TripWithRestart + + + + + TripEndPositionCw + + + + + TripEndPositionCcw + + + + + GroupWarning + + + + + ManualModeLocal + + + + + EmergencyStart + + + + + MotorCw + + + + + MotorCcw + + + + + QuickStop + + + + + TripReset + + + + + ColdRun + + + + + Possible values for property Input2Level + + + + + NormallyClosed + + + + + NormallyOpen + + + + + Possible values for property Input2Signal + + + + + NonRetentive + + + + + Retentive + + + + + Possible values for property Input3Action + + + + + NoAction + + + + + TripWithoutRestart + + + + + TripWithRestart + + + + + TripEndPositionCw + + + + + TripEndPositionCcw + + + + + GroupWarning + + + + + ManualModeLocal + + + + + EmergencyStart + + + + + MotorCw + + + + + MotorCcw + + + + + QuickStop + + + + + TripReset + + + + + ColdRun + + + + + Possible values for property Input3Level + + + + + NormallyClosed + + + + + NormallyOpen + + + + + Possible values for property Input3Signal + + + + + NonRetentive + + + + + Retentive + + + + + Possible values for property Input4Action + + + + + NoAction + + + + + TripWithoutRestart + + + + + TripWithRestart + + + + + TripEndPositionCw + + + + + TripEndPositionCcw + + + + + GroupWarning + + + + + ManualModeLocal + + + + + EmergencyStart + + + + + MotorCw + + + + + MotorCcw + + + + + CreepFeed + + + + + QuickStop + + + + + TripReset + + + + + ColdRun + + + + + Possible values for property Input4Level + + + + + NormallyClosed + + + + + NormallyOpen + + + + + Possible values for property Input4Signal + + + + + NonRetentive + + + + + Retentive + + + + + Possible values for property InputA + + + + + None + + + + + X11Clamp1 + + + + + X11Clamp4 + + + + + X11Clamp7 + + + + + X11Clamp11 + + + + + X11Clamp14 + + + + + X11Clamp17 + + + + + X12Clamp1 + + + + + X12Clamp4 + + + + + X12Clamp7 + + + + + Possible values for property InputB + + + + + None + + + + + X11Clamp2 + + + + + X11Clamp5 + + + + + X11Clamp8 + + + + + X11Clamp12 + + + + + X11Clamp15 + + + + + X11Clamp18 + + + + + X12Clamp2 + + + + + X12Clamp5 + + + + + X12Clamp8 + + + + + Possible values for property InputDI0 + + + + + NormallyClosedContact + + + + + NormallyOpenContact + + + + + Possible values for property InputDI1 + + + + + NormallyClosedContact + + + + + NormallyOpenContact + + + + + Possible values for property InputDelay + + + + + Value0Dot05ms + + + + + Value0Dot1ms + + + + + Value0Dot5ms + + + + + Value0Dot4ms + + + + + Value0Dot8ms + + + + + Value1Dot6ms + + + + + Value3Dot2ms + + + + + Value6Dot4ms + + + + + Deactivated + + + + + Value12Dot8ms + + + + + Value20ms + + + + + Value15ms + + + + + Value3ms + + + + + Value0Dot2microsec + + + + + Value0Dot4microsec + + + + + None + + + + + Value0Dot2ms + + + + + Value10ms + + + + + Value30ms + + + + + Value40ms + + + + + Value50ms + + + + + Value60ms + + + + + Value70ms + + + + + Value80ms + + + + + Value0Dot1microsec + + + + + Value0Dot8microsec + + + + + Value1Dot6microsec + + + + + Value10microsec + + + + + Value12Dot8microsec + + + + + Value20microsec + + + + + Value3Dot2microsec + + + + + Value6Dot4microsec + + + + + Value50Khz + + + + + Value001Microseconds + + + + + Value125Microseconds + + + + + Possible values for property InputDelayCH0 + + + + + Value0dot1micros + + + + + Value0dot2micros + + + + + Value0dot5micros + + + + + Value1micros + + + + + Value2micros + + + + + Value5micros + + + + + Value10micros + + + + + Value20micros + + + + + Value50micros + + + + + Value100micros + + + + + Value200micros + + + + + Value500micros + + + + + Value1000micros + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayCH1 + + + + + Value0dot1micros + + + + + Value0dot2micros + + + + + Value0dot5micros + + + + + Value1micros + + + + + Value2micros + + + + + Value5micros + + + + + Value10micros + + + + + Value20micros + + + + + Value50micros + + + + + Value100micros + + + + + Value200micros + + + + + Value500micros + + + + + Value1000micros + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayCH2 + + + + + Value0dot1micros + + + + + Value0dot2micros + + + + + Value0dot5micros + + + + + Value1micros + + + + + Value2micros + + + + + Value5micros + + + + + Value10micros + + + + + Value20micros + + + + + Value50micros + + + + + Value100micros + + + + + Value200micros + + + + + Value500micros + + + + + Value1000micros + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayCH3 + + + + + Value0dot1micros + + + + + Value0dot2micros + + + + + Value0dot5micros + + + + + Value1micros + + + + + Value2micros + + + + + Value5micros + + + + + Value10micros + + + + + Value20micros + + + + + Value50micros + + + + + Value100micros + + + + + Value200micros + + + + + Value500micros + + + + + Value1000micros + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayCH4 + + + + + Value0dot1micros + + + + + Value0dot2micros + + + + + Value0dot5micros + + + + + Value1micros + + + + + Value2micros + + + + + Value5micros + + + + + Value10micros + + + + + Value20micros + + + + + Value50micros + + + + + Value100micros + + + + + Value200micros + + + + + Value500micros + + + + + Value1000micros + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayCH5 + + + + + Value0dot1micros + + + + + Value0dot2micros + + + + + Value0dot5micros + + + + + Value1micros + + + + + Value2micros + + + + + Value5micros + + + + + Value10micros + + + + + Value20micros + + + + + Value50micros + + + + + Value100micros + + + + + Value200micros + + + + + Value500micros + + + + + Value1000micros + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayCH6 + + + + + Value0dot1micros + + + + + Value0dot2micros + + + + + Value0dot5micros + + + + + Value1micros + + + + + Value2micros + + + + + Value5micros + + + + + Value10micros + + + + + Value20micros + + + + + Value50micros + + + + + Value100micros + + + + + Value200micros + + + + + Value500micros + + + + + Value1000micros + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayCH7 + + + + + Value0dot1micros + + + + + Value0dot2micros + + + + + Value0dot5micros + + + + + Value1micros + + + + + Value2micros + + + + + Value5micros + + + + + Value10micros + + + + + Value20micros + + + + + Value50micros + + + + + Value100micros + + + + + Value200micros + + + + + Value500micros + + + + + Value1000micros + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayDI0 + + + + + Value0dot05ms + + + + + Value0dot1ms + + + + + Value0dot4ms + + + + + Value0dot8ms + + + + + Value1dot6ms + + + + + Value3dot2ms + + + + + Value12dot8ms + + + + + Value20dot0ms + + + + + Value0dot001ms + + + + + Value0dot003ms + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayDI1 + + + + + Value0dot05ms + + + + + Value0dot1ms + + + + + Value0dot4ms + + + + + Value0dot8ms + + + + + Value1dot6ms + + + + + Value3dot2ms + + + + + Value12dot8ms + + + + + Value20dot0ms + + + + + Value0dot001ms + + + + + Value0dot003ms + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayDI10 + + + + + Value0dot05ms + + + + + Value0dot1ms + + + + + Value0dot4ms + + + + + Value0dot8ms + + + + + Value1dot6ms + + + + + Value3dot2ms + + + + + Value12dot8ms + + + + + Value20dot0ms + + + + + Value0dot001ms + + + + + Value0dot003ms + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayDI11 + + + + + Value0dot05ms + + + + + Value0dot1ms + + + + + Value0dot4ms + + + + + Value0dot8ms + + + + + Value1dot6ms + + + + + Value3dot2ms + + + + + Value12dot8ms + + + + + Value20dot0ms + + + + + Value0dot001ms + + + + + Value0dot003ms + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayDI2 + + + + + Value0dot05ms + + + + + Value0dot1ms + + + + + Value0dot4ms + + + + + Value0dot8ms + + + + + Value1dot6ms + + + + + Value3dot2ms + + + + + Value12dot8ms + + + + + Value20dot0ms + + + + + Value0dot001ms + + + + + Value0dot003ms + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayDI3 + + + + + Value0dot05ms + + + + + Value0dot1ms + + + + + Value0dot4ms + + + + + Value0dot8ms + + + + + Value1dot6ms + + + + + Value3dot2ms + + + + + Value12dot8ms + + + + + Value20dot0ms + + + + + Value0dot001ms + + + + + Value0dot003ms + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayDI4 + + + + + Value0dot05ms + + + + + Value0dot1ms + + + + + Value0dot4ms + + + + + Value0dot8ms + + + + + Value1dot6ms + + + + + Value3dot2ms + + + + + Value12dot8ms + + + + + Value20dot0ms + + + + + Value0dot001ms + + + + + Value0dot003ms + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayDI5 + + + + + Value0dot05ms + + + + + Value0dot1ms + + + + + Value0dot4ms + + + + + Value0dot8ms + + + + + Value1dot6ms + + + + + Value3dot2ms + + + + + Value12dot8ms + + + + + Value20dot0ms + + + + + Value0dot001ms + + + + + Value0dot003ms + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayDI6 + + + + + Value0dot05ms + + + + + Value0dot1ms + + + + + Value0dot4ms + + + + + Value0dot8ms + + + + + Value1dot6ms + + + + + Value3dot2ms + + + + + Value12dot8ms + + + + + Value20dot0ms + + + + + Value0dot001ms + + + + + Value0dot003ms + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayDI7 + + + + + Value0dot05ms + + + + + Value0dot1ms + + + + + Value0dot4ms + + + + + Value0dot8ms + + + + + Value1dot6ms + + + + + Value3dot2ms + + + + + Value12dot8ms + + + + + Value20dot0ms + + + + + Value0dot001ms + + + + + Value0dot003ms + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayDI8 + + + + + Value0dot05ms + + + + + Value0dot1ms + + + + + Value0dot4ms + + + + + Value0dot8ms + + + + + Value1dot6ms + + + + + Value3dot2ms + + + + + Value12dot8ms + + + + + Value20dot0ms + + + + + Value0dot001ms + + + + + Value0dot003ms + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputDelayDI9 + + + + + Value0dot05ms + + + + + Value0dot1ms + + + + + Value0dot4ms + + + + + Value0dot8ms + + + + + Value1dot6ms + + + + + Value3dot2ms + + + + + Value12dot8ms + + + + + Value20dot0ms + + + + + Value0dot001ms + + + + + Value0dot003ms + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property InputN + + + + + None + + + + + X11Clamp3 + + + + + X11Clamp6 + + + + + X11Clamp11 + + + + + X11Clamp13 + + + + + X11Clamp16 + + + + + X12Clamp3 + + + + + X12Clamp6 + + + + + X12Clamp11 + + + + + Possible values for property InputOrOutputType + + + + + None + + + + + Value1 + + + + + Value2 + + + + + InputOrOutput + + + + + Value4And4 + + + + + Value8 + + + + + Value12And8 + + + + + Value16 + + + + + Value16Or0 + + + + + Value20And16 + + + + + Value24Or16 + + + + + Value32 + + + + + Value1And1 + + + + + Value40Or32 + + + + + Value48And48 + + + + + Value52And48 + + + + + Value64And64 + + + + + Value72Or64 + + + + + Value80And80 + + + + + Value84And80 + + + + + Value96And96 + + + + + Value100And96 + + + + + Value112And112 + + + + + Value116And112 + + + + + Value128Or128 + + + + + Value132And128 + + + + + Value136Or128 + + + + + Value144And128 + + + + + Value16And16 + + + + + Value2And2 + + + + + Value32And32 + + + + + Value8And8 + + + + + Value8And0 + + + + + Input + + + + + Output + + + + + Value4 + + + + + Value36And32 + + + + + Value68And64 + + + + + Value240Or240 + + + + + Possible values for property InspectionOrBackupLevel + + + + + None + + + + + SameTypeV1Dot0WithoutBackupRestore + + + + + TypeCompatibleV1Dot1WithoutBackupRestore + + + + + TypeCompatibleV1Dot1WithBackupRestore + + + + + TypeCompatibleV1Dot1WithRestore + + + + + Possible values for property InspectionOrBackupLevelPort1 + + + + + None + + + + + SameTypeV1Dot0WithoutBackupRestore + + + + + TypeCompatibleV1Dot1WithoutBackupandRestore + + + + + SameTypeV1Dot0WithoutDataBackup + + + + + TypeCompatibleV1Dot1WithBackupandRestore + + + + + TypeCompatibleV1Dot1WithBackupRestore3 + + + + + TypeCompatibleV1Dot1WithRestore + + + + + TypeCompatibleV1Dot1WithoutDataBackup + + + + + Possible values for property InspectionOrBackupLevelPort2 + + + + + None + + + + + SameTypeV1Dot0WithoutBackupRestore + + + + + TypeCompatibleV1Dot1WithoutBackupandRestore + + + + + SameTypeV1Dot0WithoutDataBackup + + + + + TypeCompatibleV1Dot1WithBackupandRestore + + + + + TypeCompatibleV1Dot1WithBackupRestore3 + + + + + TypeCompatibleV1Dot1WithRestore + + + + + TypeCompatibleV1Dot1WithoutDataBackup + + + + + Possible values for property InspectionOrBackupLevelPort3 + + + + + None + + + + + SameTypeV1Dot0WithoutBackupRestore + + + + + TypeCompatibleV1Dot1WithoutBackupandRestore + + + + + SameTypeV1Dot0WithoutDataBackup + + + + + TypeCompatibleV1Dot1WithBackupandRestore + + + + + TypeCompatibleV1Dot1WithBackupRestore3 + + + + + TypeCompatibleV1Dot1WithRestore + + + + + TypeCompatibleV1Dot1WithoutDataBackup + + + + + Possible values for property InspectionOrBackupLevelPort4 + + + + + None + + + + + SameTypeV1Dot0WithoutBackupRestore + + + + + TypeCompatibleV1Dot1WithoutBackupandRestore + + + + + SameTypeV1Dot0WithoutDataBackup + + + + + TypeCompatibleV1Dot1WithBackupandRestore + + + + + TypeCompatibleV1Dot1WithBackupRestore3 + + + + + TypeCompatibleV1Dot1WithRestore + + + + + TypeCompatibleV1Dot1WithoutDataBackup + + + + + Possible values for property InspectionOrBackupLevelPort5 + + + + + None + + + + + SameTypeV1Dot0WithoutBackupRestore + + + + + TypeCompatibleV1Dot1WithoutBackupRestore + + + + + TypeCompatibleV1Dot1WithBackupRestore + + + + + TypeCompatibleV1Dot1WithRestore + + + + + Possible values for property InspectionOrBackupLevelPort6 + + + + + None + + + + + SameTypeV1Dot0WithoutBackupRestore + + + + + TypeCompatibleV1Dot1WithoutBackupRestore + + + + + TypeCompatibleV1Dot1WithBackupRestore + + + + + TypeCompatibleV1Dot1WithRestore + + + + + Possible values for property InspectionOrBackupLevelPort7 + + + + + None + + + + + SameTypeV1Dot0WithoutBackupRestore + + + + + TypeCompatibleV1Dot1WithoutBackupRestore + + + + + TypeCompatibleV1Dot1WithBackupRestore + + + + + TypeCompatibleV1Dot1WithRestore + + + + + Possible values for property InspectionOrBackupLevelPort8 + + + + + None + + + + + SameTypeV1Dot0WithoutBackupRestore + + + + + TypeCompatibleV1Dot1WithoutBackupRestore + + + + + TypeCompatibleV1Dot1WithBackupRestore + + + + + TypeCompatibleV1Dot1WithRestore + + + + + Possible values for property InterfaceOperatingModes + + + + + None + + + + + IoController + + + + + IoDevice + + + + + Possible values for property InterfaceStandard + + + + + Rs422Symmetrical + + + + + Ttl5VAsymmetrical + + + + + Possible values for property InterfaceType + + + + + Unknown + + + + + Profibus + + + + + Mpi + + + + + Ethernet + + + + + Asi + + + + + Ptp + + + + + Link + + + + + PcInternal + + + + + ProfibusIntegrated + + + + + Wan + + + + + ProfidriveIntegrated + + + + + Possible values for property InterferenceFrequencySuppression + + + + + Value50 + + + + + Value60 + + + + + Value400 + + + + + None + + + + + Value10 + + + + + Value300 + + + + + Value3600 + + + + + Value16Dot67 + + + + + Value50Or60Or400 + + + + + FastMode + + + + + Value16Dot6 + + + + + Value50Dot20ms + + + + + Value16Dot7Dot60ms + + + + + Value16Dot6I67Dot5ms + + + + + Value1200 + + + + + Value4800 + + + + + Value50I22Dot5ms + + + + + Value60I18Dot75ms + + + + + Value600 + + + + + Value2400 + + + + + Deactivated + + + + + Value16Dot7Dot180ms + + + + + Value60Dot16Dot7ms + + + + + Possible values for property InternalGroundFaultTripResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property InternalGroundFaultWarningResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Represents an IO connector + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Connects to the IO System + + The IO system to be connected + + + + Disconnects a device from the given IO system + + + + + Returns the IO controller for this connector + + Siemens.Engineering.HW.IoController + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The connected IO system + + + + + + Associated IO connectors + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Composition of IoConnectors + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents an IO controller + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Creates an IO system + + The name of the IO system to be created + Siemens.Engineering.HW.IoSystem + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of addresses + + + + + + Composition of IO system + + + + + + EOM parent of this object + + + + + + Composition of IoControllers + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents an IO system + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of HW identifiers + + + + + + EOM parent of this object + + + + + + The connected IO devices + + + + + + The name of the IO system + + + + + + The number of this IO system + + + + + + Associated Subnet + + + + + + Associated IO systems + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + IP protocol selection + + + + + no IP protocol selection + + + + + IP protocol selection: Project + + + + + IP protocol selection: Dhcp + + + + + IP protocol selection: User program + + + + + IP protocol selection: Other path + + + + + Address tailoring type + + + + + Possible values for property IsochronousTiToCalculationMode + + + + + None + + + + + FromOB + + + + + FromSubnet + + + + + AutomaticMinimum + + + + + Manual + + + + + Possible values for property KinematicViscosityUnits + + + + + Default + + + + + SquareMetersPerSecond + + + + + Stokes + + + + + Centistokes + + + + + Possible values for property Layer2VlanRingRedundancyActive + + + + + Deactivated + + + + + Active + + + + + Possible values for property LengthOfIORange + + + + + None + + + + + Value4Byte + + + + + Value8Byte + + + + + Value12Byte + + + + + Value16Byte + + + + + Value20Byte + + + + + Value24Byte + + + + + Value28Byte + + + + + Value32Byte + + + + + Value64Byte + + + + + Value96Byte + + + + + Value128Byte + + + + + Value160Byte + + + + + Value192Byte + + + + + Value224Byte + + + + + Value256Byte + + + + + Value288Byte + + + + + Possible values for property LevelSelection + + + + + ActivOnLowLevel + + + + + ActivOnHighLevel + + + + + Possible values for property LimitMonitor1ActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpf + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property LimitMonitor1Type + + + + + Overshoot + + + + + Undershoot + + + + + Possible values for property LimitMonitor2ActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpf + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property LimitMonitor2Type + + + + + Overshoot + + + + + Undershoot + + + + + Possible values for property LimitMonitor3ActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpf + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property LimitMonitor3Type + + + + + Overshoot + + + + + Undershoot + + + + + Possible values for property LimitMonitor4ActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpf + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property LimitMonitor4Type + + + + + Overshoot + + + + + Undershoot + + + + + Possible values for property LimitMonitor5ActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpf + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property LimitMonitor5Type + + + + + Overshoot + + + + + Undershoot + + + + + Possible values for property LimitMonitor6ActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpf + + + + + IfMotorIsRunningExceptTpf + + + + + IfMotorIsRunningExceptTpfWithStartupOverride + + + + + Possible values for property LimitMonitor6Type + + + + + Overshoot + + + + + Undershoot + + + + + Possible values for property LimitMonitoringActive + + + + + Deactivated + + + + + Activate + + + + + Possible values for property LimitSwitch + + + + + NormallyClosedContact + + + + + NormallyOpenContact + + + + + Possible values for property LimitValueType + + + + + HighLimit + + + + + LowLimit + + + + + Possible values for property LineFrequency + + + + + None + + + + + Value60Hz + + + + + Value50Hz + + + + + Set the type of distribution of frames on the individual links of an aggregation + + + + + No classification. + + + + + The distribution is based on a combination of the destination and source MAC address + + + + + The distribution is based on a combination of the destination and source IP address and MAC address + + + + + LinkAggregation Lacp Status + + + + + No classification. + + + + + Enables the sending of LACP frames + + + + + Disables the sending of LACP frames + + + + + LinkAggregation Port States + + + + + No classification. + + + + + Link aggregation is disabled. + + + + + The port sends LACP frames and is only involved in the link aggregation when LACP frames are received. + + + + + The port is only involved in the link aggregation when LACP frames are received. + + + + + The port is involved in the link aggregation and does not send any LACP frames. + + + + + Specify how the link aggregation is entered in a VLAN + + + + + No classification. + + + + + Access + + + + + The link aggregation only sends tagged frames and is automatically a member of all VLANs + + + + + The link aggregation sends tagged and untagged frames. It is not automatically a member of a VLAN + + + + + Possible values for property LoadType + + + + + ThreePhaseMotor + + + + + OnePhaseMotor + + + + + Possible values for property LowErrorLimit + + + + + Deactivated + + + + + Activated + + + + + Possible values for property LowLimitCurrent + + + + + None + + + + + Value18Dot75 + + + + + Value21Dot88 + + + + + Value25Dot00 + + + + + Value28Dot13 + + + + + Value31Dot25 + + + + + Value34Dot38 + + + + + Value37Dot50 + + + + + Value40Dot63 + + + + + Value43Dot75 + + + + + Value46Dot88 + + + + + Value50Dot00 + + + + + Value53Dot13 + + + + + Value56Dot25 + + + + + Value59Dot38 + + + + + Value62Dot50 + + + + + Value65Dot63 + + + + + Value68Dot75 + + + + + Value71Dot88 + + + + + Value75Dot00 + + + + + Value78Dot13 + + + + + Value81Dot25 + + + + + Value84Dot38 + + + + + Value87Dot50 + + + + + Value90Dot63 + + + + + Value93Dot75 + + + + + Value96Dot88 + + + + + Value100Dot00 + + + + + Possible values for property LowWarningLimit + + + + + Deactivated + + + + + Activated + + + + + Possible values for property LowerCurrentWarningLimit + + + + + None + + + + + Value18Dot75 + + + + + Value21Dot88 + + + + + Value25 + + + + + Value28Dot13 + + + + + Value31Dot25 + + + + + Value34Dot38 + + + + + Value37Dot50 + + + + + Value40Dot63 + + + + + Value43Dot75 + + + + + Value46Dot88 + + + + + Value50 + + + + + Value53Dot13 + + + + + Value56Dot25 + + + + + Value59Dot38 + + + + + Value62Dot50 + + + + + Value65Dot63 + + + + + Value68Dot75 + + + + + Value71Dot88 + + + + + Value75 + + + + + Value78Dot13 + + + + + Value81Dot25 + + + + + Value84Dot38 + + + + + Value87Dot50 + + + + + Value90Dot63 + + + + + Value93Dot75 + + + + + Value96Dot88 + + + + + Value100 + + + + + Possible values for property MacRtLicensePurchased + + + + + NoLicense + + + + + LicenseMacBasic + + + + + LicenseMacAdvanced + + + + + Possible values for property MainCountingDirection + + + + + None + + + + + Forward + + + + + Backward + + + + + Possible values for property MassFlowUnit + + + + + Default + + + + + KilogramPerSecond + + + + + KilogramPerMinute + + + + + KilogramPerHour + + + + + KilogramPerDay + + + + + MetricTonPerSecond + + + + + MetricTonPerMinute + + + + + MetricTonPerHour + + + + + MetricTonPerDay + + + + + PoundPerSecond + + + + + PoundPerMinute + + + + + PoundPerHour + + + + + PoundPerDay + + + + + TonPerSecond + + + + + TonPerMinute + + + + + TonPerHour + + + + + TonPerDay + + + + + TonUkPerSecond + + + + + TonUkPerMinute + + + + + TonUkPerHour + + + + + TonUkPerDay + + + + + OuncesPerSecond + + + + + OuncesPerMinute + + + + + OuncesPerHour + + + + + OuncesPerDay + + + + + Possible values for property MassValue + + + + + Af + + + + + Bbl + + + + + BblUs + + + + + BblBeer + + + + + Bu + + + + + Cl + + + + + CubicCm + + + + + CubicDm + + + + + FlOz + + + + + CubicFt + + + + + G + + + + + Gal + + + + + GalUk + + + + + Hl + + + + + CubicIn + + + + + Karat + + + + + Kg + + + + + Kl + + + + + L + + + + + Lb + + + + + LbT + + + + + CubicM + + + + + Mg + + + + + MegaG + + + + + CubicMiles + + + + + Ml + + + + + CubicMm + + + + + Nl + + + + + CubicNm + + + + + Oz + + + + + OzT + + + + + Pint + + + + + Quart + + + + + Scf + + + + + Sl + + + + + CubicSm + + + + + T + + + + + Ton + + + + + TonUk + + + + + CubicYd + + + + + Name of the Master Secret Protection Types + + + + + Master Secret feature is disabled + + + + + Master Secret feature is enabled and password configured + + + + + Master Secret feature is enabled and password yet to be configured + + + + + Possible values for property MaximumBufferedReceivedFrames + + + + + None + + + + + StandardFrame1PzdMinus2Or2 + + + + + Possible values for property MeasuredVariable + + + + + Frequency + + + + + PeriodDuration + + + + + Velocity + + + + + CompleteSsiFrame + + + + + Deactivated + + + + + Possible values for property MeasuringInput + + + + + None + + + + + DI1 + + + + + X11Clamp2 + + + + + X11Clamp3 + + + + + X11Clamp4 + + + + + X11Clamp5 + + + + + X11Clamp6 + + + + + X11Clamp7 + + + + + X11Clamp8 + + + + + X11Clamp11 + + + + + X11Clamp12 + + + + + X11Clamp13 + + + + + X11Clamp14 + + + + + X11Clamp15 + + + + + X11Clamp16 + + + + + X11Clamp17 + + + + + X11Clamp18 + + + + + X12Clamp1 + + + + + X12Clamp2 + + + + + X12Clamp3 + + + + + X12Clamp4 + + + + + X12Clamp5 + + + + + X12Clamp6 + + + + + X12Clamp7 + + + + + X12Clamp8 + + + + + X12Clamp11 + + + + + X12Clamp12 + + + + + X12Clamp13 + + + + + X12Clamp14 + + + + + X12Clamp15 + + + + + X12Clamp16 + + + + + X12Clamp17 + + + + + X12Clamp18 + + + + + X11Clamp1 + + + + + Possible values for property MeasuringRangeResolution + + + + + Deactivated + + + + + Value2DecimalPlaces + + + + + Value3DecimalPlaces + + + + + Possible values for property MeasuringTemperatureCoefficient + + + + + Deactivated + + + + + Pt0Dot003916 + + + + + Pt0Dot003902 + + + + + Pt0Dot003920 + + + + + Pt0Dot003851 + + + + + Pt0Dot003850Its90 + + + + + Pt0Dot00385055 + + + + + Ni0Dot006180 + + + + + Ni0Dot006720 + + + + + Pt0Dot003850 + + + + + LgNi0Dot005 + + + + + Pt0Dot003910 + + + + + Cu0Dot00427 + + + + + Cu0Dot00428 + + + + + Ni0Dot005000 + + + + + Cu0Dot00426 + + + + + Ni0Dot006170 + + + + + Media Redundancy Role + + + + + Media Redundancy Role: Not in ring + + + + + Media Redundancy Role: Manager + + + + + Media Redundancy Role: Client + + + + + Media Redundancy Role: Manager auto + + + + + Possible values for property MediumAttachmentType + + + + + None + + + + + Copper + + + + + FiberOptic + + + + + Possible values for property ModbusBaudRate + + + + + Auto + + + + + Value57Dot6Kbps + + + + + Value19Dot2Kbps + + + + + Value9Dot6Kbps + + + + + Value4Dot8Kbps + + + + + Value2Dot4Kbps + + + + + Value1Dot2Kbps + + + + + Value0Dot6Kbps + + + + + Value0Dot3Kbps + + + + + Possible values for property ModbusBaudRateDetected + + + + + Auto + + + + + Value57Dot6Kbps + + + + + Value19Dot2Kbps + + + + + Value9Dot6Kbps + + + + + Value4Dot8Kbps + + + + + Value2Dot4Kbps + + + + + Value1Dot2Kbps + + + + + Value0Dot6Kbps + + + + + Value0Dot3Kbps + + + + + Default + + + + + Possible values for property ModbusPortConfiguration + + + + + PortConfig8E1 + + + + + PortConfig8O1 + + + + + PortConfig8N2 + + + + + PortConfig8N1 + + + + + Possible values for property Mode + + + + + PositioningMode + + + + + TechnologyObject + + + + + Possible values for property ModuleDistribution + + + + + None + + + + + Value4SubmodulesWith1AnalogOutput + + + + + Value8SubmodulesWith1AnalogInput + + + + + Value4SubmodulesWith1AnalogInput2SubmodulesWith1AnalogOutput + + + + + Value2SubmodulesWith8DigitalInputs + + + + + Value4SubmodulesWith8DigitalInputs + + + + + Value2SubmodulesWith8DigitalInputs2SubmodulesWith8DigitalOutputs + + + + + Value2SubmodulesWith8DigitalOutputs + + + + + Value4SubmodulesWith8DigitalOutputs + + + + + Value2SubmodulesWith1AnalogOutput + + + + + Value8SubmodulesWith1AnalogOutput + + + + + Value2SubmodulesWith2DigitalOutputs + + + + + Value2SubmodulesWith4DigitalInputs + + + + + Value4SubmodulesWith2DigitalInputs + + + + + Value2SubmodulesWith4DigitalOutputs + + + + + Value4SubmodulesWith2DigitalOutputs + + + + + Value4SubmodulesWith1AnalogInput + + + + + Value9SubmodulesWith1AnalogInput + + + + + Value8SubmodulesWith8DigitalInputs + + + + + Value4SubmodulesWith8DigitalInputs4SubmodulesWith8DigitalOutputs + + + + + Value8SubmodulesWith8DigitalOutputs + + + + + Value2SubmodulesWith4AnalogInputs + + + + + Value1SubmoduleWith4AIsAnd1SubmoduleWith2AIsAnd2AIQs + + + + + Value4SubmodulesWith4DigitalOutputs + + + + + Possible values for property ModuleUseFromUserProgram + + + + + UseWithInstructionFromTimeBasedIoLibrary + + + + + UseWithTechnologyObjectMotionControl + + + + + Possible values for property ModuleVariant + + + + + Value32BytesIOr12BytesO + + + + + Value2BytesIOr2BytesO + + + + + UserSpecific + + + + + EeIndustryMeasuredDataProfileE0 + + + + + EeIndustryMeasuredDataProfileE1 + + + + + EeIndustryMeasuredDataProfileE2 + + + + + EeIndustryMeasuredDataProfileE3 + + + + + NormalOperation + + + + + PcMode + + + + + Possible values for property ModuloAxis + + + + + Deactivated + + + + + Active + + + + + Possible values for property MonitoringWindow + + + + + Value0Dot5 + + + + + Value1 + + + + + Value2 + + + + + Value3 + + + + + Value4 + + + + + Value5 + + + + + Value6 + + + + + Value7 + + + + + Value8 + + + + + Value9 + + + + + Value10 + + + + + Value11 + + + + + Value12 + + + + + Value13 + + + + + Value14 + + + + + Value15 + + + + + Value16 + + + + + Value17 + + + + + Value18 + + + + + Value19 + + + + + Value20 + + + + + Value21 + + + + + Value22 + + + + + Value23 + + + + + Value24 + + + + + Value25 + + + + + Value26 + + + + + Value27 + + + + + Value28 + + + + + Value29 + + + + + Value30 + + + + + Value31 + + + + + Value32 + + + + + Value33 + + + + + Value34 + + + + + Value35 + + + + + Value36 + + + + + Value37 + + + + + Value38 + + + + + Value39 + + + + + Value40 + + + + + Value41 + + + + + Value42 + + + + + Value43 + + + + + Value44 + + + + + Value45 + + + + + Value46 + + + + + Value47 + + + + + Value48 + + + + + Value49 + + + + + Value50 + + + + + Value51 + + + + + Value52 + + + + + Value53 + + + + + Value54 + + + + + Value55 + + + + + Value56 + + + + + Value57 + + + + + Value58 + + + + + Value59 + + + + + Value60 + + + + + Value61 + + + + + Value62 + + + + + Value63 + + + + + Value64 + + + + + Value65 + + + + + Value66 + + + + + Value67 + + + + + Value68 + + + + + Value69 + + + + + Value70 + + + + + Value71 + + + + + Value72 + + + + + Value73 + + + + + Value74 + + + + + Value75 + + + + + Value76 + + + + + Value77 + + + + + Value78 + + + + + Value79 + + + + + Value80 + + + + + Value81 + + + + + Value82 + + + + + Value83 + + + + + Value84 + + + + + Value85 + + + + + Value86 + + + + + Value87 + + + + + Value88 + + + + + Value89 + + + + + Value90 + + + + + Value91 + + + + + Value92 + + + + + Value93 + + + + + Value94 + + + + + Value95 + + + + + Value96 + + + + + Value97 + + + + + Value98 + + + + + Value99 + + + + + Value100 + + + + + Possible values for property MonoflopTime + + + + + Value16 + + + + + Value32 + + + + + Value48 + + + + + Value64 + + + + + Automatically + + + + + Possible values for property MotorHeating + + + + + Value0 + + + + + Value5 + + + + + Value10 + + + + + Value15 + + + + + Value20 + + + + + Value25 + + + + + Value30 + + + + + Value35 + + + + + Value40 + + + + + Value45 + + + + + Value50 + + + + + Value55 + + + + + Value60 + + + + + Value65 + + + + + Value70 + + + + + Value75 + + + + + Value80 + + + + + Value85 + + + + + Value90 + + + + + Value95 + + + + + Possible values for property MotorProtectionClass + + + + + None + + + + + Value5 + + + + + Value7 + + + + + Value10 + + + + + Value15 + + + + + Value20 + + + + + Value25 + + + + + Value30 + + + + + Value35 + + + + + Value40 + + + + + Possible values for property MotorProtectionReset + + + + + Manual + + + + + Auto + + + + + Possible values for property MotorProtectionResponseToPrewarning + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property MotorProtectionResponseToTripLevel + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property MotorProtectionStalledRotorResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property MotorProtectionTypeOfLoad + + + + + TriPhase + + + + + OnePhase + + + + + Possible values for property MotorProtectionUnbalanceResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Media Redundancy Protocol Domain + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Association of Network Interfaces + + + + + + Name of the Mrp Domain + + + + + + Composition of Mrp Domains + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create Mrp Domain on Subnet + + Name of Mrp Domain + Siemens.Engineering.HW.MrpDomain + + + + Finds a given Mrp Domain + + Name to find + Siemens.Engineering.HW.MrpDomain + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Address mapping between local and remote partner + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Local address of a transfer area + + + + + + Addresses of the transfer area + + + + + + EOM parent of this object + + + + + + Comment + + + + + + Transfer area data length + + + + + + Direction of data communication between local and partner device + + + + + + Name of the transfer area + + + + + + Partner transfer areas + + + + + + Transfer area type + + + + + + Association of multicastable transfer areas + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Composition of multicastable transfer areas + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create a transfer area + + The partner network interface + The type of the transfer area + Siemens.Engineering.HW.MulticastableTransferArea + + + + Create a transfer area + + The receiver network interface + The transfer area type + Siemens.Engineering.HW.MulticastableTransferArea + + + + Create transfer area + + The partner network interface + The type of the transfer area + The name of the transfer area + Siemens.Engineering.HW.MulticastableTransferArea + + + + Create a transfer area + + The partner network interface + The type of the transfer area + The name of the transfer area + The length of the transfer area + Siemens.Engineering.HW.MulticastableTransferArea + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Network type + + + + + The type of the network is unknown + + + + + The type of the network is Profibus. + + + + + The type of the network is MPI. + + + + + The type of the network is Ethernet. + + + + + The type of the network is ASi. + + + + + The type of the network is PtP. + + + + + Network Type: Link + + + + + The type of the network is PC internal + + + + + The type of the network is integrated Profibus. + + + + + The type of the network is Wide Area Network (WAN). + + + + + The type of the network is integrated Profidrive. + + + + + Possible values for property NeutralConductorCurrentTransformerSecondaryCurrent + + + + + None + + + + + Value1A + + + + + Value5A + + + + + Possible values for property NoValveVoltageOrEvsActive + + + + + Deactivated + + + + + Activated + + + + + Node is an object which is used as an interface from DeviceItem to Subnet + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Connects to the Subnet + + The subnet to be connected + + + + Create and connect to a subnet + + The name of the Subnet to create and connect + Siemens.Engineering.HW.Subnet + + + + Disconnects a device from the given Subnet + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The connected subnet + + + + + + The name of the node + + + + + + The id of this node + + + + + + Particular type e.g. Industrial Ethernet or Wireless LAN + + + + + + Associated nodes + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Composition of Nodes + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a given node + + The name of the Node instance to find + Siemens.Engineering.HW.Node + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Possible values for property NonVolatileElement1Type + + + + + NonInverting + + + + + Inverting + + + + + EdgeRisingWithMemory + + + + + EdgeFallingWithMemory + + + + + Possible values for property NonVolatileElement2Type + + + + + NonInverting + + + + + Inverting + + + + + EdgeRisingWithMemory + + + + + EdgeFallingWithMemory + + + + + Possible values for property NonVolatileElement3Type + + + + + NonInverting + + + + + Inverting + + + + + EdgeRisingWithMemory + + + + + EdgeFallingWithMemory + + + + + Possible values for property NonVolatileElement4Type + + + + + NonInverting + + + + + Inverting + + + + + EdgeRisingWithMemory + + + + + EdgeFallingWithMemory + + + + + Possible values for property NotchFilterActive + + + + + Active + + + + + Deactivated + + + + + Possible values for property NotificationsSnmpv1TrapsActive + + + + + Deactivated + + + + + Activated + + + + + Possible values for property NumberOfSequences + + + + + None + + + + + Value1 + + + + + Value2 + + + + + Value3 + + + + + Value4 + + + + + Possible values for property OPDFaults + + + + + DoNotDisplay + + + + + Display + + + + + Possible values for property OPDKeepIlluminationOnFor + + + + + Off + + + + + Value3Seconds + + + + + Value10Seconds + + + + + Value1Minute + + + + + Value5Minutes + + + + + Possible values for property OPDLanguage + + + + + English + + + + + German + + + + + French + + + + + Polish + + + + + Spanish + + + + + Portuguese + + + + + Italian + + + + + Suomi + + + + + Chinese + + + + + Russian + + + + + Language4Placeholder + + + + + Language5Placeholder + + + + + Language6Placeholder + + + + + Language7Placeholder + + + + + Language8Placeholder + + + + + Language9Placeholder + + + + + Possible values for property OPDProfiles + + + + + IL1IL2IL3A + + + + + IL1IL2IL3Percent + + + + + IMaxA + + + + + IMaxPercent + + + + + IMaxCos + + + + + IMaxUL1NCosS + + + + + IMaxUL1L2CosS + + + + + IMaxUL1NCosP + + + + + IMaxUL1L2CosP + + + + + In1AndOutAm1 + + + + + In2AndOutAm1 + + + + + InputsAm1 + + + + + In1AndOutAm2 + + + + + In2AndOutAm2 + + + + + InputsAm2 + + + + + MaxTempTm1C + + + + + TempTm1C + + + + + MaxTempTm1F + + + + + TempTm1F + + + + + MaxTempTm2C + + + + + TempTm2C + + + + + MaxTempTm2F + + + + + TempTm2F + + + + + UL1NUL2NUL3N + + + + + UL1L2UL2L3UL3L1 + + + + + IMaxUL1NCos + + + + + IMaxUL1L2Cos + + + + + IMaxUL1NC + + + + + IMaxUL1L2C + + + + + IMaxUL1nNF + + + + + IMaxUL1L2F + + + + + CalculatorModule1 + + + + + CalculatorModule2 + + + + + EnergyUsedKwh + + + + + Possible values for property OPDReturnToOperationsDisplayAfter + + + + + Manually + + + + + Value3Seconds + + + + + Value10Seconds + + + + + Value1Minute + + + + + Value5Minutes + + + + + Possible values for property OPDWarnings + + + + + DoNotDisplay + + + + + Display + + + + + Possible values for property OpcUaMinimumSamplingInterval + + + + + None + + + + + Value100 + + + + + Value250 + + + + + Value500 + + + + + Value1000 + + + + + Value5000 + + + + + Value10000 + + + + + Possible values for property OpcUaPurchasedLicense + + + + + NoLicense + + + + + SimaticOpcUaS71500Small + + + + + SimaticOpcUaS71500Medium + + + + + SimaticOpcUaS71500Large + + + + + OpcUaPlcForSinumerikOne + + + + + Possible values for property OpcUaRequiredLicense + + + + + NoLicense + + + + + SimaticOpcUaS71500Small + + + + + SimaticOpcUaS71500Medium + + + + + SimaticOpcUaS71500Large + + + + + Possible values for property OpcUaSecurityPolicies + + + + + None + + + + + OpcUaSecurityPoliciesNone + + + + + OpcUaSecurityPolicies128RSAS + + + + + OpcUaSecurityPolicies128RSASE + + + + + OpcUaSecurityPolicies256S + + + + + OpcUaSecurityPolicies256SE + + + + + OpcUaSecurityPolicies256SHAS + + + + + OpcUaSecurityPolicies256SHASE + + + + + OpcUaSecurityPolicies256RSAOAEPS + + + + + OpcUaSecurityPolicies256RSAOAEPSE + + + + + OpcUaSecurityPolicies256RSAPSSS + + + + + OpcUaSecurityPolicies256RSAPSSSE + + + + + Possible values for property OpcUaServerCertificateSettings + + + + + OpcUaCertificatesViaDownload + + + + + OpcUaCertificatesAtRuntime + + + + + Represents a OpcUa User Management object + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Set Password for OpcUa User + + Password of User + user password violates the security setting password policy + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the OpcUa User + + + + + + Composition of OpcUa Users + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates a OpcUa User + + Name of OpcUa User to be created + Password of User + Siemens.Engineering.HW.OpcUaUser + + + + Finds a given OpcUa User + + User Name to find + Siemens.Engineering.HW.OpcUaUser + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Possible values for property OperatingHoursMonitoringResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property OperatingMode + + + + + SlowMode + + + + + FastMode + + + + + CountContinuously + + + + + CountOnce + + + + + CountPeriodically + + + + + FrequencyMeasurement + + + + + Toggle1Hz + + + + + PulseWidthModulation + + + + + TimerDQ + + + + + None + + + + + Oversampling + + + + + PositioningWithDigitalOutputs + + + + + PositioningWithAnalogOutputs + + + + + FullDuplex4WireOperation + + + + + HalfDuplex2WireOperation + + + + + FullDuplex4WireOperationMultipointSlave + + + + + FullDuplex4WireOperationMultipointMaster + + + + + Counting + + + + + DiOversampling + + + + + FullDuplex4WireOperationPtPConnection + + + + + Toggle0Dot1Hz + + + + + Toggle0Dot5Hz + + + + + Toggle2Hz + + + + + WriteReadNeg + + + + + WriteRead + + + + + PeriodMeasurement + + + + + RotationalSpeedMeasurement + + + + + DosingMode + + + + + TimerDI + + + + + Value4ChannelsHardwareFilter + + + + + Value8ChannelsHardwareFilter + + + + + Value8ChannelsSoftwareFilter + + + + + Value2Channels + + + + + Value4Channels + + + + + Value8ARo + + + + + Value8ARoS + + + + + Measuring + + + + + PositionFeedback + + + + + CascadingFunction + + + + + DigitalInput + + + + + Trace + + + + + Control + + + + + HalfAndFullDuplex + + + + + DoOversampling + + + + + StandardMode + + + + + ButtonHga + + + + + Reserved2 + + + + + FillLevel + + + + + Window + + + + + ReflectionBarrier + + + + + Reserved6 + + + + + Reserved7 + + + + + AnalogMode + + + + + ElectronicShutdown + + + + + PhaseControlPhaseAngleProportional + + + + + PhaseControlPowerProportional + + + + + WavePacketControlFullWaves + + + + + WavePacketControlHalfWaves + + + + + ScalingMode + + + + + REALMode + + + + + ModularCamControl + + + + + ConstantCurrent + + + + + D + + + + + I + + + + + Id + + + + + P + + + + + Pd + + + + + Pi + + + + + Pid + + + + + PulseTrain + + + + + PulseOutput + + + + + OnOffDelay + + + + + FrequencyOutput + + + + + PwmWithDcMotor + + + + + Rs232c + + + + + MotionControl + + + + + Axis + + + + + PulseTrainABphaseshiftedFourfold + + + + + PulseTrainABphaseshifted + + + + + PulseTrainAcountupBcountdown + + + + + PulseTrainApulseBdirection + + + + + IncrementalEncoderABPhaseShifted + + + + + DigitalOutput + + + + + TechnologyObject + + + + + ManualOperation + + + + + Deactivated + + + + + OversamplingOutput + + + + + OversamplingInput + + + + + DigitalInputWith1CountChannel + + + + + DigitalInputWith2CountChannels + + + + + DigitalInputWith3CountChannels + + + + + DigitalInputWith4CountChannels + + + + + ISOMode + + + + + AnalogInput + + + + + AnalogOutput + + + + + Possible values for property OperatingRange + + + + + Deactivated + + + + + PlusMinus25mV + + + + + PlusMinus50mV + + + + + PlusMinus80mV + + + + + PlusMinus100mV + + + + + PlusMinus250mV + + + + + PlusMinus500mV + + + + + PlusMinus1V + + + + + PlusMinus2dot5V + + + + + PlusMinus5V + + + + + Value1To5V + + + + + PlusMinus10V + + + + + PlusMinus3dot2mA + + + + + PlusMinus5mA + + + + + PlusMinus10mA + + + + + Value0To20mA + + + + + Value4To20mA + + + + + PlusMinus20mA + + + + + Value1To5mA + + + + + Ni500ClimaticRange + + + + + TypeB + + + + + TypeN + + + + + TypeE + + + + + TypeR + + + + + TypeS + + + + + TypeJ + + + + + TypeL + + + + + TypeT + + + + + TypeK + + + + + TypeU + + + + + Value48Ohm + + + + + Value150Ohm + + + + + Value300Ohm + + + + + Value600Ohm + + + + + Value6KiloOhm + + + + + Ni100GostStandardRange + + + + + Pt100ClimaticRange + + + + + Pt200ClimaticRange + + + + + Pt500ClimaticRange + + + + + Pt1000ClimaticRange + + + + + Ni100ClimaticRange + + + + + Ni1000ClimaticRange + + + + + Pt100StandardRange + + + + + Pt200StandardRange + + + + + Pt500StandardRange + + + + + Pt1000StandardRange + + + + + Ni100StandardRange + + + + + Ni1000StandardRange + + + + + Value0To10V + + + + + PTC + + + + + Value3KiloOhm + + + + + Ni120ClimaticRange + + + + + Ni120StandardRange + + + + + Ni200ClimaticRange + + + + + Ni200StandardRange + + + + + Ni500StandardRange + + + + + LgNi1000ClimaticRange + + + + + LgNi1000StandardRange + + + + + Kty83slash110Silicon + + + + + Kty84slash130Silicon + + + + + TypeC + + + + + TypeTxKslashXKL + + + + + Cu10ClimaticRange + + + + + Cu10GostClimaticRange + + + + + Cu10GostStandardRange + + + + + Cu10StandardRange + + + + + Cu100GostClimaticRange + + + + + Cu100GostStandardRange + + + + + Cu50GostClimaticRange + + + + + Cu50GostStandardRange + + + + + Ni100GostClimaticRange + + + + + Pt10GostClimaticRange + + + + + Pt10GostStandardRange + + + + + Pt100GostClimaticRange + + + + + Pt100GostStandardRange + + + + + Pt50GostClimaticRange + + + + + Pt50GostStandardRange + + + + + Pt500GostClimaticRange + + + + + Pt500GostStandardRange + + + + + Value10KiloOhm + + + + + Value0To2V + + + + + Value1000Ohm + + + + + TypeTxkOrXkL + + + + + Cu100ClimaticRange + + + + + Cu100StandardRange + + + + + Cu50ClimaticRange + + + + + Cu50StandardRange + + + + + Ni10ClimaticRange + + + + + Ni10StandardRange + + + + + Pt10ClimaticRange + + + + + Pt10StandardRange + + + + + Pt50ClimaticRange + + + + + Pt50StandardRange + + + + + TypeTxk + + + + + Value0To10mA + + + + + Value4To20mAHART + + + + + Value100V + + + + + Value110V + + + + + Value115V + + + + + Value120V + + + + + Value127V + + + + + Value190V + + + + + Value200V + + + + + Value208V + + + + + Value220V + + + + + Value230V + + + + + Value240V + + + + + Value277V + + + + + Value12V + + + + + Value24V + + + + + Value300V + + + + + Possible values for property OperatingRangeOutput + + + + + Deactivated + + + + + PlusMinus20mA + + + + + Value0To10V + + + + + Value0To20mA + + + + + Value1To5V + + + + + Value4To20mA + + + + + PlusMinus10V + + + + + Possible values for property OperatingType + + + + + Deactivated + + + + + Voltage + + + + + Current + + + + + Current4WireTransducer + + + + + Current2WireTransducer + + + + + Resistor4Wire + + + + + Resistor3Wire + + + + + Resistor2Wire + + + + + ThermalResistor4Wire + + + + + ThermalResistor3Wire + + + + + Thermocouple + + + + + ThermocoupleExtComp + + + + + ThermocoupleIntCompLinear + + + + + ThermocoupleExtCompLinear + + + + + Resistance + + + + + RtdThermalResistorLinear + + + + + ThermocoupleIntComp + + + + + Thermocouple0CCompLinear + + + + + Thermocouple50CCompLinear + + + + + Hart + + + + + ThermalResistor2Wire + + + + + CountingOrPositionInput + + + + + Measuring + + + + + Voltage4WireStrainGaugeFullBridge + + + + + Voltage6WireStrainGaugeFullBridge + + + + + Possible values for property OperatingTypeAndRange + + + + + Deactivated + + + + + VoltagePlusMinus80mV + + + + + Current0To20mA + + + + + Current2WireTransducer4To20mA + + + + + Current4WireTransducerPlusMinus20mA + + + + + VoltagePlusMinus2dot5V + + + + + VoltagePlusMinus5V + + + + + Voltage1To5V + + + + + ThermocoupleTypeK + + + + + VoltagePlusMinus10V + + + + + Current4To20mA + + + + + CurrentPlusMinus20mA + + + + + ThermocoupleTypeB + + + + + ThermocoupleTypeE + + + + + ThermocoupleTypeJ + + + + + ThermocoupleTypeL + + + + + ThermocoupleTypeN + + + + + ThermocoupleTypeR + + + + + ThermocoupleTypeS + + + + + ThermocoupleTypeT + + + + + Current4WireTransducer4To20mA + + + + + ThermocoupleTypeC + + + + + Possible values for property OperatingTypeOutput + + + + + Deactivated + + + + + Voltage + + + + + Current + + + + + Possible values for property OperationalProtectionOffResponsePositioner + + + + + Closed + + + + + Open + + + + + Possible values for property OperationalProtectionOffStandardFunctionsType + + + + + NOContact + + + + + NCContact + + + + + Possible values for property OutputA + + + + + None + + + + + X11Clamp21 + + + + + X11Clamp22 + + + + + X11Clamp23 + + + + + X11Clamp24 + + + + + X11Clamp25 + + + + + X11Clamp26 + + + + + X11Clamp27 + + + + + X11Clamp28 + + + + + X11Clamp31 + + + + + X11Clamp32 + + + + + X11Clamp33 + + + + + X11Clamp34 + + + + + X11Clamp35 + + + + + X11Clamp36 + + + + + X11Clamp37 + + + + + X11Clamp38 + + + + + Possible values for property OutputB + + + + + None + + + + + X11Clamp21 + + + + + X11Clamp22 + + + + + X11Clamp23 + + + + + X11Clamp24 + + + + + X11Clamp25 + + + + + X11Clamp26 + + + + + X11Clamp27 + + + + + X11Clamp28 + + + + + X11Clamp31 + + + + + X11Clamp32 + + + + + X11Clamp33 + + + + + X11Clamp34 + + + + + X11Clamp35 + + + + + X11Clamp36 + + + + + X11Clamp37 + + + + + X11Clamp38 + + + + + Possible values for property OutputFilterDown + + + + + NoFilter + + + + + Value500ms + + + + + Value1s + + + + + Value5s + + + + + Value10s + + + + + Value30s + + + + + Value60s + + + + + Possible values for property OutputFilterUp + + + + + NoFilter + + + + + Value500ms + + + + + Value1s + + + + + Value5s + + + + + Value10s + + + + + Value30s + + + + + Value60s + + + + + Possible values for property ParameterAssignmentOfPnInterfaceByHigherLevelIoController + + + + + Deactivated + + + + + Active + + + + + Possible values for property ParameterSettings + + + + + Manual + + + + + FromTemplate + + + + + Possible values for property Parity + + + + + None + + + + + Odd + + + + + Even + + + + + Mark + + + + + Space + + + + + Any + + + + + Interface assignment type for assignable interfaces + + + + + None, or a different Windows setting + + + + + SIMATIC PC Station + + + + + Software Plc + + + + + Possible values for property PcStationType + + + + + NotInstalled + + + + + PcStationV1Dot0 + + + + + PcStationV2Dot0 + + + + + PcStationV2Dot1 + + + + + PcStationV2Dot2 + + + + + PcStationV2Dot3 + + + + + PcStationV2Dot4 + + + + + PcStationV2Dot7 + + + + + PcStationV2Dot8 + + + + + PcStationV2Dot9 + + + + + PcStationV3Dot0 + + + + + Possible values for property PhysicalQuantity + + + + + Deactivated + + + + + S7Format + + + + + Temperature + + + + + Pressure + + + + + Length + + + + + Flow + + + + + Brightness + + + + + Illuminance + + + + + Force + + + + + Torque + + + + + Mass + + + + + Current + + + + + Voltage + + + + + Power + + + + + Area + + + + + Volume + + + + + Angle + + + + + Viscosity + + + + + Speed + + + + + Velocity + + + + + Density + + + + + Frequency + + + + + Possible values for property PilotValve + + + + + Deactivated + + + + + Activated + + + + + Possible values for property PlatinL + + + + + NormallyClosedContact + + + + + NormallyOpenContact + + + + + X + + + + + Possible values for property PlatinM + + + + + Led + + + + + X + + + + + Possible values for property PlatinR + + + + + NormallyClosedContact + + + + + NormallyOpenContact + + + + + X + + + + + UMAC mode entries + + + + + Disabled : no change in accessing the PLC through AS(Automated System). + + + + + EnabledWithAccessControl : there wont be separate configuration for different modes of accessing the PLC like (AccessLevel,WebServer,OPCUA) . + + + + + EnabledWithAccessControlViaAccessLevel : there wont be separate configuration for different modes of accessing the PLC like (WebServer,OPCUA) however user can access the PLC through access level passwords. + + + + + Access Level entries -enum + + + + + No classification. + + + + + Full Access to all the functions. + + + + + Read access to all the functions. + + + + + HMI applications can access all the functions. + + + + + No access to any functions. + + + + + Full Access including fail safe to all the functions. + + + + + Name resolution via DNS + + + + + DNS configuration is deactivated + + + + + Set DNS servers in the project + + + + + Set DNS servers remotely(e.g. DHCP) + + + + + Set DNS servers directly at the device(e.g. PLC program, display) + + + + + Possible values for property PortBehaviour + + + + + ClassAPlusDiPin2 + + + + + ClassB + + + + + Possible values for property PortConfiguration + + + + + DigitalInput + + + + + DigitalOutput + + + + + IoLink1IOr1OPlusPqi + + + + + IoLink2IPlusPqi + + + + + IoLink2IOr2OPlusPqi + + + + + IoLink4IOr4OPlusPqi + + + + + IoLink8IOr8OPlusPqi + + + + + IoLink16IOr16OPlusPqi + + + + + IoLink32IOr32OPlusPqi + + + + + Deactivated + + + + + PortConfigurationSpecificValue + + + + + Possible values for property PortConfigurationSpecific + + + + + Empty + + + + + ValueEt200AlDi16 + + + + + ValueEt200AlDi8 + + + + + ValueEt200AlDq8 + + + + + Possible values for property PortCycleTime + + + + + Empty + + + + + Value1Dot6Milisecond + + + + + Value120Dot0Milisecond + + + + + Value20Dot8Milisecond + + + + + Value3Dot2Milisecond + + + + + Value4Dot8Milisecond + + + + + Value40Dot0Milisecond + + + + + Value8Dot0Milisecond + + + + + Value80Dot0Milisecond + + + + + AsFastAsPossible + + + + + Possible values for property PortMode + + + + + IoLinkAutostart + + + + + IoLinkManual + + + + + Possible values for property PortModePort1 + + + + + None + + + + + IoLinkManual + + + + + Di + + + + + Dq + + + + + Deactivated + + + + + IoLinkAutostart + + + + + Possible values for property PortModePort2 + + + + + None + + + + + IoLinkManual + + + + + Di + + + + + Dq + + + + + Deactivated + + + + + IoLinkAutostart + + + + + Possible values for property PortModePort3 + + + + + None + + + + + IoLinkManual + + + + + Di + + + + + Dq + + + + + Deactivated + + + + + IoLinkAutostart + + + + + Possible values for property PortModePort4 + + + + + None + + + + + IoLinkManual + + + + + Di + + + + + Dq + + + + + Deactivated + + + + + IoLinkAutostart + + + + + Possible values for property PortModePort5 + + + + + None + + + + + IoLinkManual + + + + + Di + + + + + Dq + + + + + Deactivated + + + + + IoLinkAutostart + + + + + Possible values for property PortModePort6 + + + + + None + + + + + IoLinkManual + + + + + Di + + + + + Dq + + + + + Deactivated + + + + + IoLinkAutostart + + + + + Possible values for property PortModePort7 + + + + + None + + + + + IoLinkManual + + + + + Di + + + + + Dq + + + + + Deactivated + + + + + IoLinkAutostart + + + + + Possible values for property PortModePort8 + + + + + None + + + + + IoLinkManual + + + + + Di + + + + + Dq + + + + + Deactivated + + + + + IoLinkAutostart + + + + + Possible values for property PortType + + + + + Deactivated + + + + + DigitalInput1 + + + + + DigitalOutput2 + + + + + IoLink1IOr1OPlusPqi + + + + + IoLink2IOr2QPlusPqi + + + + + IoLink2IOr2OPlusPqi + + + + + IoLink4IOr4OPlusPqi + + + + + IoLink16IOr16QPlusPqi + + + + + IoLink16IOr16OPlusPqi + + + + + Deactivated9 + + + + + DigitalInput + + + + + DigitalOutput + + + + + IoLink1IOr1QPlusPqi + + + + + IoLink2IPlusPqi + + + + + IoLink2IPlusPqi4 + + + + + IoLink32IOr32OPlusPqi + + + + + IoLink32IOr32QPlusPqi + + + + + IoLink4IOr4QPlusPqi + + + + + IoLink8IOr8OPlusPqi + + + + + IoLink8IOr8QPlusPqi + + + + + NotSet + + + + + Possible values for property PotentialGroup + + + + + DarkBaseUnit + + + + + LightBaseUnit + + + + + Possible values for property PowerConfigSignalLamp1 + + + + + NotCalculated + + + + + Red + + + + + Green + + + + + Orange + + + + + White + + + + + Blue + + + + + Possible values for property PowerConfigSignalLamp2 + + + + + NotCalculated + + + + + Multicolor + + + + + Red + + + + + Green + + + + + Orange + + + + + White + + + + + Blue + + + + + Possible values for property PowerConfigSignalLamp3 + + + + + NotCalculated + + + + + Multicolor + + + + + Red + + + + + Green + + + + + Orange + + + + + White + + + + + Blue + + + + + Possible values for property PowerConfigSignalLamp4 + + + + + NotCalculated + + + + + Multicolor + + + + + Red + + + + + Green + + + + + Orange + + + + + White + + + + + Blue + + + + + Possible values for property PowerConfigSirenOrSignalLamp + + + + + NotCalculated + + + + + Red + + + + + Green + + + + + Orange + + + + + White + + + + + Blue + + + + + Value2ToneSiren + + + + + Value8ToneSiren + + + + + Possible values for property PowerFailureMonitoringType + + + + + Deactivated + + + + + ServiceSupplyIsNotInterrupted + + + + + Possible values for property PreConfigurationForDIDQ + + + + + None + + + + + FreeParameterization + + + + + DI8AndDQ8 + + + + + DQ16 + + + + + Possible values for property PreferenceDirection + + + + + StandardDirection + + + + + InvertDirection + + + + + Possible values for property PressureIndicator + + + + + Deactivated + + + + + Permanent + + + + + AlternatingWithValveStatus + + + + + Possible values for property PressureMeasurement + + + + + Deactivated + + + + + Activated + + + + + Possible values for property PressureOutsideTheDefinedRangeActive + + + + + Deactivated + + + + + Activated + + + + + Possible values for property PressureUnit + + + + + Default + + + + + Pascals + + + + + GigaPascals + + + + + MegaPascals + + + + + KiloPascals + + + + + MilliPascals + + + + + MicroPascals + + + + + HectoPascals + + + + + Bars + + + + + MilliBars + + + + + MillimetersOfMercury + + + + + StandardAtmospheres + + + + + PoundsPerSquareInch + + + + + GramsForcePerSquareCentimeter + + + + + KilogramsForcePerSquareCentimeter + + + + + InchesOfWaterAt4Celcius + + + + + InchesOfWaterAt68Fahrenheit + + + + + MillimetersOfWaterAt4Celcius + + + + + MillimetersOfWaterAt68Fahrenheit + + + + + FeetOfWaterAt4Celcius + + + + + FeetOfWaterAt68Fahrenheit + + + + + InchesOfMercuryAt0Celcius + + + + + MillimetersOfMercuryAt0Celcius + + + + + Possible values for property PrewarningLimitForMotorHeating + + + + + Limit0 + + + + + Limit1 + + + + + Limit2 + + + + + Limit3 + + + + + Limit4 + + + + + Limit5 + + + + + Limit6 + + + + + Limit7 + + + + + Limit8 + + + + + Limit9 + + + + + Limit10 + + + + + Limit11 + + + + + Limit12 + + + + + Limit13 + + + + + Limit14 + + + + + Limit15 + + + + + Limit16 + + + + + Limit17 + + + + + Limit18 + + + + + Limit19 + + + + + Limit20 + + + + + Limit21 + + + + + Limit22 + + + + + Limit23 + + + + + Limit24 + + + + + Limit25 + + + + + Limit26 + + + + + Limit27 + + + + + Limit28 + + + + + Limit29 + + + + + Limit30 + + + + + Limit31 + + + + + Limit32 + + + + + Limit33 + + + + + Limit34 + + + + + Limit35 + + + + + Limit36 + + + + + Limit37 + + + + + Limit38 + + + + + Limit39 + + + + + Limit40 + + + + + Limit41 + + + + + Limit42 + + + + + Limit43 + + + + + Limit44 + + + + + Limit45 + + + + + Limit46 + + + + + Limit47 + + + + + Limit48 + + + + + Limit49 + + + + + Limit50 + + + + + Limit51 + + + + + Limit52 + + + + + Limit53 + + + + + Limit54 + + + + + Limit55 + + + + + Limit56 + + + + + Limit57 + + + + + Limit58 + + + + + Limit59 + + + + + Limit60 + + + + + Limit61 + + + + + Limit62 + + + + + Limit63 + + + + + Limit64 + + + + + Limit65 + + + + + Limit66 + + + + + Limit67 + + + + + Limit68 + + + + + Limit69 + + + + + Limit70 + + + + + Limit71 + + + + + Limit72 + + + + + Limit73 + + + + + Limit74 + + + + + Limit75 + + + + + Limit76 + + + + + Limit77 + + + + + Limit78 + + + + + Limit79 + + + + + Limit80 + + + + + Limit81 + + + + + Limit82 + + + + + Limit83 + + + + + Limit84 + + + + + Limit85 + + + + + Limit86 + + + + + Limit87 + + + + + Limit88 + + + + + Limit89 + + + + + Limit90 + + + + + Limit91 + + + + + Limit92 + + + + + Limit93 + + + + + Limit94 + + + + + Limit95 + + + + + Limit96 + + + + + Limit97 + + + + + Limit98 + + + + + Limit99 + + + + + Possible values for property Priority + + + + + Low + + + + + High + + + + + Possible values for property ProDiagUsedLicenses + + + + + NoLicense + + + + + Value1X + + + + + Value2X + + + + + Value3X + + + + + Value4X + + + + + Value5X + + + + + Possible values for property ProcessDataMode + + + + + Standard + + + + + Fragmented + + + + + Possible values for property ProcessDataVariant + + + + + Disable + + + + + UserSpecificUserDataHex01 + + + + + UserSpecificUserDataHex02 + + + + + Hex80 + + + + + EeIndustryMeasuredDataProfileE0Hex81 + + + + + EeIndustryMeasuredDataProfileE1Hex82 + + + + + EeIndustryMeasuredDataProfileE2Hex83 + + + + + EeIndustryMeasuredDataProfileE3Hex84 + + + + + SinglePhaseMeasurementL3WithVoltageScalingValueHex9A + + + + + BasicVariablesSinglePhaseMeasurementL3Hex9B + + + + + SinglePhaseMeasurementL2WithVoltageScalingValueHex9C + + + + + BasicVariablesSinglePhaseMeasurementL2Hex9D + + + + + SinglePhaseMeasurementL1WithVoltageScalingValueHex9E + + + + + BasicVariablesSinglePhaseMeasurementL1Hex9F + + + + + EeIndustryMeasuredDataProfileE0HexE0 + + + + + EeIndustryMeasuredDataProfileE1HexE1 + + + + + EeIndustryMeasuredDataProfileE2HexE2 + + + + + EeIndustryMeasuredDataProfileE3HexE3 + + + + + EnergyL1l2l3OverflowCounterHexEf + + + + + QualityValuesThreePhaseMeasurementL1l2l3HexF0 + + + + + ReactivePowerCompensationL1l2l3HexF4 + + + + + BasicVariablesThreePhaseMeasurementL1l2l3HexF5 + + + + + EnergyL3HexF6 + + + + + EnergyL2HexF7 + + + + + EnergyL1HexF8 + + + + + TotalEnergyL1l2l3HexF9 + + + + + BasicMeasuredValuesL1l2l3HexFa + + + + + ApparentPowerL1l2l3HexFb + + + + + ReactivePowersL1l2l3HexFc + + + + + ActivePowersL1l2l3HexFd + + + + + TotalPowersL1l2l3HexFe + + + + + Possible values for property ProcessValue + + + + + Mass + + + + + Volume + + + + + Standardvolume + + + + + TotalFraktionA + + + + + TotalFraktionB + + + + + Possible values for property ProtectionUnitForSummarizeOfSecurityEvents + + + + + None + + + + + Seconds + + + + + Minutes + + + + + Hours + + + + + Possible values for property ProtocolCompatibility + + + + + Mstp + + + + + Rstp + + + + + Stp + + + + + Possible values for property PulseOutput + + + + + None + + + + + X11Clamp21 + + + + + X11Clamp22 + + + + + X11Clamp23 + + + + + X11Clamp24 + + + + + X11Clamp25 + + + + + X11Clamp26 + + + + + X11Clamp27 + + + + + X11Clamp28 + + + + + X11Clamp31 + + + + + X11Clamp32 + + + + + X11Clamp33 + + + + + X11Clamp34 + + + + + X11Clamp35 + + + + + X11Clamp36 + + + + + X11Clamp37 + + + + + X11Clamp38 + + + + + Possible values for property PulsePauseOnReversalOfDirection + + + + + Value0Ms + + + + + Value1Ms + + + + + Value4Ms + + + + + Value10Ms + + + + + Possible values for property PulseStretching + + + + + None + + + + + Value0Dot5s + + + + + Value1s + + + + + Value2s + + + + + Value0Dot05s + + + + + Value0Dot1s + + + + + Value0Dot2s + + + + + Possible values for property PulseWidthModulationFrequency + + + + + None + + + + + Value01Kilohertz + + + + + Value02Kilohertz + + + + + Value04Kilohertz + + + + + Value08Kilohertz + + + + + Value16Kilohertz + + + + + Possible values for property PulseWidthModulationTimePeriod + + + + + Off + + + + + Value5ms + + + + + Value2ms + + + + + Value1ms + + + + + Value0Dot20ms + + + + + Value0Dot40ms + + + + + Value0Dot93ms + + + + + Value1Dot33ms + + + + + Value4Dot27ms + + + + + Value10Dot67ms + + + + + Value21Dot33ms + + + + + Value34Dot13ms + + + + + Value59Dot73ms + + + + + Value0Dot5ms + + + + + Value10ms + + + + + Possible values for property PwmOutputFormat + + + + + PerMil + + + + + S7AnalogValue + + + + + Possible values for property ReactionToCountingLimit + + + + + StopCounting + + + + + ContinueCounting + + + + + Possible values for property ReactionToCpuStop + + + + + OutputHasNoCurrentOrVoltage + + + + + KeepLastValue + + + + + SubstituteAValue + + + + + Stop + + + + + Continue + + + + + ExitActiveCommand + + + + + Shutdown + + + + + DoNotTurnOffOutputsAndContinueActiveProcess + + + + + StopSubstituteValueOutputToOutputsAndActiveProcesses + + + + + TurnOffOutputsAndStopActiveProcess + + + + + SubstituteValue1 + + + + + Deactivated + + + + + Set00h + + + + + SetFFh + + + + + ContinueOperation + + + + + OutputSubstituteValue + + + + + TurnOff + + + + + SubstituteValue0 + + + + + Outputsubstitutevalue1 + + + + + DisableAllOutputs + + + + + TakeOverFromTmFastApplication + + + + + Possible values for property ReactionToCpuStopforDQ1 + + + + + None + + + + + SubstituteValue + + + + + Continue + + + + + Possible values for property ReactionToError + + + + + SubstituteAValue + + + + + KeepLastValue + + + + + SubstituteValue0 + + + + + Possible values for property ReactionToGateStart + + + + + SetToStartValue + + + + + ContinueWithCurrentValue + + + + + Possible values for property ReactionToSignalN + + + + + NoReactionToSignalN + + + + + SynchronizationAtSignalN + + + + + CaptureAtSignalN + + + + + Possible values for property ReceiveLineInitialState + + + + + None + + + + + SignalRA5VSignalRB0VBreakDetection + + + + + SignalRA0VSignalRB5V + + + + + Possible values for property RedundancyMode + + + + + None + + + + + Redundancy mode S1 + + + + + Redundancy mode Switched S1 + + + + + Redundancy mode S2 + + + + + Redundancy mode S2 IDevice + + + + + Redundancy mode R1 + + + + + Redundancy mode R2 + + + + + Possible values for property ReferenceJunction + + + + + None + + + + + Yes + + + + + ReferenceChannelOfTheModule + + + + + InternalReferenceJunction + + + + + RTD + + + + + Deactivated + + + + + DynamicReferenceTemperature + + + + + FixedReferenceTemperature + + + + + ReferenceChannelOfGroup0 + + + + + ReferenceChannelOfGroup1 + + + + + ExternalReferenceJunction + + + + + ReferenceChannelOfGroup2 + + + + + ReferenceChannelOfGroup3 + + + + + ReferenceChannelOfTheModuleOnChannel8 + + + + + NoCompensation + + + + + Possible values for property ReferenceSwitchInput + + + + + None + + + + + X11Clamp1 + + + + + X11Clamp2 + + + + + X11Clamp3 + + + + + X11Clamp4 + + + + + X11Clamp5 + + + + + X11Clamp6 + + + + + X11Clamp7 + + + + + X11Clamp8 + + + + + X11Clamp11 + + + + + X11Clamp12 + + + + + X11Clamp13 + + + + + X11Clamp14 + + + + + X11Clamp15 + + + + + X11Clamp16 + + + + + X11Clamp17 + + + + + X11Clamp18 + + + + + X12Clamp16 + + + + + X12Clamp18 + + + + + Possible values for property RelationMeasuredVariable + + + + + Disable + + + + + LineConductor1 + + + + + LineConductor2 + + + + + LineConductor3 + + + + + NeutralConductor + + + + + Module + + + + + Possible values for property ResetWhenCountingLimitIsViolated + + + + + ToOppositeCountingLimit + + + + + ToStartValue + + + + + Possible values for property ResponseToOverload + + + + + ShutdownWithoutRestart + + + + + ShutdownWithRestart + + + + + Warn + + + + + Possible values for property ResponseToOvershoot + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property ResponseToPrewarning + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property ResponseToResidualCurrentDetection + + + + + Warn + + + + + Trip + + + + + Possible values for property ResponseToThermalMotorModelAtRestart + + + + + RestartWithLastValueOfThermalMotorModel + + + + + ResetThermalMotorModel + + + + + Possible values for property RetentiveDataMemoryUsage + + + + + PcMassStorage + + + + + NvramOfThePcSystem + + + + + Possible values for property ReverseCurrentDirection + + + + + Deactivated + + + + + Activated + + + + + Possible values for property RtClass + + + + + None + + + + + RT + + + + + IRT + + + + + Possible values for property RunCurrent + + + + + Value0 + + + + + CouldNotCalculateTheDynamicDisplayName + + + + + CouldNotCalculateTheDynamicDisplayName2 + + + + + CouldNotCalculateTheDynamicDisplayName3 + + + + + CouldNotCalculateTheDynamicDisplayName4 + + + + + CouldNotCalculateTheDynamicDisplayName5 + + + + + CouldNotCalculateTheDynamicDisplayName6 + + + + + CouldNotCalculateTheDynamicDisplayName7 + + + + + CouldNotCalculateTheDynamicDisplayName8 + + + + + CouldNotCalculateTheDynamicDisplayName9 + + + + + CouldNotCalculateTheDynamicDisplayName10 + + + + + CouldNotCalculateTheDynamicDisplayName11 + + + + + CouldNotCalculateTheDynamicDisplayName12 + + + + + CouldNotCalculateTheDynamicDisplayName13 + + + + + CouldNotCalculateTheDynamicDisplayName14 + + + + + CouldNotCalculateTheDynamicDisplayName15 + + + + + CouldNotCalculateTheDynamicDisplayName16 + + + + + CouldNotCalculateTheDynamicDisplayName17 + + + + + CouldNotCalculateTheDynamicDisplayName18 + + + + + CouldNotCalculateTheDynamicDisplayName19 + + + + + CouldNotCalculateTheDynamicDisplayName20 + + + + + CouldNotCalculateTheDynamicDisplayName21 + + + + + CouldNotCalculateTheDynamicDisplayName22 + + + + + CouldNotCalculateTheDynamicDisplayName23 + + + + + CouldNotCalculateTheDynamicDisplayName24 + + + + + CouldNotCalculateTheDynamicDisplayName25 + + + + + CouldNotCalculateTheDynamicDisplayName26 + + + + + CouldNotCalculateTheDynamicDisplayName27 + + + + + CouldNotCalculateTheDynamicDisplayName28 + + + + + CouldNotCalculateTheDynamicDisplayName29 + + + + + CouldNotCalculateTheDynamicDisplayName30 + + + + + CouldNotCalculateTheDynamicDisplayName31 + + + + + CouldNotCalculateTheDynamicDisplayName32 + + + + + CouldNotCalculateTheDynamicDisplayName33 + + + + + CouldNotCalculateTheDynamicDisplayName34 + + + + + CouldNotCalculateTheDynamicDisplayName35 + + + + + Possible values for property RunningCurrentIncreaseTime + + + + + Value1 + + + + + Value2 + + + + + Value4 + + + + + Value6 + + + + + Value8 + + + + + Value10 + + + + + Value12 + + + + + Value14 + + + + + Value16 + + + + + Value20 + + + + + Value40 + + + + + Value60 + + + + + Value100 + + + + + Value200 + + + + + Value500 + + + + + Value1000 + + + + + Possible values for property SafetyRelatedTrippingReset + + + + + Manual + + + + + Auto + + + + + Possible values for property SafetyRelatedTrippingResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property SelectLevel + + + + + ActiveWithHighLevel + + + + + ActiveWithLowLevel + + + + + AtFallingEdge + + + + + AtRisingEdge + + + + + Possible values for property SelectLevelDI0 + + + + + ActiveWithHighLevel + + + + + ActiveWithLowLevel + + + + + Possible values for property SelectLevelDI1 + + + + + ActiveWithHighLevel + + + + + ActiveWithLowLevel + + + + + Possible values for property SelectLevelDI2 + + + + + ActiveWithHighLevel + + + + + ActiveWithLowLevel + + + + + Possible values for property SensorType + + + + + DifferentialSignal5V + + + + + NamurSensor + + + + + SingleContactUnwired + + + + + SingleContactWiredWith10Kilohms + + + + + NamurChangeoverContact + + + + + ChangeoverUnwired + + + + + ChangeoverWiredWith10Kilohms + + + + + DiffuseSensor + + + + + RetroReflectiveSensor + + + + + SinkingOutput + + + + + SourcingOutput + + + + + PushPull + + + + + NoSensor + + + + + Ssi + + + + + Ttl + + + + + Stepper + + + + + Initiator24V + + + + + PulseAndDirection24V + + + + + TrackAPlusBPhaseShifted24V + + + + + InternalTimeBase1Mhz + + + + + PulseAndDirection82V + + + + + ChannelDisabled + + + + + Ssi13Bits + + + + + Ssi21Bits + + + + + Ssi25Bits + + + + + Ssi14Bits + + + + + Ssi15Bits + + + + + Ssi16Bits + + + + + Ssi17Bits + + + + + Ssi18Bits + + + + + Ssi19Bits + + + + + Ssi20Bits + + + + + Ssi22Bits + + + + + Ssi23Bits + + + + + Ssi24Bits + + + + + Standard + + + + + Hydrocarbon + + + + + Gas + + + + + Possible values for property SerialProtocolMode + + + + + None + + + + + UssMaster + + + + + Freeport + + + + + FreeportModbus + + + + + Modbus + + + + + Rk512 + + + + + Ascii + + + + + Value3964R + + + + + Printer + + + + + ModbusMaster + + + + + ModbusSlave + + + + + Possible values for property SetOutputDO + + + + + OffDqEqualTo0 + + + + + BetweenComparisonValueAndHighCountingLimit + + + + + BetweenComparisonValueAndLowCountingLimit + + + + + BetweenComparisonValueAndHighLimit + + + + + BetweenComparisonValueAndLowLimit + + + + + BetweenComparisonValue0And1 + + + + + NotBetweenComparisonValue0And1 + + + + + OffDqEqualTo1 + + + + + Deactivated + + + + + Possible values for property SetOutputDQ0 + + + + + UseByUserProgram + + + + + BetweenComparisonValue0AndHighLimit + + + + + BetweenComparisonValue0AndLowLimit + + + + + AtComparisonValue0ForAPulseDuration + + + + + AfterSetCommandFromCpuUntilCompValue0 + + + + + MeasuredValueLessthanEqualtoComparisonValue0 + + + + + MeasuredValueGeaterthanEqualtoComparisonValue0 + + + + + NoFunction + + + + + Possible values for property SetOutputDQ1 + + + + + UseByUserProgram + + + + + BetweenComparisonValue1AndHighLimit + + + + + BetweenComparisonValue1AndLowLimit + + + + + AtComparisonValue1ForAPulseDuration + + + + + BetweenComparisonValue0And1 + + + + + AfterSetCommandFromCpuUntilCompValue1 + + + + + MeasuredValueLessthanEqualtoComparisonValue1 + + + + + MeasuredValueGeaterthanEqualtoComparisonValue1 + + + + + NoFunction + + + + + NotBetweenComparisonValue0And1 + + + + + BetweenComparisonValueAndHighCounterValue + + + + + BetweenComparisonValueAndLowCounterValue + + + + + Possible values for property SharedDeviceCopyOfModule + + + + + None + + + + + Value1AdditionalCopyOfAnInput + + + + + Value2AdditionalCopiesOfAnInput + + + + + Value3AdditionalCopiesOfAnInput + + + + + Possible values for property SignalConditioning1Type + + + + + NonInverting + + + + + Inverting + + + + + EdgeRisingWithMemory + + + + + EdgeFallingWithMemory + + + + + Possible values for property SignalConditioning2Type + + + + + NonInverting + + + + + Inverting + + + + + EdgeRisingWithMemory + + + + + EdgeFallingWithMemory + + + + + Possible values for property SignalConditioning3Type + + + + + NonInverting + + + + + Inverting + + + + + EdgeRisingWithMemory + + + + + EdgeFallingWithMemory + + + + + Possible values for property SignalConditioning4Type + + + + + NonInverting + + + + + Inverting + + + + + EdgeRisingWithMemory + + + + + EdgeFallingWithMemory + + + + + Possible values for property SignalConditioning5Type + + + + + NonInverting + + + + + Inverting + + + + + EdgeRisingWithMemory + + + + + EdgeFallingWithMemory + + + + + Possible values for property SignalConditioning6Type + + + + + NonInverting + + + + + Inverting + + + + + EdgeRisingWithMemory + + + + + EdgeFallingWithMemory + + + + + Possible values for property SignalDelaySelection + + + + + None + + + + + CableLength + + + + + SignalDelayTime + + + + + Possible values for property SignalEvaluation + + + + + Single + + + + + Double + + + + + Quadruple + + + + + Possible values for property SignalInterface + + + + + Value24VAsymmetrical + + + + + Rs422SymmetricalOrTtl5VAsymmetrical + + + + + Possible values for property SignalSelectionForReferenceMark0 + + + + + SignalNOfIncrementalEncoder + + + + + Di0 + + + + + None + + + + + Possible values for property SignalType + + + + + PulseA + + + + + PulseAAndDirectionB + + + + + CountUpACountDownB + + + + + IncrementalEncoderABPhaseShifted + + + + + IncrementalEncoderABN + + + + + AbsoluteEncoderSsi + + + + + IncrementalEncoderABPhaseShiftedQuadruple + + + + + PulsePAndDirectionD + + + + + Possible values for property SimocodeAnalogConnections + + + + + NotConnected + + + + + FixedLevel + + + + + Timer1ActualValue + + + + + Timer2ActualValue + + + + + Timer3ActualValue + + + + + Timer4ActualValue + + + + + Counter1ActualValue + + + + + Counter2ActualValue + + + + + Counter3ActualValue + + + + + Counter4ActualValue + + + + + Counter5ActualValue + + + + + Counter6ActualValue + + + + + Timer5ActualValue + + + + + Timer6ActualValue + + + + + MaxCurrentIMaxPercentageOfIs + + + + + CurrentIL1PercentageOfIs + + + + + CurrentIL2PercentageOfIs + + + + + CurrentIL3PercentageOfIs + + + + + PhaseUnbalance + + + + + InternalGroundFaultGroundFaultCurrent + + + + + InternalGroundFaultLastTrippingCurrent + + + + + VoltageUMin + + + + + LineToLineVoltageUl1L2 + + + + + LineToLineVoltageUl2L3 + + + + + LineToLineVoltageUl3L1 + + + + + CosPhi + + + + + Frequency + + + + + NumberOfOverloadTrips + + + + + IntNumberOfOverloadTrips + + + + + ThermalMotorModel + + + + + TimeToTrip + + + + + RemainingCoolingDownPeriod + + + + + LastTripCurrentPercentageOfIs + + + + + TemperatureModule1MaxTemperature + + + + + TemperatureModule1Temperature1 + + + + + TemperatureModule1Temperature2 + + + + + TemperatureModule1Temperature3 + + + + + PermissibleStartsActualValue + + + + + StopTime + + + + + MonitoringIntervalForMandatoryTestingTimeUntilTest + + + + + EmLastTrippingCurrent + + + + + AnalogModule1Input1 + + + + + AnalogModule1Input2 + + + + + EmGroundFaultCurrent + + + + + AcyclicReceiveAnalogValue + + + + + CyclicReceiveAnalogValue + + + + + CyclicReceiveAnalogValue2 + + + + + NumberOfParameterizations + + + + + MotorOperatingHoursHWord + + + + + MotorOperatingHoursLWord + + + + + IntMotorOperatingHoursHWord + + + + + IntMotorOperatingHoursLWord + + + + + DeviceOperatingHoursHWord + + + + + DeviceOperatingHoursLWord + + + + + NumberOfStartsHWord + + + + + NumberOfStartsLWord + + + + + IntNumberOfStartsCwHWord + + + + + IntNumberOfStartsCwLWord + + + + + IntNumberOfStartsCcwHWord + + + + + IntNumberOfStartsCcwLWord + + + + + ConsumedEnergyHWord + + + + + ConsumedEnergyLWord + + + + + ExternalGroundFault3Uf7510GroundFaultCurrent + + + + + ActivePowerHWord + + + + + ActivePowerLWord + + + + + ApparentPowerHWord + + + + + ApparentPowerLWord + + + + + Calculator1Output + + + + + Calculator2Output + + + + + Calculator3Output + + + + + Calculator4Output + + + + + AnalogMultiplexerOutput + + + + + MaxCurrentIMax10Ma + + + + + CurrentIL110Ma + + + + + CurrentIL210Ma + + + + + CurrentIL310Ma + + + + + MaxCurrentIMax100Ma + + + + + CurrentIL1100Ma + + + + + CurrentIL2100Ma + + + + + CurrentIL3100Ma + + + + + TemperatureModule2MaxTemperature + + + + + TemperatureModule2Temperature1 + + + + + TemperatureModule2Temperature2 + + + + + TemperatureModule2Temperature3 + + + + + AnalogModule2Input1 + + + + + AnalogModule2Input2 + + + + + CyclicReceiveAnalogValue1 + + + + + OpcUaReceiveAnalogValue + + + + + PhaseVoltageUL1N + + + + + PhaseVoltageUL2N + + + + + PhaseVoltageUL3N + + + + + Possible values for property SimocodeDigitalConnections + + + + + NotConnected + + + + + FixedLevel0 + + + + + FixedLevel1 + + + + + EventAm2WarningLevelUpperLimit + + + + + EventAm2WarningLevelLowerLimit + + + + + EventAm2TripLevelUpperLimit + + + + + EventAm2TripLevelLowerLimit + + + + + BuTestOrResetButton + + + + + BuInput1 + + + + + BuInput2 + + + + + BuInput3 + + + + + BuInput4 + + + + + Dm1InputDMFL + + + + + Dm1Input2 + + + + + Dm1FeedbackCircuitDmfl + + + + + Dm1CascadingInput + + + + + Dm2Input1 + + + + + Dm2Input2 + + + + + Dm2Input3 + + + + + Dm2Input4 + + + + + Dm1SensorChannel1 + + + + + Dm1SensorChannel2 + + + + + EventTm2SensorFault + + + + + EventTm2OutOfRange + + + + + EventTm2WarningLevelUpperLimit + + + + + EventTm2TripLevelUpperLimit + + + + + OpTestOrResetButton + + + + + OpButton1 + + + + + OpButton2 + + + + + OpButton3 + + + + + OpButton4 + + + + + EventLimitMonitor5 + + + + + EventLimitMonitor6 + + + + + AcyclicReceiveByte0Bit0 + + + + + AcyclicReceiveByte0Bit1 + + + + + AcyclicReceiveByte0Bit2 + + + + + AcyclicReceiveByte0Bit3 + + + + + AcyclicReceiveByte0Bit4 + + + + + AcyclicReceiveByte0Bit5 + + + + + AcyclicReceiveByte0Bit6 + + + + + AcyclicReceiveByte0Bit7 + + + + + AcyclicReceiveByte1Bit0 + + + + + AcyclicReceiveByte1Bit1 + + + + + AcyclicReceiveByte1Bit2 + + + + + AcyclicReceiveByte1Bit3 + + + + + AcyclicReceiveByte1Bit4 + + + + + AcyclicReceiveByte1Bit5 + + + + + AcyclicReceiveByte1Bit6 + + + + + AcyclicReceiveByte1Bit7 + + + + + CyclicReceiveByte0Bit0 + + + + + CyclicReceiveByte0Bit1 + + + + + CyclicReceiveByte0Bit2 + + + + + CyclicReceiveByte0Bit3 + + + + + CyclicReceiveByte0Bit4 + + + + + CyclicReceiveByte0Bit5 + + + + + CyclicReceiveByte0Bit6 + + + + + CyclicReceiveByte0Bit7 + + + + + CyclicReceiveByte1Bit0 + + + + + CyclicReceiveByte1Bit1 + + + + + CyclicReceiveByte1Bit2 + + + + + CyclicReceiveByte1Bit3 + + + + + CyclicReceiveByte1Bit4 + + + + + CyclicReceiveByte1Bit5 + + + + + CyclicReceiveByte1Bit6 + + + + + CyclicReceiveByte1Bit7 + + + + + OnReverseFastEnabledControlCommand + + + + + OnReverseEnabledControlCommand + + + + + OffEnabledControlCommand + + + + + OnForwardEnabledControlCommand + + + + + OnForwardFastEnabledControlCommand + + + + + ContactorControl1Qe1 + + + + + ContactorControl2Qe2 + + + + + ContactorControl3Qe3 + + + + + ContactorControl4Qe4 + + + + + ContactorControl5Qe5 + + + + + DisplayQleReversefast + + + + + DisplayQleReverse + + + + + DisplayQlaOff + + + + + DisplayQleForward + + + + + DisplayQleForwardFast + + + + + DisplayQlsFault + + + + + StatusGroupFault + + + + + StatusGroupWarning + + + + + StatusDeviceOK + + + + + StatusBusOK + + + + + StatusPlcDcsInRun + + + + + StatusCurrentFlowing + + + + + StatusProfienergyCommandStartPausePending + + + + + StatusOnReverseFast + + + + + StatusOnReverse + + + + + StatusOff + + + + + StatusOnForward + + + + + StatusOnForwardFast + + + + + StatusStartActive + + + + + StatusInterlockingTimeActive + + + + + StatusChangeOverPauseActive + + + + + StatusPositionerRunsInOpenDirection + + + + + StatusPositionerRunsInClosedDirection + + + + + StatusFeedbackClosedFc + + + + + StatusFeedbackOpenFo + + + + + StatusTorqueClosedTc + + + + + StatusTorqueOpenTo + + + + + StatusTestPositionFeedback + + + + + StatusOperationalProtectionOff + + + + + StatusRemoteMode + + + + + StatusEmergencyStartExecuted + + + + + StatusCoolingDownPeriodActive + + + + + StatusPauseTimeActive + + + + + StatusDeviceTestActive + + + + + StatusPhaseSequence123 + + + + + StatusPhaseSequence321 + + + + + StatusEnablingCircuitClosed + + + + + EventPrewarningOverload + + + + + EventUnbalance + + + + + EventOverload + + + + + EventOverloadAndPhaseFailure + + + + + EventInternalGroundFault + + + + + EventExternalGroundFault + + + + + EventExternalGroundFaultWarning + + + + + EventThermistorTripLevel + + + + + EventThermistorShortCircuit + + + + + EventThermistorOpenCircuit + + + + + EventTm1WarningLevelUpperLimit + + + + + EventTm1TripLevelUpperLimit + + + + + EventTm1SensorFault + + + + + EventTm1OutOfRange + + + + + EventEmOpenCircuit + + + + + EventEmShortCircuit + + + + + EventWarningLevelIUpperLimit + + + + + EventWarningLevelILowerLimit + + + + + EventWarningLevelPUpperLimit + + + + + EventWarningLevelPLowerLimit + + + + + EventWarningLevelCosPhi + + + + + EventWarningLevelULowerLimit + + + + + EventAm1WarningLevelUpperLimit + + + + + EventAm1WarningLeveLowerLimit + + + + + EventTripLevelIUpperLimit + + + + + EventTripLevelILowerLimit + + + + + EventTripLevelPUpperLimit + + + + + EventTripLevelPLowerLimit + + + + + EventTripLevelCosPhi + + + + + EventTripLevelULowerLimit + + + + + EventAm1TripLevelUpperLimit + + + + + EventAm1TripLevelLowerLimit + + + + + EventStalledRotor + + + + + EventInternalGroundFaultWarning + + + + + EventNoStartPermitted + + + + + EventNumberOfStarts + + + + + EventJustOneStartPossible + + + + + EventMotorOperatingHours + + + + + EventStopTime + + + + + EventLimitMonitor1 + + + + + EventLimitMonitor2 + + + + + EventLimitMonitor3 + + + + + EventLimitMonitor4 + + + + + EventExternalFault1 + + + + + EventExternalFault2 + + + + + EventExternalFault3 + + + + + EventExternalFault4 + + + + + EventExternalFault5 + + + + + EventExternalFault6 + + + + + EventAm2OpenCircuit + + + + + EventAm1OpenCircuit + + + + + EventSafetyRelatedTripping + + + + + EventMonitoringPeriodForMandatoryTestingTestRequirement + + + + + EventTimestampfctActive + + + + + EventDmFLocalOK + + + + + EventProfisafeActive + + + + + EventConfiguredOperatorPanelMissing + + + + + WarningFeedbackCircuit + + + + + WarningSimultaneity + + + + + FaultHardwareFaultBasicUnit + + + + + FaultModuleFault + + + + + FaultTemporaryComponents + + + + + FaultConfigurationError + + + + + FaultParameterization + + + + + FaultBus + + + + + FaultPlcDcs + + + + + DryRunningProtectionTripLevel + + + + + FaultExecutionOnCommand + + + + + FaultExecutionStopCommand + + + + + FaultFeedbackOn + + + + + FaultFeedbackOff + + + + + FaultStalledPositioner + + + + + FaultDouble0 + + + + + FaultDouble1 + + + + + FaultEndPosition + + + + + FaultAntivalence + + + + + FaultTestPositionFeedback + + + + + FaultPowerFailure + + + + + FaultOperationalProtectionOff + + + + + SignalConditioning5Output + + + + + SignalConditioning6Output + + + + + TruthTable1Output + + + + + TruthTable2Output + + + + + TruthTable3Output + + + + + TruthTable4Output + + + + + TruthTable5Output + + + + + TruthTable6Output + + + + + TruthTable7Output + + + + + TruthTable8Output + + + + + TruthTable9Output1 + + + + + TruthTable9Output2 + + + + + TruthTable10Output + + + + + TruthTable11Output + + + + + Counter5Output + + + + + Counter6Output + + + + + Timer5Output + + + + + Timer6Output + + + + + Timer1Output + + + + + Timer2Output + + + + + Timer3Output + + + + + Timer4Output + + + + + Counter1Output + + + + + Counter2Output + + + + + Counter3Output + + + + + Counter4Output + + + + + Dm1FeedbackCircuitDmfp + + + + + Dm1Input1 + + + + + Dm1Input3 + + + + + Dm1Input4 + + + + + Dm1Start + + + + + NonVolatileElement2Output + + + + + NonVolatileElement3Output + + + + + NonVolatileElement4Output + + + + + Flashing1Output + + + + + Flashing2Output + + + + + Flashing3Output + + + + + Flicker1Output + + + + + Flicker2Output + + + + + Flicker3Output + + + + + NonVolatileElement1Output + + + + + CloseSolenoidValve + + + + + ClosePositioner + + + + + OpcUaReceiveByte0Bit0 + + + + + OpcUaReceiveByte0Bit1 + + + + + OpcUaReceiveByte0Bit2 + + + + + OpcUaReceiveByte0Bit3 + + + + + OpcUaReceiveByte0Bit4 + + + + + OpcUaReceiveByte0Bit5 + + + + + OpcUaReceiveByte0Bit6 + + + + + OpcUaReceiveByte0Bit7 + + + + + OpcUaReceiveByte1Bit0 + + + + + OpcUaReceiveByte1Bit1 + + + + + OpcUaReceiveByte1Bit2 + + + + + OpcUaReceiveByte1Bit3 + + + + + OpcUaReceiveByte1Bit4 + + + + + OpcUaReceiveByte1Bit5 + + + + + OpcUaReceiveByte1Bit6 + + + + + OpcUaReceiveByte1Bit7 + + + + + Open + + + + + PwmOutput + + + + + SignalConditioning1Output + + + + + SignalConditioning2Output + + + + + SignalConditioning3Output + + + + + SignalConditioning4Output + + + + + Stop + + + + + Represents a WebserverUser + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Set Password for Web server user + + Password of User + user password violates the security setting password policy + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + get and set user activation + + + + + + Represents webserver permission for WebserverUser + + + + + + The name of the WebServer User + + + + + + Represent list of Webserver Users + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a given webserver user + + Username of webserver user + Siemens.Engineering.HW.SimpleWebserverUser + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents Webserver User Permissions + + + + + reading access + + + + + reading access + + + + + read and write access + + + + + Possible values for property SizeLengthField + + + + + None + + + + + Value1 + + + + + Value2 + + + + + Value4 + + + + + Possible values for property Smoothing + + + + + None + + + + + Weak + + + + + Medium + + + + + Strong + + + + + Deactivated + + + + + Value2x + + + + + Value4x + + + + + Value8x + + + + + Value16x + + + + + Value32x + + + + + Value64x + + + + + Activated50Hertz + + + + + Activated60Hertz + + + + + Possible values for property Snmpv1Orv2cReadOnly + + + + + Deactivated + + + + + Active + + + + + Possible values for property Snmpv1TrapsActive + + + + + Deactivated + + + + + Active + + + + + Represents a base class of an object containing software components + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the software base + + + + + + Possible values for property SoundVelocityUnit + + + + + Default + + + + + MetersPerSecond + + + + + MilliMetersPerSecond + + + + + MetersPerHoure + + + + + KiloMetersPerHoure + + + + + Knots + + + + + InchesPerSecond + + + + + FeetPerSecond + + + + + YardsPerSecond + + + + + InchesPerMinute + + + + + FeetPerMinute + + + + + YardsPerMinute + + + + + InchesPerHour + + + + + FeetPerHour + + + + + YardsPerHour + + + + + MilesPerHour + + + + + Network type + + + + + The type of the network is Manual + + + + + The type of the network is AutomaticMinimum. + + + + + The type of the network is LocalSendClock. + + + + + The type of the network is ProfinetSendClock. + + + + + Possible values for property StandardVolumeFlow + + + + + NormLiterPerDay + + + + + NormLiterPerHour + + + + + NormLiterPerMinute + + + + + NormLiterPerSecond + + + + + NormCubicMeterPerDay + + + + + NormCubicMeterPerHour + + + + + NormCubicMeterPerMinute + + + + + NormCubicMeterPerSecond + + + + + ScfPerDay + + + + + ScfPerHour + + + + + ScfPerMinute + + + + + ScfPerSecond + + + + + StandardLiterPerDay + + + + + StandardLiterPerHour + + + + + StandardLiterPerMinute + + + + + StandardLiterPerSecond + + + + + StandardCubicMeterPerDay + + + + + StandardCubicMeterPerHour + + + + + StandardCubicMeterPerMinute + + + + + StandardCubicMeterPerSecond + + + + + Possible values for property StandardVolumeUnit + + + + + Nl + + + + + CubicNm + + + + + Scf + + + + + Sl + + + + + CubicSm + + + + + Possible values for property StartDetectionOfAReceivedFrame + + + + + StartOnSpecialCondition + + + + + StartOnAnyCharacter + + + + + Possible values for property StartupActionAfterPowerOn + + + + + NoRestartRemainInStopMode + + + + + WarmRestartRun + + + + + ColdRestart + + + + + WarmRestartOperatingModeBeforePowerOff + + + + + WarmRestart + + + + + HotRestart + + + + + Possible values for property StartupComparisonPresetToActualModule + + + + + FromCpu + + + + + StartupCpuOnlyIfCompatible + + + + + StartupCpuIfMismatch + + + + + Possible values for property StartupDelay + + + + + NoDelay + + + + + Value100ms + + + + + Value1s + + + + + Value2s + + + + + Value3s + + + + + Value4s + + + + + Value5s + + + + + Value10s + + + + + Possible values for property StateSignalFailureActive + + + + + SignalFailureOff + + + + + SignalFailureOn + + + + + Possible values for property StateSignalFunctionControlActive + + + + + SignalFunctionControlOff + + + + + SignalFunctionControlOn + + + + + Possible values for property StateSignalMaintenanceActive + + + + + SignalMaintainceOff + + + + + SignalMaintainceOn + + + + + Possible values for property StateSignalOutOfSpecificationActive + + + + + OutOfSpecificationOff + + + + + OutOfSpecificationOn + + + + + Possible values for property StepResolution + + + + + Value1Or1 + + + + + Value1Or2 + + + + + Value1Or4 + + + + + Value1Or8 + + + + + Value1Or16 + + + + + Value1Or32 + + + + + Value1Or64 + + + + + Value1Or128 + + + + + Value1Or256 + + + + + Value1Or10 + + + + + Value1Or25 + + + + + Value1Or20 + + + + + Value1Or5 + + + + + Value1Or512 + + + + + Possible values for property StopBits + + + + + None + + + + + Value1 + + + + + Value2 + + + + + Possible values for property StopCurrent + + + + + Value0 + + + + + CouldNotCalculateTheDynamicDisplayName + + + + + CouldNotCalculateTheDynamicDisplayName2 + + + + + CouldNotCalculateTheDynamicDisplayName3 + + + + + CouldNotCalculateTheDynamicDisplayName4 + + + + + CouldNotCalculateTheDynamicDisplayName5 + + + + + CouldNotCalculateTheDynamicDisplayName6 + + + + + CouldNotCalculateTheDynamicDisplayName7 + + + + + CouldNotCalculateTheDynamicDisplayName8 + + + + + CouldNotCalculateTheDynamicDisplayName9 + + + + + CouldNotCalculateTheDynamicDisplayName10 + + + + + CouldNotCalculateTheDynamicDisplayName11 + + + + + CouldNotCalculateTheDynamicDisplayName12 + + + + + CouldNotCalculateTheDynamicDisplayName13 + + + + + CouldNotCalculateTheDynamicDisplayName14 + + + + + CouldNotCalculateTheDynamicDisplayName15 + + + + + CouldNotCalculateTheDynamicDisplayName16 + + + + + CouldNotCalculateTheDynamicDisplayName17 + + + + + CouldNotCalculateTheDynamicDisplayName18 + + + + + CouldNotCalculateTheDynamicDisplayName19 + + + + + CouldNotCalculateTheDynamicDisplayName20 + + + + + CouldNotCalculateTheDynamicDisplayName21 + + + + + CouldNotCalculateTheDynamicDisplayName22 + + + + + CouldNotCalculateTheDynamicDisplayName23 + + + + + CouldNotCalculateTheDynamicDisplayName24 + + + + + CouldNotCalculateTheDynamicDisplayName25 + + + + + CouldNotCalculateTheDynamicDisplayName26 + + + + + CouldNotCalculateTheDynamicDisplayName27 + + + + + CouldNotCalculateTheDynamicDisplayName28 + + + + + CouldNotCalculateTheDynamicDisplayName29 + + + + + CouldNotCalculateTheDynamicDisplayName30 + + + + + CouldNotCalculateTheDynamicDisplayName31 + + + + + CouldNotCalculateTheDynamicDisplayName32 + + + + + CouldNotCalculateTheDynamicDisplayName33 + + + + + CouldNotCalculateTheDynamicDisplayName34 + + + + + CouldNotCalculateTheDynamicDisplayName35 + + + + + Possible values for property StopTimeOperatingHoursMonitoringResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property SubCategory + + + + + None + + + + + LineConductorCurrent + + + + + NeutralConductorCurrent + + + + + LineToNeutralVoltageLN + + + + + LineToLineVoltageLL + + + + + ApparentPowers + + + + + ActivePowers + + + + + ReactivePowers + + + + + PowerFactorsOrPhaseAngle + + + + + ApparentEnergies + + + + + ActiveEnergies + + + + + ReactiveEnergies + + + + + MeasuredVariableRelatedQualityData + + + + + General + + + + + LimitMonitoring + + + + + Frequencies + + + + + OperatingHoursCounter + + + + + Times + + + + + PowerFactors + + + + + PhaseAngles + + + + + ActiveFactorsCosPhi + + + + + Asymmetries + + + + + TotalHarmonicDistortions + + + + + Qualifier + + + + + HarmonicOfTheLineToNeutralVoltageLN + + + + + HarmonicOfTheLineConductorCurrent + + + + + Possible values for property SubmoduleSlotNumber + + + + + If1 + + + + + If2 + + + + + If3 + + + + + If4 + + + + + Represents a Subnet, one of the following (SubnetMpi or SubnetIE) represents the net object + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Associated IO systems + + + + + + The name of the Subnet + + + + + + Particular subnet net type + + + + + + Associated nodes + + + + + + The type identifier of this Subnet + + + + + + Composition of Subnets + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create subnet from MasterCopy + + The source MasterCopy + Siemens.Engineering.HW.Subnet + + + + Creates a Subnet + + Type identifier of the Subnet to be created + Name of Subnet to be created + Siemens.Engineering.HW.Subnet + + + + Finds a given Subnet + + Name to find + Siemens.Engineering.HW.Subnet + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Possible values for property SubnetsOverviewInterVlanRouting + + + + + Deactivated + + + + + Active + + + + + Possible values for property SubstituteValue + + + + + Value0 + + + + + Value1 + + + + + Possible values for property SubstituteValueDQ0 + + + + + Value0 + + + + + Value1 + + + + + Possible values for property SubstituteValueDQ1 + + + + + Value0 + + + + + Value1 + + + + + Possible values for property SubstituteValueDQ4 + + + + + Value0 + + + + + Value1 + + + + + Possible values for property SubstituteValueDQ6 + + + + + Value0 + + + + + Value1 + + + + + Possible values for property SubstituteValueDQA + + + + + Value0 + + + + + Value1 + + + + + Possible values for property SubstituteValueDQB + + + + + Value0 + + + + + Value1 + + + + + Possible values for property SupplyVoltage + + + + + NoConnectionToSupplyVoltageLPlus + + + + + ConnectionToSupplyVoltageLPlus + + + + + Possible values for property SwitchingCycleCounterActuatorInclDiagnostics + + + + + Deactivated + + + + + Activated + + + + + Possible values for property SwitchingCycleCounterPilotValveInclDiagnostics + + + + + Deactivated + + + + + Activated + + + + + Possible values for property SwitchingFrequencyOverdrive + + + + + Value1 + + + + + Value2 + + + + + Value4 + + + + + Value8 + + + + + Value10 + + + + + Value15 + + + + + Value20 + + + + + OverdriveOff + + + + + Sync Domain + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Converted name of the Sync Domain + + + + + + Association of Sync Domain Participants + + + + + + Default state of the Sync Domain + + + + + + Name of the Sync Domain + + + + + + Composition of Sync Domains + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create Sync Domain on Subnet + + Name of Sync Domain + Siemens.Engineering.HW.SyncDomain + + + + Finds a given Sync Domain + + Name to find + Siemens.Engineering.HW.SyncDomain + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Possible values for property SyncRole + + + + + NotSynchronized + + + + + SyncMaster + + + + + SyncSlave + + + + + RedundantSyncMaster + + + + + Possible values for property SynchronizationFrequency + + + + + Once + + + + + Periodic + + + + + Represents types of transport protocol for system logging. + + + + + None + + + + + TLSServerAndClientAuthentication + + + + + TLSOnlyServerAuthentication + + + + + UDP + + + + + Possible values for property SyslogClientActive + + + + + Deactivated + + + + + Active + + + + + Possible values for property SystemPowerSupplyExternal + + + + + NoConnectionToExternal24VSupply + + + + + ConnectionToExternal24VSupply + + + + + Possible values for property TM1InputsActiveSensors + + + + + Value1Sensor + + + + + Value2Sensors + + + + + Value3Sensors + + + + + Possible values for property TM1InputsResponseToSensorFaultOutOfRange + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property TM1InputsSensorType + + + + + Pt100 + + + + + Pt1000 + + + + + Kty83 + + + + + Kty84 + + + + + Ntc + + + + + Possible values for property TM1TripLevelResponse + + + + + None + + + + + Signal + + + + + Trip + + + + + Possible values for property TM1WarningLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property TM2InputsActiveSensors + + + + + Value1Sensor + + + + + Value2Sensors + + + + + Value3Sensors + + + + + Possible values for property TM2InputsResponseToSensorFaultOutOfRange + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property TM2InputsSensorType + + + + + Pt100 + + + + + Pt1000 + + + + + Kty83 + + + + + Kty84 + + + + + Ntc + + + + + Possible values for property TM2TripLevelResponse + + + + + None + + + + + Signal + + + + + Trip + + + + + Possible values for property TM2WarningLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property TemperatureShutdown + + + + + OutputActiveEvenUnderOvertemperatureConditions + + + + + OutputDisabledUnderOvertemperatureConditions + + + + + Possible values for property TemperatureUnit + + + + + Deactivated + + + + + DegreesCelsius + + + + + DegreesFahrenheit + + + + + Kelvin + + + + + Rankine + + + + + Possible values for property Terminal0Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal16Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal17Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal18Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal19Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal1Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal20Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal21Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal22Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal23Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal24Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal25Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal26Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal27Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal28Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal29Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal2Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal30Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal31Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal3Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal4Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal5Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal6Function + + + + + Input + + + + + Output + + + + + Possible values for property Terminal7Function + + + + + Input + + + + + Output + + + + + Possible values for property TestPositionFeedbackTPFStandardFunctionsType + + + + + NOContact + + + + + NCContact + + + + + Possible values for property TestResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property ThermistorResponseToSensorFault + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property ThermistorResponseToTripLevel + + + + + None + + + + + Signal + + + + + Warn + + + + + Trip + + + + + Possible values for property TimeBaseForVelocityMeasurement + + + + + Value1ms + + + + + Value10ms + + + + + Value100ms + + + + + Value1s + + + + + Value60sOr1m + + + + + Possible values for property TimeOfDayDaylightSavingTimeStartHour + + + + + Midnight + + + + + Value0100AM + + + + + Value0200AM + + + + + Value0300AM + + + + + Value0400AM + + + + + Value0500AM + + + + + Value0600AM + + + + + Value0700AM + + + + + Value0800AM + + + + + Value0900AM + + + + + Value1000AM + + + + + Value1100AM + + + + + Value1200PM + + + + + Value0100PM + + + + + Value0200PM + + + + + Value0300PM + + + + + Value0400PM + + + + + Value0500PM + + + + + Value0600PM + + + + + Value0700PM + + + + + Value0800PM + + + + + Value0900PM + + + + + Value1000PM + + + + + Value1100PM + + + + + Possible values for property TimeOfDayDaylightSavingTimeStartMonth + + + + + None + + + + + January + + + + + February + + + + + March + + + + + April + + + + + May + + + + + June + + + + + July + + + + + August + + + + + September + + + + + October + + + + + November + + + + + December + + + + + Possible values for property TimeOfDayDaylightSavingTimeStartWeek + + + + + None + + + + + First + + + + + Second + + + + + Third + + + + + Fourth + + + + + Last + + + + + Possible values for property TimeOfDayDaylightSavingTimeStartWeekday + + + + + None + + + + + Sunday + + + + + Monday + + + + + Tuesday + + + + + Wednesday + + + + + Thursday + + + + + Friday + + + + + Saturday + + + + + Possible values for property TimeOfDayLocalTimeZone + + + + + UtcMinus1200EniwetokKwajalein + + + + + UtcPlus1300Samoa + + + + + UtcMinus1000Hawaii + + + + + UtcMinus0900Alaska + + + + + UtcMinus0800TijuanaLosAngelesSeattleVancouver + + + + + UtcMinus0700Arizona + + + + + UtcMinus0700MountainStandardTimeUsaCanada + + + + + UtcMinus0600CentralStandardTimeUsaCanada + + + + + UtcMinus0600GuadalajaraMexicoCityMonterrey + + + + + UtcMinus0600Saskatchewan + + + + + UtcMinus0500BogotaLimaQuito + + + + + UtcMinus0500EasternStandardTimeUsaCanada + + + + + UtcMinus0500IndianaEast + + + + + UtcMinus0430Caracas + + + + + UtcMinus0400GeorgetownLaPazManausSanJuan + + + + + UtcMinus0330Newfoundland + + + + + UtcMinus0300Brasilia + + + + + UtcMinus0300BuenosAires + + + + + UtcMinus0200MidMinusatlanticMinusOld + + + + + UtcMinus0100Azores + + + + + UtcMinus0100CapeVerde + + + + + UtcCasablanca + + + + + UtcDublinEdinburghLisbonLondon + + + + + UtcMonroviaReykjavik + + + + + UtcPlus0100AmsterdamBerlinBernRomeStockholmVienna + + + + + UtcPlus0100BrusselsCopenhagenMadridParis + + + + + UtcPlus0100SarajevoSkopjeWarsawZagreb + + + + + UtcPlus0100BelgradeBratislavaBudapestLjubljanaPrague + + + + + UtcPlus0200AthensBucharest + + + + + UtcPlus0200HararePretoria + + + + + UtcPlus0200Jerusalem + + + + + UtcPlus0200Cairo + + + + + UtcPlus0200HelsinkiKievRigaSofiaTallinnWilna + + + + + UtcPlus0200EasternEurope + + + + + UtcPlus0200Istanbul + + + + + UtcPlus0300Baghdad + + + + + UtcPlus0300KuwaitRiyadh + + + + + UtcPlus0300Nairobi + + + + + UtcPlus0330Teheran + + + + + UtcPlus0300Qatar + + + + + UtcPlus0400AbuDhabiMuscat + + + + + UtcPlus0400Baku + + + + + UtcPlus0400Tbilisi + + + + + UtcPlus0430Kabul + + + + + UtcPlus0500IslamabadKarachi + + + + + UtcPlus0500AshgabatTashkent + + + + + UtcPlus0530MumbaiKolkataChennaiNewDelhi + + + + + UtcPlus0545Nepal + + + + + UtcPlus0600Astana + + + + + UtcPlus0630YangonRangoon + + + + + UtcPlus0700BangkokHanoiJakarta + + + + + UtcPlus0800BeijingChongqingHongKongUrumchi + + + + + UtcPlus0800Perth + + + + + UtcPlus0900Irkutsk + + + + + UtcPlus0930AdelaideDarwin + + + + + UtcPlus0930Darwin + + + + + UtcPlus1000BrisbaneCanberraMelbourneSydney + + + + + UtcPlus1000CanberraMelbourneSydney + + + + + UtcPlus1000GuamPortMoresby + + + + + UtcPlus1000Hobart + + + + + UtcPlus1100SolomonIslandsNewCaledonia + + + + + UtcPlus1100Vladivostok + + + + + UtcPlus1200AucklandWellington + + + + + UtcPlus1100Magadan + + + + + UtcPlus1200Fiji + + + + + UtcMinus1100MidwayIslands + + + + + UtcMinus0700ChihuahuaLaPazMazatlan + + + + + UtcMinus0600CentralAmerica + + + + + UtcMinus0400Asuncion + + + + + UtcMinus0400AtlanticStandardTimeCanada + + + + + UtcMinus0400Cuiaba + + + + + UtcMinus0400Santiago + + + + + UtcMinus0300CayenneFortaleza + + + + + UtcMinus0300Greenland + + + + + UtcMinus0300Montevideo + + + + + UtcMinus0300Salvador + + + + + UtcMinus0200MidMinusatlantic + + + + + UtcCoordinatedUniversalTime + + + + + UtcPlus0100TripoliOld + + + + + UtcPlus0100WestCentralAfrica + + + + + UtcPlus0100Windhoek + + + + + UtcPlus0200Beirut + + + + + UtcPlus0200Damascus + + + + + UtcPlus0300AmmanOld + + + + + UtcPlus0300KaliningradMinsk + + + + + UtcPlus0400Yerevan + + + + + UtcPlus0400PortLouis + + + + + UtcPlus0530SriJayawardenepura + + + + + UtcPlus0600Daka + + + + + UtcPlus0600Yekaterinburg + + + + + UtcPlus0700Novosibirsk + + + + + UtcPlus0800Krasnoyarsk + + + + + UtcPlus0800KualaLumpurSingapore + + + + + UtcPlus0800Taipei + + + + + UtcPlus0800UlaanbaatarUlanBator + + + + + UtcPlus0900OsakaSapporoTokyo + + + + + UtcPlus0900Seoul + + + + + UtcPlus1000Yakutsk + + + + + UtcPlus1200CoordinatedUniversalTimePlus12 + + + + + UtcPlus1300Nukualofa + + + + + UtcPlus0100Tripoli + + + + + UtcPlus0300Amman + + + + + Possible values for property TimeOfDayStandardTimeStartHour + + + + + Midnight + + + + + Value0100AM + + + + + Value0200AM + + + + + Value0300AM + + + + + Value0400AM + + + + + Value0500AM + + + + + Value0600AM + + + + + Value0700AM + + + + + Value0800AM + + + + + Value0900AM + + + + + Value1000AM + + + + + Value1100AM + + + + + Value1200PM + + + + + Value0100PM + + + + + Value0200PM + + + + + Value0300PM + + + + + Value0400PM + + + + + Value0500PM + + + + + Value0600PM + + + + + Value0700PM + + + + + Value0800PM + + + + + Value0900PM + + + + + Value1000PM + + + + + Value1100PM + + + + + Possible values for property TimeOfDayStandardTimeStartMonth + + + + + None + + + + + January + + + + + February + + + + + March + + + + + April + + + + + May + + + + + June + + + + + July + + + + + August + + + + + September + + + + + October + + + + + November + + + + + December + + + + + Possible values for property TimeOfDayStandardTimeStartWeek + + + + + None + + + + + First + + + + + Second + + + + + Third + + + + + Fourth + + + + + Last + + + + + Possible values for property TimeOfDayStandardTimeStartWeekday + + + + + None + + + + + Sunday + + + + + Monday + + + + + Tuesday + + + + + Wednesday + + + + + Thursday + + + + + Friday + + + + + Saturday + + + + + Possible values for property TimeOfDayTimeIntervalOnDp + + + + + None + + + + + Value1Second + + + + + Value10Seconds + + + + + Value1Minute + + + + + Value10Minutes + + + + + Value1Hour + + + + + Value12Hours + + + + + Value24Hours + + + + + Possible values for property TimeOfDayTypeOfSynchronizationOnDp + + + + + None + + + + + AsMaster + + + + + AsSlave + + + + + Possible values for property TimeSynchronizationNtp + + + + + Deactivated + + + + + Active + + + + + Possible values for property Timer1Type + + + + + WithClosingDelay + + + + + ClosingDelayWithMemory + + + + + WithOpeningDelay + + + + + WithFleetingClosing + + + + + Possible values for property Timer2Type + + + + + WithClosingDelay + + + + + ClosingDelayWithMemory + + + + + WithOpeningDelay + + + + + WithFleetingClosing + + + + + Possible values for property Timer3Type + + + + + WithClosingDelay + + + + + ClosingDelayWithMemory + + + + + WithOpeningDelay + + + + + WithFleetingClosing + + + + + Possible values for property Timer4Type + + + + + WithClosingDelay + + + + + ClosingDelayWithMemory + + + + + WithOpeningDelay + + + + + WithFleetingClosing + + + + + Possible values for property Timer5Type + + + + + WithClosingDelay + + + + + ClosingDelayWithMemory + + + + + WithOpeningDelay + + + + + WithFleetingClosing + + + + + Possible values for property Timer6Type + + + + + WithClosingDelay + + + + + ClosingDelayWithMemory + + + + + WithOpeningDelay + + + + + WithFleetingClosing + + + + + Possible values for property TraceTriggerEdge + + + + + Positive + + + + + Negative + + + + + Addressmapping between local I-Slave / I-device and remote partner + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Local addresses of a transfer area + + + + + + EOM parent of this object + + + + + + Partner addresses of a transfer area + + + + + + Mapping rules for transfer areas + + + + + + Direction of data communication between local and partner device + + + + + + Subslotnumber / Slotnumber of transfer area + + + + + + Length of transferred data from local to partner device + + + + + + Name of the transfer area + + + + + + Length of transferred data from partner to local device + + + + + + Subslotnumber / Slotnumber of transfer area + + + + + + Transfer area type + + + + + + Composition of transfer areas + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create a transfer area + + Name of the transfer area + Type of transfer area + Siemens.Engineering.HW.TransferArea + + + + Create a transfer area + + Name of the transfer area + Type of transfer area + Slotnumber of transfer area + Siemens.Engineering.HW.TransferArea + + + + Find a transfer area by position number + + Subslotnumber / Slotnumber of transfer area + Siemens.Engineering.HW.TransferArea + + + + Find a transfer area by position number + + Slotnumber of transfer area + Subslotnumber of transfer area + Siemens.Engineering.HW.TransferArea + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Direction of data communication between local and partner device + + + + + None + + + + + Transfer data from local device to partner device + + + + + Transfer data from partner device to local device + + + + + Bidirectional mapping between local and partner device + + + + + Mapping rule for transfer area + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Bit address of the begin of the mapped data + + + + + + Bit address of the end of the mapped data + + + + + + Type of data to be mapped (Input or Output) + + + + + + Offset of the transfered data + + + + + + Transfer area mapping rule number + + + + + + I/O module or sub-module to be mapped + + + + + + Mapping rules for transfer areas + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Mapping rules for transfer areas + + Siemens.Engineering.HW.TransferAreaMappingRule + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Type of transfer area + + + + + Default value + + + + + Master - Slave transfer area + + + + + Controller - Device transfer area + + + + + F - PROFIsafe transfer area + + + + + Transfer mapping rule + + + + + Transfer area Input + + + + + Transfer area Output + + + + + Transfer area Shared Input (MSI) + + + + + Transfer area Shared Output (MSO) + + + + + Transfer area Local Shared Output (MSO_LOCAL) + + + + + Transfer area for Record Data Write up to 8 data records will be buffered + + + + + Transfer area for Record Data Write overwrites previous data record + + + + + Transfer area for Record Data Read reads the oldest data record in the buffer + + + + + Transfer area for Record Data Read reads data record written last + + + + + Transfer area Shared Input (MSI) / Transfer area Shared Output (MSO) + + + + + Transfer area Input / Transfer area Output + + + + + Transfer area for local data record coupling, up to 8 data records are buffered + + + + + Transfer area for local data record coupling, overwrites previous data record + + + + + Transfer area copy of Shared Input (MSI) + + + + + Transfer area copy of Shared Output (MSO) + + + + + Transfer area for Record Data Read for reading the oldest data record in the buffer + + + + + Transfer area for Record Data Read for reading the most recently written data record + + + + + Transfer area with 12 byte input and 6 byte output + + + + + Transfer area with 6 byte input and 12 byte output + + + + + F-Proxy: PROFIsafe Controller-Device transfer area + + + + + Direct Data Exchange + + + + + Possible values for property TransmissionRate + + + + + Value125kHz + + + + + Value250kHz + + + + + Value500kHz + + + + + Value1MHz + + + + + Value15MHz + + + + + Value2MHz + + + + + Possible values for property TransmissionRateAndDuplex + + + + + None + + + + + AUI10Mbps + + + + + Automatic + + + + + TP10MbpsHalfDuplex + + + + + TP10MbpsFullDuplex + + + + + AsyncFiber10MbpsHalfDuplex + + + + + AsyncFiber10MbpsFullDuplex + + + + + TP100MbpsHalfDuplex + + + + + TP100MbpsFullDuplex + + + + + FO100MbpsFullDuplex + + + + + X1000MbpsFullDuplex + + + + + FO1000MbpsFullDuplexLD + + + + + FO1000MbpsFullDuplex + + + + + TP1000MbpsFullDuplex + + + + + FO10000MbpsFullDuplex + + + + + FO100MbpsFullDuplexLD + + + + + POFPCF100MbpsFullDuplex + + + + + Possible values for property TripLevelActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpfOn + + + + + IfMotorIsRunningExceptTpf + + + + + Possible values for property TrippingClass + + + + + Class10 + + + + + Class20 + + + + + Class510A + + + + + Class15 + + + + + ClassOff + + + + + Possible values for property TypeInputS1 + + + + + Nc + + + + + Ncc + + + + + No + + + + + Noc + + + + + Open + + + + + Close + + + + + Possible values for property TypeInputS2 + + + + + Nc + + + + + Ncc + + + + + No + + + + + Noc + + + + + Open + + + + + Close + + + + + Possible values for property TypeInputS3 + + + + + Nc + + + + + Ncc + + + + + No + + + + + Noc + + + + + Open + + + + + Close + + + + + Possible values for property TypeOfConsumerLoad + + + + + Motor + + + + + ResistiveLoad + + + + + Possible values for property UnitsOfMeasure + + + + + Deactivated + + + + + Mm3DecimalPlaces + + + + + Inch4DecimalPlaces + + + + + Degrees4DecimalPlaces + + + + + Degrees2DecimalPlaces + + + + + Pulses + + + + + Degrees3DecimalPlaces + + + + + Degrees + + + + + DegreesPerSecond + + + + + DegreesCelsius + + + + + DegreesFahrenheit + + + + + MicroMeter + + + + + OnePerMinute + + + + + OnePerSecond + + + + + Ampere + + + + + At + + + + + Atm + + + + + Bar + + + + + BarPerd + + + + + BarPerHour + + + + + BarPerMinute + + + + + BarPerSecond + + + + + Cd + + + + + Cm + + + + + CubiccmPerd + + + + + CubiccmPerHour + + + + + CubiccmPerMinute + + + + + CubiccmPerSecond + + + + + Cp + + + + + Cubicdm + + + + + Dyn + + + + + Fc + + + + + Ft + + + + + FtLb + + + + + FtPerH + + + + + FtPerMinute + + + + + FtPerSecond + + + + + Squareft + + + + + Cubicft + + + + + CubicftPerd + + + + + CubicftPerHour + + + + + CubicftPerMinute + + + + + CubicftPerSecond + + + + + G + + + + + GPerCubiccm + + + + + GPerml + + + + + Gal + + + + + GalPerd + + + + + GalPerHour + + + + + GalPermin + + + + + GalPerSecond + + + + + GradPerSecond + + + + + Hp + + + + + HPa + + + + + Hz + + + + + In + + + + + InPerHour + + + + + InPerMinute + + + + + InPerSecond + + + + + Squarein + + + + + Cubicin + + + + + K + + + + + Kg + + + + + KgPerMeterSecond + + + + + KgPerl + + + + + KgfSecondPerSquareMeter + + + + + KgPerCubicm + + + + + Km + + + + + KmPerHour + + + + + KW + + + + + L + + + + + LPerd + + + + + LPerHour + + + + + LPerMinute + + + + + LPerSecond + + + + + Lb + + + + + LbPerftSecond + + + + + LbPerbu + + + + + LbPerd + + + + + LbPerGal + + + + + LbPerHour + + + + + LbPerCubicin + + + + + LbPerMinute + + + + + LbPerSecond + + + + + LbPerCubicyd + + + + + LbfHourPerSquareft + + + + + LbfSecondPerSquareFt + + + + + Lux + + + + + Meter + + + + + MeterPerMinute + + + + + MeterPerSecond + + + + + SquareMeter + + + + + SquareMeterPerSecond + + + + + CubicMeter + + + + + CubicMeterPerd + + + + + CubicMeterPerHour + + + + + CubicMeterPerMinute + + + + + CubicMeterPerSecond + + + + + Mile + + + + + SquareMile + + + + + Mm + + + + + MmPerSecond + + + + + SquareMilliMeter + + + + + N + + + + + Nm + + + + + NsPerSquareMeter + + + + + Oz + + + + + OzPerCubicin + + + + + P + + + + + Pa + + + + + PaSeconds + + + + + Pl + + + + + Psi + + + + + Rad + + + + + RadPerSecond + + + + + T + + + + + Ton + + + + + Torr + + + + + V + + + + + VA + + + + + W + + + + + Squareyd + + + + + Cubicyd + + + + + Barrel + + + + + USBarrel + + + + + BarrelBeer + + + + + Bushel + + + + + Centiliter + + + + + AcreFeet + + + + + CubicCentimeter + + + + + FluidOunce + + + + + GalUk + + + + + Hectoliter + + + + + Carat + + + + + Kl + + + + + TroyPound + + + + + Milligram + + + + + Megagram + + + + + CubicMiles + + + + + Milliliter + + + + + CubicMillimeter + + + + + Normliter + + + + + NormCubicMeter + + + + + TroyOunce + + + + + Pint + + + + + Quart + + + + + Scf + + + + + StandardLiter + + + + + StandardCubicMeter + + + + + TonUk + + + + + Possible values for property UpperCurrentWarningLimit + + + + + None + + + + + Value50 + + + + + Value53Dot13 + + + + + Value56Dot25 + + + + + Value59Dot38 + + + + + Value62Dot50 + + + + + Value65Dot63 + + + + + Value68Dot75 + + + + + Value71Dot88 + + + + + Value75 + + + + + Value78Dot13 + + + + + Value81Dot25 + + + + + Value84Dot38 + + + + + Value87Dot50 + + + + + Value90Dot63 + + + + + Value93Dot75 + + + + + Value96Dot88 + + + + + Value100 + + + + + Value103Dot13 + + + + + Value106Dot25 + + + + + Value109Dot38 + + + + + Value112Dot50 + + + + + Value115Dot63 + + + + + Value118Dot75 + + + + + Value121Dot88 + + + + + Value125 + + + + + Value128Dot13 + + + + + Value131Dot25 + + + + + Value134Dot38 + + + + + Value137Dot50 + + + + + Value140Dot63 + + + + + Value143Dot75 + + + + + Value146Dot88 + + + + + Value150 + + + + + Value153Dot13 + + + + + Value156Dot25 + + + + + Value159Dot38 + + + + + Value162Dot50 + + + + + Value165Dot63 + + + + + Value168Dot75 + + + + + Value171Dot88 + + + + + Value175 + + + + + Value178Dot13 + + + + + Value181Dot25 + + + + + Value184Dot38 + + + + + Value187Dot50 + + + + + Value190Dot63 + + + + + Value193Dot75 + + + + + Value196Dot88 + + + + + Value200 + + + + + Value203Dot13 + + + + + Value206Dot25 + + + + + Value209Dot38 + + + + + Value212Dot50 + + + + + Value215Dot63 + + + + + Value218Dot75 + + + + + Value221Dot88 + + + + + Value225 + + + + + Value228Dot13 + + + + + Value231Dot25 + + + + + Value234Dot38 + + + + + Value237Dot50 + + + + + Value240Dot63 + + + + + Value243Dot75 + + + + + Value246Dot88 + + + + + Value250 + + + + + Value253Dot13 + + + + + Value256Dot25 + + + + + Value259Dot38 + + + + + Value262Dot50 + + + + + Value265Dot63 + + + + + Value268Dot75 + + + + + Value271Dot88 + + + + + Value275 + + + + + Value278Dot13 + + + + + Value281Dot25 + + + + + Value284Dot38 + + + + + Value287Dot50 + + + + + Value290Dot63 + + + + + Value293Dot75 + + + + + Value296Dot88 + + + + + Value300 + + + + + Value303Dot13 + + + + + Value306Dot25 + + + + + Value309Dot38 + + + + + Value312Dot50 + + + + + Value315Dot63 + + + + + Value318Dot75 + + + + + Value321Dot88 + + + + + Value325 + + + + + Value328Dot13 + + + + + Value331Dot25 + + + + + Value334Dot38 + + + + + Value337Dot50 + + + + + Value340Dot63 + + + + + Value343Dot75 + + + + + Value346Dot88 + + + + + Value350 + + + + + Value353Dot13 + + + + + Value356Dot25 + + + + + Value359Dot38 + + + + + Value362Dot50 + + + + + Value365Dot63 + + + + + Value368Dot75 + + + + + Value371Dot88 + + + + + Value375 + + + + + Value378Dot13 + + + + + Value381Dot25 + + + + + Value384Dot38 + + + + + Value387Dot50 + + + + + Value390Dot63 + + + + + Value393Dot75 + + + + + Value396Dot88 + + + + + Value400 + + + + + The list of possible views in the HW editor + + + + + Device value + + + + + Network view of HW editor + + + + + Topology view of HW editor + + + + + Possible values for property VirtualSubType + + + + + Empty + + + + + MsoLocal + + + + + MsoSub + + + + + Possible values for property VirtualType + + + + + Empty + + + + + MsoLocal + + + + + Possible values for property VoltageDisplay + + + + + PhaseVoltage + + + + + LineToLineVoltage + + + + + Possible values for property VoltageLowerTripLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Trip + + + + + Possible values for property VoltageLowerWarningLevelActiveStatus + + + + + AlwaysOn + + + + + AlwaysExceptWithTpfOn + + + + + IfMotorIsRunningExceptTpf + + + + + Possible values for property VoltageLowerWarningLevelResponse + + + + + Deactivated + + + + + Signal + + + + + Warn + + + + + Possible values for property VoltageState + + + + + NoStatusAvailable + + + + + StatusOfSupplyVoltageLPlus + + + + + StatusOfSupplyVoltageLPlusAndFeedbackVoltage + + + + + Possible values for property VoltageTypeOfLoadForVoltageCosPhiAndPower + + + + + TriPhase + + + + + OnePhase + + + + + Possible values for property VolumeFlowUnit + + + + + MicroBarrelPerDay + + + + + MicroBarrelPerHour + + + + + MicroBarrelPerMinute + + + + + MicroBarrelPerSecond + + + + + MicroGalUKPerDay + + + + + MicroGalUKPerHour + + + + + MicroGalUKPerMinute + + + + + MicroGalUKPerSecond + + + + + MicroGalPerDay + + + + + MicroGalPerHour + + + + + MicroGalPerMinute + + + + + MicroGalPerSecond + + + + + MicroCubicmeterPerDay + + + + + MicroCubicmeterPerHour + + + + + MicroCubicmeterPerMinute + + + + + MicroCubicmeterPerSecond + + + + + AcreFeetPerDay + + + + + AcreFeetPerHour + + + + + AcreFeetPerMinute + + + + + AcreFeetPerSecond + + + + + USBarrelPerSecond + + + + + USBarrelPerDay + + + + + USBarrelPerHour + + + + + USBarrelPerMinute + + + + + BarrelPerDay + + + + + BarrelPerHour + + + + + BarrelPerMinute + + + + + BarrelPerSecond + + + + + BarrelBeerPerDay + + + + + BarrelBeerPerHour + + + + + BarrelBeerPerMinute + + + + + BarrelBeerPerSecond + + + + + BushelPerDay + + + + + BushelPerHour + + + + + BushelPerMinute + + + + + BushelPerSecond + + + + + CubiccmPerDay + + + + + CubiccmPerHour + + + + + CubiccmPerMinute + + + + + CubiccmPerSecond + + + + + FluidOuncePerDay + + + + + FluidOuncePerHour + + + + + FluidOuncePerMinute + + + + + FluidOuncePerSecond + + + + + MegalitersPerDay + + + + + CubicFeetPerDay + + + + + CubicFeetPerHour + + + + + CubicFeetPerMinute + + + + + CubicFeetPerSecond + + + + + GalUKPerDay + + + + + GalUKPerHour + + + + + GalUKPerMinute + + + + + GalUKPerSecond + + + + + GalPerDay + + + + + GalPerHour + + + + + GalPerMinute + + + + + GalPerSecond + + + + + HektorliterPerDay + + + + + HektorliterPerHour + + + + + HektorliterPerMinute + + + + + HektorliterPerSecond + + + + + CubicInchPerDay + + + + + CubicInchPerHour + + + + + CubicInchPerMin + + + + + CubicInchPerSecond + + + + + KilobarrelPerDay + + + + + KilobarrelPerHour + + + + + KilobarrelPerMinute + + + + + KilobarrelPerSecond + + + + + KiloGalUKPerDay + + + + + KiloGalUKPerHour + + + + + KiloGalUKPerMinute + + + + + KiloGalUKPerSecond + + + + + KiloGalPerDay + + + + + KiloGalPerHour + + + + + KiloGalPerMinute + + + + + KiloGalPerSecond + + + + + KlPerDay + + + + + KlPerHour + + + + + KlPerMinute + + + + + KlPerSecond + + + + + CubicKmPerDay + + + + + CubicKmPerHour + + + + + CubicKmPerMinute + + + + + CubicKmPerSecond + + + + + LitrePerDay + + + + + LitrePerHour + + + + + LitrePerMinute + + + + + LitrePerSecond + + + + + CubicmeterPerDay + + + + + CubicmeterPerHour + + + + + CubicmeterPerMinute + + + + + CubicmeterPerSecond + + + + + MilibarrelPerDay + + + + + MegabarrelPerDay + + + + + MilibarrelPerHour + + + + + MegabarrelPerHour + + + + + MilibarrelPerMinute + + + + + MegabarrelPerMinute + + + + + MilibarrelPerSecond + + + + + MegabarrelPerSecond + + + + + BegafeetPerDay + + + + + MiligalUKPerDay + + + + + MegagalUKPerDay + + + + + MiligalUKPerHour + + + + + MegagalUKPerHour + + + + + MiligalUKPerMinute + + + + + MegagalUKPerMinute + + + + + MiligalUKPerSecond + + + + + MegagalUKPerSecond + + + + + MiligalPerDay + + + + + MegagalPerDay + + + + + MiligalPerHour + + + + + MegagalPerHour + + + + + MiligalPerMinute + + + + + MegagalPerMinute + + + + + MiligalPerSecond + + + + + MegagalPerSecond + + + + + MililiterPerDay + + + + + MililiterPerHour + + + + + MililiterPerMinute + + + + + MililiterPerSecond + + + + + CubicmmPerDay + + + + + CubicmmPerHour + + + + + CubicmmPerMinute + + + + + CubicmmPerSecond + + + + + CubicyardPerDay + + + + + CubicyardPerHour + + + + + CubicyardPerMinute + + + + + CubicyardPerSecond + + + + + MillionCubicMeterPerSecond + + + + + MillionCubicMeterPerMinute + + + + + MillionCubicMeterPerHour + + + + + MillionCubicMeterPerDay + + + + + MillionCubicFeetPerDay + + + + + Possible values for property VolumeUnit + + + + + AF + + + + + Bbl + + + + + BblUS + + + + + BblBeer + + + + + Bu + + + + + Cl + + + + + Cm + + + + + Dm + + + + + FlOz + + + + + Ft + + + + + Gal + + + + + GalUk + + + + + Hl + + + + + CubicIn + + + + + Kl + + + + + L + + + + + CubicM + + + + + CubicMiles + + + + + Ml + + + + + Cubicmm + + + + + Pints + + + + + Quart + + + + + CubicYd + + + + + Possible values for WebAccess + + + + + None + + + + + Read + + + + + Write + + + + + Represents a Watch Table Access Rule + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents web server access + + + + + + Represents Plc WatchTable + + + + + + Composition of Watch Table Access + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates a WatchTableAccessRule + + Represents Plc WatchTable + Represents web server access + Siemens.Engineering.HW.WatchTableAccessRule + + + + Finds a given WatchTableAccessRule by PlcWatchTable + + Watch Table + Siemens.Engineering.HW.WatchTableAccessRule + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Possible values for property WatchdogBusPLCFaultReset + + + + + Manual + + + + + Auto + + + + + Possible values for property WebserverEntryPage + + + + + IntroPage + + + + + Awp1 + + + + + Represents a WebserverUser + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Set Password for Web server user + + Password of User + user password violates the security setting password policy + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents webserver permission for WebserverUser + + + + + + The name of the WebServer User + + + + + + Represent list of Webserver Users + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates the webserver user + + Username of webserver user + Web server permission for WebserverUser + Password of the webserver user + Siemens.Engineering.HW.WebserverUser + + + + Finds a given webserver user + + Username of webserver user + Siemens.Engineering.HW.WebserverUser + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents Webserver User Permissions + + + + + no rights at all + + + + + DoDiagnosis WebserverUserPermission + + + + + ReadTag WebserverUserPermission + + + + + ModifyTag WebserverUserPermission + + + + + ReadTagStatus WebserverUserPermission + + + + + ModifyTagStatus WebserverUserPermission + + + + + AcknowledgeMessages WebserverUserPermission + + + + + OpenUserDefinedWebPages WebserverUserPermission + + + + + WriteUserDefinedWebPages WebserverUserPermission + + + + + ReadFiles WebserverUserPermission + + + + + ModifyFiles WebserverUserPermission + + + + + ChangeOperatingMode WebserverUserPermission + + + + + FlashLed WebserverUserPermission + + + + + WriteFirmware WebserverUserPermission + + + + + ChangeSystemParameter WebserverUserPermission + + + + + ChangeApplicationParameter WebserverUserPermission + + + + + Backup WebserverUserPermission + + + + + Restore WebserverUserPermission + + + + + FAdmin WebserverUserPermission + + + + + ManageUserDefinedWebPages WebserverUserPermission + + + + + Represents Webserver User Permissions + + + + + no rights at all + + + + + DoDiagnosis WebserverUserPermission + + + + + ReadTag WebserverUserPermission + + + + + ModifyTag WebserverUserPermission + + + + + ReadTagStatus WebserverUserPermission + + + + + ModifyTagStatus WebserverUserPermission + + + + + AcknowledgeMessages WebserverUserPermission + + + + + OpenUserDefinedWebPages WebserverUserPermission + + + + + WriteUserDefinedWebPages WebserverUserPermission + + + + + ReadFiles WebserverUserPermission + + + + + ModifyFiles WebserverUserPermission + + + + + ChangeOperatingMode WebserverUserPermission + + + + + FlashLed WebserverUserPermission + + + + + WriteFirmware WebserverUserPermission + + + + + ChangeTimeSettings WebserverUserPermission + + + + + DownloadServiceData WebserverUserPermission + + + + + Backup WebserverUserPermission + + + + + Restore WebserverUserPermission + + + + + FAdmin WebserverUserPermission + + + + + ManageUserDefinedWebPages WebserverUserPermission + + + + + ChangeWebserverDefaultPage WebserverUserPermission + + + + + ReadAbsoluteAddresses WebserverUserPermission + + + + + WriteAbsoluteAddresses WebserverUserPermission + + + + + Possible values for property WithBlockCheck + + + + + Deactivated + + + + + Activated + + + + + Represents custom data type attribute (StructuredData) on hardware object. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Composition of Structured Data + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates a new empty row + + Siemens.Engineering.HW.CustomDataTypes.StructuredData + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents Complex data in the form of Table + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Collection of Structured Data + + + + + + Information about a free slot. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The label of the free slot. + + + + + + The position number of the free slot + + + + + + Address controller device + + + + + Base class for all DeviceItem related services + + + + + Base class for all HW related services + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + DeviceItem Object that owns this role + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Associated registered address + + + + + + Associated address controllers + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Service for PLC dynamic certificate configurations + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition for CertificateSupportedServices + + + + + + Enable or Disable the Certificate expiration setting of the Certificate Management Configuration . + + + + + + Get or Set the value for showing event for remaining certificate life time of the Certificate Management Configuration + + + + + + Gets or sets the Usage of the Certificate Management Configuration . This property allows two options user to choose either certificates configured and download using TIA Portal or certificates provided by certificate management during runtime + + + + + + Base class for all Device related services + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Device Object that owns this role + + + + + + Represents the Display Protection Service + + + + + Sets password for display + + password for display + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Represents the Front Panel Display + + + + + Sets the Logo on the Display + + Specifies the file info of the logo + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Adapt the logo to the display + + + + + + Activate or deactivate the User Defined Logo + + + + + + Represents a Gsd device + + + + + Properties of a Gsd hardware object + + + + + The Gsd ID of the Gsd object + + + + + + The Gsd Name of the Gsd object + + + + + + The Gsd Type of the Gsd object + + + + + + Indicates if this Gsd device item supports Profibus + + + + + + Indicates if this Gsd object supports Profinet + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + The Gsd ID of the Gsd object + + + + + + The Gsd Name of the Gsd object + + + + + + The Gsd Type of the Gsd object + + + + + + Indicates if this Gsd device item supports Profibus + + + + + + Indicates if this Gsd object supports Profinet + + + + + + Represents a Gsd device item + + + + + Returns the Prm Data for this Gsd device item + + Specifies which dsNumber to set the Prm Data to this Gsd device item + The byte offset + Specifies which length to get the Prm Data from this Gsd device item + System.Byte[] + + + + Sets the Prm Data for this Gsd device item + + Specifies which dsNumber to set the Prm Data to this Gsd device item + The byte offset + Specifies which Prm data is to be set to this Gsd device item + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + The Gsd ID of the Gsd object + + + + + + The Gsd Name of the Gsd object + + + + + + The Gsd Type of the Gsd object + + + + + + Indicates if this Gsd device item supports Profibus + + + + + + Indicates if this Gsd object supports Profinet + + + + + + Represents a HW identifier controller + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Associated registered HW identifiers + + + + + + Associated Hw identifier controllers + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents the IM connection + + + + + Connects to the partner port + + Specifies which partner port to which the connection needs to be established + + + + Disconnects from the partner port + + + + + Gets the partner port details + + Siemens.Engineering.HW.DeviceItem + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Represents the ModuleDescriptionUpdater + + + + + Update module description of the deviceItem or deviceItems + + System.Boolean + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Exists a new version of deviceitem to update + + + + + + Represents a Mrp Domain owner + + + + + Base class for Subnet related services + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Subnet Object that owns this role + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of Mrp Domain + + + + + + EOM parent of this object + + + + + + Represents a HW interface + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of IO connectors + + + + + + Composition of IO controllers + + + + + + Composition of multicastable transfer areas + + + + + + Composition of nodes + + + + + + Composition of transfer areas + + + + + + The operating mode of this interface + + + + + + The type of this interface + + + + + + Associated ports + + + + + + Association of Network Interfaces + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Adds an . + + The item to be added. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a port on a device item + + + + + Connects to the Port + + The partner port to be disconnected + + + + Disconnects a device from the given port + + The partner port to be disconnected + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Internal use only + + + + + + The interface supported by this port + + + + + + Associated ports + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a OpcUa User Management + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of OpcUaUsers + + + + + + Interface Assignment Provider + + + + + Assign interface to one of the following( None, PC Station) + + assignment type for interface + + + + Assign interface to Software PLC + + assignment type for interface + if interface assignment will be to CPU, provide cpu device item + + + + Get available IPC expansion list that can be selected + + System.Collections.Generic.IEnumerable<System.String> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Get or set hardware resource of interface + + + + + + Get or set hardware IPC Expansion of interface + + + + + + Returns type of interface assignment + + + + + + Returns cpu DeviceItem + + + + + + Represents the Access Control Configuration of the PLC 3.1 onwards + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + To set the Access Control Configuration of the PLC + + + + + + Represents the Access level of the PLC Plus + + + + + Reset the password for the specific Access Level Type + + Specifies the Access level type + + + + set the password for the specific Access Level Type + + Specifies the protection Access level type + Specifies the password for the access level type + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + To set the protection access level type + + + + + + Represents the Master Secret configuration for the PLC + + + + + Change the Master Secret key for the protected PLC + + Specifies the old master secret key + Specifies the new master secret key + + + + Protect the PLC with the Master Secret key(password) + + Specifies the Master Secret key + + + + Removes PLC configuration data from the TIA Portal project and the PLC + + + + + Unprotects the PLC configuration data from the TIA Portal project and the PLC + + + + + Unprotects the PLC configuration data from the TIA Portal project and the PLC + + Specifies the Master Secret password + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Indicates the PLC protection type + + + + + + Represent the webserver usermanagement + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of webserver users + + + + + + Represents a class containing software components + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the software target containing the software elements of the device + + + + + + Represents a Subnet owner + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of Subnets + + + + + + Represents a Sync Domain owner + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Composition of Sync Domain + + + + + + The SysLogConfigurationManager Class, Provides information about system logging configuration and means to manipulate the configuration. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Represents composition of all the server configurations of the system logging configurations. + + + + + + Enable or Disable the System Logging setting of the SysLog Configuration. + + + + + + Gets or sets the Transport Protocol of the System Logging Configuration. + + + + + + Represents server configuration of the system logging configurations. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents server address of the server configuration. + + + + + + Represents port number of the server configuration. + + + + + + Represents composition all the server configurations of the system logging configurations. + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates Server Configuation for syslog + + Represents server address of the server configuration. + Represents port number of the server configuration. + Siemens.Engineering.HW.Features.SysLogServerConfiguration + + + + Find SysLog Server details by Address + + Server Address + Siemens.Engineering.HW.Features.SysLogServerConfiguration + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a Webserver watch And forceTables + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of ForcetableAccess + + + + + + Composition of Watch Table Access Rules + + + + + + The list of possible generate options for actions + + + + + Throw if exists + + + + + Override existing + + + + + Represents the Web Server user defined pages service + + + + + Generate blocks + + Options to use for Generate + System.Collections.Generic.IList<Siemens.Engineering.SW.Blocks.PlcBlock> + + + + Generate blocks + + HTML directory of the webpage + Default HTML page file + The application name + Options to use for Generate + System.Collections.Generic.IList<Siemens.Engineering.SW.Blocks.PlcBlock> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Represent the webserver usermanagement + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of webserver users + + + + + + Hardware Catalog Entry + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Article number of hardware object + + + + + + CatalogPath of item + + + + + + Hardware catalog entry's description + + + + + + TypeIdentifier of item + + + + + + Normalized TypeIdentifier of item + + + + + + Type name of the device + + + + + + Hardware catalog entry's version + + + + + + HardwareCatalog related features implemented here + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + This action finds hardware catalog entries + + filter string + System.Collections.Generic.IList<Siemens.Engineering.HW.HardwareCatalog.CatalogEntry> + + + + This action filter the search result for compatible/pluggable devices filtered for a given TypeIdentifier. + + filter string + typeidentiifer string + System.Collections.Generic.IList<Siemens.Engineering.HW.HardwareCatalog.CatalogEntry> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + This class is used to export and import system diagnostics project relevant settings + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + This method is used to export system diagnostics project relevant settings + + Path for system diagnostics settings export file + Siemens.Engineering.HW.Systemdiagnostics.Settings.SystemdiagnosticsSettingsExportImportResult + + + + This method is used to import system diagnostics project relevant settings + + Path for system diagnostics settings import file + Siemens.Engineering.HW.Systemdiagnostics.Settings.SystemdiagnosticsSettingsExportImportResult + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Result of an diagnostic class export or import + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Result state of the process + + + + + + Result state of system diagnostics settings export or import + + + + + Succesful process + + + + + Succesful process with warnings + + + + + Failed process + + + + + Card reader provider utility for .psc file + + + + + Abstract base class for all extensions to the HW model + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Identifier for this HW extension + + + + + + Exports device configuration to file + + device to be exported + file name that will be saved(*.psc) + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Composition of HardwareUtilities + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a given extension + + Identifier to find + Siemens.Engineering.HW.Utilities.HardwareUtility + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Service provider for module information + + + + + Finds the possible container types + + The type identifier to use to find a given container type + System.String[] + + + + Finds the possible module types + + The partial type identifier to be used to find a given module type + System.String[] + + + + Gets the TypeIdentifierNormalized + + The type identifier to be used to get TypeIdentifierNormalized + System.String + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Service provider for export of OPC UA + + + + + Simatic ML export of a OPC UA + + The device item to be exported + Path to the export file + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents the target device + + + + + Scope of the project to search when performing a 'Find instances in project' operation + + + + + Represents the scope of the project that may be updated + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Simatic ML import of screen global elements + + Path to the Simatic ML file + Options to use for Import + + + + Simatic ML import of a screen overview + + Path to the Simatic ML file + Options to use for Import + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of connections + + + + + + Composition of cycles + + + + + + Composition of graphic lists + + + + + + Gets the Hmi screen system folder + + + + + + Gets the Hmi screen global elements + + + + + + Gets the Hmi screen overview + + + + + + System folder for the HMI pop-up screens + + + + + + System folder for the HMI slide-in screens + + + + + + Composition of screen template folders + + + + + + Gets the Hmi tag system folder + + + + + + Composition of text lists + + + + + + Gets the VBScript system folder + + + + + + Author of the device + + + + + + The name of the Hmi target + + + + + + Defines the available acknowledgment model. + + + + + Alarm without acknowledgment. + + + + + Alarm with single (incoming) acknowledgment. + + + + + Alarm with dual (incoming/outgoing) acknowledgment. + + + + + New value alarm with single acknowledgment and flashing function. + + + + + New value alarm with dual acknowledgment and flashing function. + + + + + Initial value alarm with single acknowledgment and flashing function. + + + + + Alarm without outgoing state and with acknowledgment. + + + + + Alarm without outgoing state and without acknowledgment. + + + + + Alarm acknowledgment modes. + + + + + Separate alarm acknowledgment hotkey. + + + + + Single alarm acknowledgment. + + + + + Defines the alignment of alarm block texts. + + + + + Align alarm block contents to center. + + + + + Align alarm block contents to left. + + + + + Align alarm block contents to right. + + + + + Defines different modes when hysteresis will become active. + + + + + Without hysteresis. + + + + + Effective when exceeding the limit. + + + + + Effective when falling below the limit. + + + + + Effective for both. + + + + + Defines different delay time units. + + + + + Delay time in milliseconds. + + + + + Delay time in seconds. + + + + + Delay time in minutes. + + + + + Delay time in hours. + + + + + Defines for different trigger conditions. + + + + + Limit value is lower limit. + + + + + Limit value is upper limit. + + + + + Equal to limit. + + + + + Not equal to limit. + + + + + ID for selected process value blocks. + + + + + Process value alarm block 1. + + + + + Process value alarm block 2. + + + + + Process value alarm block 3. + + + + + Process value alarm block 4. + + + + + Process value alarm block 5. + + + + + Process value alarm block 6. + + + + + Process value alarm block 7. + + + + + Process value alarm block 8. + + + + + Process value alarm block 9. + + + + + Process value alarm block 10. + + + + + Date format for system blocks. + + + + + Display date in Day/Month/Year syntax with 2-digit year. + + + + + Display date in Day/Month/Year syntax with 2-digit year. + + + + + Display date in Day/Month/Year syntax with 2-digit year. + + + + + Display date in Day/Month/Year syntax with 4-digit year. + + + + + Display date in Day/Month/Year syntax with 4-digit year. + + + + + Display date in Day/Month/Year syntax with 4-digit year. + + + + + Format of system block duration. + + + + + Display the duration in hours. + + + + + Display the duration in hours.minutes. + + + + + Display the duration in hours:minutes:seconds. + + + + + Display duration in days. + + + + + Display the duration in days and hours. + + + + + Display the duration in days and hours:minutes. + + + + + Display the duration in days and hours:minutes:seconds. + + + + + Definition of the system block ID. + + + + + System alarm block: Date. + + + + + System alarm block: Time. + + + + + System alarm block: Message duration. + + + + + System alarm block: Daylight saving / standard time. + + + + + System alarm block: Status. + + + + + System alarm block: Acknowledged. + + + + + System alarm block: Number. + + + + + System alarm block: Class. + + + + + System alarm block: PLC / CPU number. + + + + + System alarm block: Tag. + + + + + System alarm block: Logging ID. + + + + + System alarm block: Report ID. + + + + + System alarm block: Comment. + + + + + System alarm block: Infotext. + + + + + System alarm block: Loop-in-alarm. + + + + + System alarm block: Computer name. + + + + + System alarm block: User name. + + + + + System alarm block: Priority. + + + + + System alarm block: Category. + + + + + System alarm block: PLC number (used for OPC event mapping). + + + + + System alarm block: CPU number (used for OPC event mapping). + + + + + Format of system block numbers. + + + + + Display numbers with leading zero. + + + + + Display numbers without leading zero. + + + + + Time format of system blocks. + + + + + Time display in 12-hour format. + + + + + Time display in 24-hour format. + + + + + Time display in hours:minutes with 12-hour format. + + + + + Time display in hours:minutes with 24-hour format. + + + + + Time display in hours:minutes:seconds with 12-hour format. + + + + + Time display in hours:minutes:seconds with 24-hour format. + + + + + Time display in hours:minutes:seconds:milliseconds with 12-hour format. + + + + + Time display in hours:minutes:seconds:milliseconds with 24-hour format. + + + + + Definition of system event types. + + + + + None + + + + + HMI system events. + + + + + S7 diagnostic alarms with number. + + + + + S7 diagnostic alarms with text. + + + + + Simotion diagnostic alarms. + + + + + Defines trigger modes for discrete alarms. + + + + + Discrete alarm will be triggered on a falling edge (1 -> 0). + + + + + Discrete alarm will be triggered on a rising edge (0 -> 1). + + + + + Definition of the user text block ID. + + + + + User text alarm block 1. + + + + + User text alarm block 2. + + + + + User text alarm block 3. + + + + + User text alarm block 4. + + + + + User text alarm block 5. + + + + + User text alarm block 6. + + + + + User text alarm block 7. + + + + + User text alarm block 8. + + + + + User text alarm block 9. + + + + + User text alarm block 10. + + + + + Represents a logical connection between an HMI device and a PLC device + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Simatic ML export of a connection + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the connection + + + + + + Composition of Connections + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Simatic ML import of a connection + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.Hmi.Communication.Connection> + + + + Finds a given connection + + Name to find + Siemens.Engineering.Hmi.Communication.Connection + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a time period for a pass with a possible starting point + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Simatic ML export of a cycle + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Gets a value that identifies this is as a system cycle + + + + + + The name of the cycle + + + + + + Composition of Cycles + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Simatic ML import of a cycle + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.Hmi.Cycle.Cycle> + + + + Finds a given cycle + + Name to find + Siemens.Engineering.Hmi.Cycle.Cycle + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + A class representing a faceplate library type + + + + + Represents a library type + + + + + A library type or folder. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Compares two type objects. + + The target type object to be compared + Siemens.Engineering.Library.Compare.DetailedCompareResult + + + + Updates the target library with the latest content from this type. Marking of default version in target is as per default forceUpdateMode parameter, i.e. SetOnlyHigherUpdatedVersionAsDefault. + + Target library to update + + + + Updates the target library with the latest content from this type. Marking of default version in target is as per forceUpdateMode parameter. + + Target library to update + This option controls whether unused versions should be deleted from updated types in the project library + Options used to select the 'Structure Conflict Resolution Mode' for the user during the operation. + This option controls whether force update should be done on the target library + + + + Updates the project with the latest content from this type. Marking of default version in target is as per default forceUpdateMode parameter, i.e. SetOnlyHigherUpdatedVersionAsDefault. + + The scope of the project that will be updated. + + + + Updates the project's instances with the latest content from this library. Marking of default version in target is as per forceUpdateMode parameter. + + The scope of the project that will be updated. + This option controls whether unused versions should be deleted from updated types in the project library + Options used to select the 'Structure Conflict Resolution Mode ' for the user during the operation. Project Library type supports only RetainStructure mode + This option controls whether force update should be done on the target library + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + The library type's comment + + + + + + EOM parent of this object + + + + + + Composition of library type versions + + + + + + Author of the library type + + + + + + Gets the GUID of this library type + + + + + + The minimum target device version of the library type + + + + + + The name of the library type + + + + + + The namespace of the library type + + + + + + The Set for Update property of the library type + + + + + + The consistency state of the library type + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Name + + + + + + A class representing a faceplate version + + + + + Represents a library type version + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Compares two version objects. + + The target version object to be compared + Siemens.Engineering.Library.Compare.DetailedCompareResult + + + + Export Version + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Export Version with ConfigureDocumentInfos + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) + + + + Find all instances in the given scope that are connected to this version. + + Scope within the project to search when performing a 'Find instance in project' operation. This may be a ControllerTarget, HmiTarget, etc. + System.Collections.Generic.IList<Siemens.Engineering.Library.Types.LibraryTypeInstanceInfo> + + + + Sets a version object as default version of a type. + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + The library type version's comment + + + + + + EOM parent of this object + + + + + + Author of the library type version + + + + + + Returns all versions that this version depends on + + + + + + Returns all versions that depend on this version + + + + + + Gets the GUID of this library version + + + + + + True if the version is a default version, otherwise false. + + + + + + Gets the master copies that contain instances of this version + + + + + + Gets the last modified date and time + + + + + + Gets the state of the version + + + + + + Gets the connected type object + + + + + + Gets the library version number. The format is Major.Minor.Build + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents a multilingual graphic object of the project + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Simatic ML export of a multilingual graphic + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the multilingual graphic + + + + + + Composition of MultiLingualGraphics + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Simatic ML import of a multilingual graphic + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.Hmi.Globalization.MultiLingualGraphic> + + + + Finds a given multilingual graphic + + Name to find + Siemens.Engineering.Hmi.Globalization.MultiLingualGraphic + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Acquisition modes available for logging tags. + + + + + Cyclic logging. + + + + + Cyclic logging between start and stop conditions. + + + + + Logging is triggered by a change to the tag value. + + + + + Logging must be triggered explicitly. + + + + + Defines the processing methods for logging tags whose source tag contains neither binary nor raw data. + + + + + The actual value of the logging tag is saved. + + + + + The maximum values are saved within the actual logging cycle. + + + + + The minimum values are saved within the actual logging cycle. + + + + + The total values are saved within the actual logging cycle. + + + + + The mean values are saved within the actual logging cycle. + + + + + The result of the selected calculation script is saved to the log file. + + + + + Defines the processing methods for logging tags whose source tag is binary. + + + + + The logging tag value is saved at every logging cycle. + + + + + The logging tag is saved if its value changes. + + + + + The logging tag is saved if its value changes from 0 to 1. + + + + + The logging tag is saved if its value changes from 1 to 0. + + + + + Defines the methods for processing compressed data logs. + + + + + The values of the logging tags/compressed logging tags of the specified period are compressed. The last calculated values of the logging tags/compressed logging tags of the period are retained and are written to the compressed data log. + + + + + The values of the logging tags/compressed logging tags of the specified period are compressed and are also copied to the compressed data log. The calculated values are also copied to the compressed data log. + + + + + The values of the logging tags/compressed logging tags of the specified period are compressed and are then deleted. The calculated values of the logging tags/compressed logging tags are retained with the last values of the logging tags/compressed logging tags. + + + + + The values of the logging tags/compressed logging tags of the specified period are compressed, copied to the compressed data log and are then deleted. The calculated values of the logging tags/compressed logging tags are retained with the last values of the logging tags/compressed logging tags and are copied to the compressed data log. + + + + + Defines the methods for processing compressed logging tags. + + + + + The maximum values are logged within the compression period. + + + + + The minimum values are logged within the compression period. + + + + + The mean values are logged within the compression period. + + + + + The total values are logged within the compression period. + + + + + The weighted average values are logged within the compression period. + + + + + Defines the available data source modes. + + + + + Users can specify the data source name. + + + + + Defines the available operating modes with hysteresis. + + + + + A hysteresis cannot be set. + + + + + The tag is only logged if the absolute difference between two consecutive incoming values is greater than or equal to the hysteresis value. + + + + + The tag is only logged if the precentage difference between two consecutive incoming values is greater than or equal to the hysteresis value. + + + + + Defines the scope of logging limiting. + + + + + Logging is only activated if the value of the logging tag is within limits. + + + + + Logging is only activated if the value of the logging tag is outside limits. + + + + + Specifies the restart mode of the data logs. + + + + + The data values are deleted from the log at the start of runtime. + + + + + The log is retained at the start of runtime. + + + + + Defines the available data logging methods. + + + + + The oldest entries are overwritten after the configured log size was reached. + + + + + These are separate logs of the same size which are filled successively. + + + + + A system alarm is triggered after a defined level was reached, e.g. 90%. + + + + + An "Overflow" event is triggered if the log runs out of space for further entries. + + + + + Defines the available logging setting types. + + + + + Fast data log on a server. + + + + + Slow data log on a server. + + + + + Alarm and event log on a server. + + + + + Defines the available units for the segment size. + + + + + Defines megabyte as segment unit. + + + + + Defines gigabyte as segment unit. + + + + + Defines the storage location the data logs. + + + + + Defines a database as storage location. + + + + + Defines a CSV file using ANSI codepage as storage location. + + + + + Defines memory as the storage location. + + + + + Defines a Unicode TXT file as storage location. + + + + + Defines a high performance binary file as storage location (fast access log). + + + + + Defines the storage format for Audit trail log + + + + + Defines a CSV file using ANSI codepage as storage location. + + + + + Defines a Unicode TXT file as storage location. + + + + + Enum for SupplyingTags. + + + + + System. + + + + + Manual input. + + + + + Defines the available units of the time period. + + + + + Defines the hour as time unit. + + + + + Defines the day as time unit. + + + + + Defines the week as time unit. + + + + + Defines the month as time unit. + + + + + Defines the year as time unit. + + + + + The toolbar is aligned relative to its sides in its parent window + + + + + Toolbar aligned to top + + + + + Toolbar aligned to bottom + + + + + Toolbar aligned to left + + + + + Toolbar aligned to right + + + + + The toolbar aligned dynamically + + + + + Specifies the communication type of a Recipe recipe. + + + + + There is no communication. + + + + + The communication is realized through HMI tags. + + + + + The communication is realized through a raw tag of the PLC. + + + + + Specifies the available data types in the Recipe subsystem. + + + + + The data type is not defined. + + + + + Data type that represents 8-bit characters. + + + + + Data type that represents true or false values. + + + + + Data type that represents signed 8-bit integers with values from -128 to +127. + + + + + Data type that represents unsigned 8-bit integers with values from 0 to 255. + + + + + Data type that represents signed 16-bit integers with values from -32768 to +32767. + + + + + Data type that represents unsigned 16-bit integers with values from 0 to 65535. + + + + + Data type that represents signed 32-bit integers with values from -2147483648 to +2147483647. + + + + + Data type that represents unsigned 32-bit integers with values from 0 to 4294967295. + + + + + A 32-bit floating point data type that represents values of an approx. range from 1.5 x 10 to 3.4 x 10 at a precision of 7 digits. + + + + + A 64-bit floating point data type that represents values of the approx. range from 5.0 x 10 to 1.7 x 10 at a precision of 15 to 16 digits. + + + + + Data type that represents a date and time value. + + + + + Specifies the size type of a Recipe recipe. + + + + + The number of records in the recipe is not limited. + + + + + The number of records in the recipe is limited. + + + + + values for the confirmation type + + + + + Storage media is Database + + + + + Storage media is File + + + + + Storage media is Memory + + + + + Specifies constants for the back style. + + + + + Draw with transparent shading. + + + + + Draw solid shading. + + + + + Specifies the border style. + + + + + Do not draw the line. + + + + + A solid line is drawn. + + + + + Specifies constants for the back style. + + + + + Show oldest alarm first. + + + + + Show recent alarm first. + + + + + Specifies the print area constants for the Siemens.Engineering.Hmi.Report.Hardcopy. + + + + + Show hardcopy of the desktop. + + + + + Show hardcopy of the active window (which has the focus). + + + + + Show hardcopy of the selected desktop section. + + + + + Specifies constants for the back style. + + + + + Draw with transparent shading. + + + + + Draw solid shading. + + + + + Specifies the border style. + + + + + Do not draw the line. + + + + + A solid line is drawn. + + + + + Specifies the content of a ScreenControlViewText. + + + + + The window header of the screen controlview type is shown. + + + + + The object name of the screen controlview type is shown. + + + + + The screen name (container) of the screen controlview type is shown. + + + + + Specifies constants which define the type of dialog shown at the start of reporting (at runtime). + + + + + No dialog is shown at runtime + + + + + Show property dialog at runtime. + + + + + Show printer dialog at runtime. + + + + + Specifies page format constants for the Siemens.Engineering.Hmi.Report.Report. + + + + + Identifies user-defined page sizes + + + + + Identifies A3 paper format (297x420 millimeters). + + + + + Identifies A4 paper format (210x297 millimeters). + + + + + Identifies A5 paper format (148x210 millimeters). + + + + + Identifies paper format Letter (8 1/2x11 inches). + + + + + Identifies paper format Legal (8 1/2x14 inches). + + + + + Specifies page orientation constants for the Siemens.Engineering.Hmi.Report.Report. + + + + + Identifies portrait page orientation. + + + + + Identifies landscape page orientation. + + + + + Specifies constants which define the type of page range for the Siemens.Engineering.Hmi.Report.PrintConfiguration. + + + + + Print all pages. + + + + + Print all pages within the range PageFrom to PageTo. + + + + + Specifies constant values of the time range for the Siemens.Engineering.Hmi.Report.PrintConfiguration. + + + + + Show all data (without selection). + + + + + Time range is specified in hours. + + + + + Time range is specified in days. + + + + + Time range is specified in weeks. + + + + + Time range is specified in months. + + + + + Time range is specified in years. + + + + + Specifies constants for the back style. + + + + + Draw with transparent shading. + + + + + Draw solid shading. + + + + + Specifies the border style. + + + + + Do not draw the line. + + + + + A solid line is drawn. + + + + + Specifies constants for the alarm columns of the Siemens.Engineering.Hmi.Report.PrintRecipe. + + + + + Recipe number column identifier + + + + + Recipe name column identifier + + + + + Record number column identifier + + + + + Record name column identifier + + + + + Variable name column identifier + + + + + Variable type column identifier + + + + + Entry name column identifier + + + + + Specifies constants for the drawing mode. + + + + + Draw in one line. + + + + + Draw in columns. + + + + + Specifies selection type for the recipe. + + + + + Select recipe by name. + + + + + Select recipe by number. + + + + + Select all recipes. + + + + + Specifies selection type for the recipe records. + + + + + Select recipe record by name. + + + + + Select recipe record by number. + + + + + Select all recipe records. + + + + + Specifies page format constants for the Siemens.Engineering.Hmi.Report.Report. + + + + + Identifies the ruler object. + + + + + Identifies the other control + + + + + Specifies constants for the type of time range for the Siemens.Engineering.Hmi.Report.PrintConfiguration. + + + + + Use relative time range. + + + + + Use absolute time range. + + + + + Specifies the unit style constants for the Siemens.Engineering.Hmi.Report.Report. + + + + + Report units in centimeters (metric). + + + + + Report units in inches (US). + + + + + Report units are characters / lines (line report). + + + + + Class representing a Cscript library type + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Name + + + + + + Class representing a Cscript library type version + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Represents a VBscript + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Simatic ML export of a VBScript + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the VBScript + + + + + + Composition of VBScripts + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create script from library type version + + library type version + Siemens.Engineering.Hmi.RuntimeScripting.VBScript + + + + Create VBScript from MasterCopy + + The source master copy + Siemens.Engineering.Hmi.RuntimeScripting.VBScript + + + + Simatic ML import of a VBScript + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.Hmi.RuntimeScripting.VBScript> + + + + Finds a given VBScript + + Name to find + Siemens.Engineering.Hmi.RuntimeScripting.VBScript + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Folder containing VBScripts & VBScript user folders + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of VBScript user folders + + + + + + EOM parent of this object + + + + + + Composition of VBScripts + + + + + + The name of the VBScript folder + + + + + + Represents a library type made from a VBScript + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Name + + + + + + Represents a library type version made from a VBScript + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + System folder containing VBScripts & VBScript user folders + + + + + Target for instantiation of a library type-version + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of VBScript user folders + + + + + + EOM parent of this object + + + + + + Composition of VBScripts + + + + + + User folder containing VBScripts & VBScript user folders + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of VBScript user folders + + + + + + EOM parent of this object + + + + + + Composition of VBScripts + + + + + + The name of the VBScript user folder + + + + + + Composition of VBScriptUserFolders + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates a VBScript user folder + + Name of folder to be created + Siemens.Engineering.Hmi.RuntimeScripting.VBScriptUserFolder + + + + Finds a given VBScript user folder + + Name to find + Siemens.Engineering.Hmi.RuntimeScripting.VBScriptUserFolder + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a screen + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Simatic ML export of a screen + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the screen + + + + + + Composition of Screens + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create screen from type version + + screen version + Siemens.Engineering.Hmi.Screen.Screen + + + + Create Screen from MasterCopy + + The source master copy + Siemens.Engineering.Hmi.Screen.Screen + + + + Simatic ML import of a screen + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.Hmi.Screen.Screen> + + + + Finds a given screen + + Name to find + Siemens.Engineering.Hmi.Screen.Screen + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a screen folder + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of screen user folders + + + + + + EOM parent of this object + + + + + + Composition of screens + + + + + + The name of the screen folder + + + + + + Represents the screen global elements + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Simatic ML export of screen global elements + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents a library type made from a screen + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Name + + + + + + Represents a library type version made from a screen + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Editor for elements in the overview + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Simatic ML export of a screen overview + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Pop-up screen + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Common export + + Path to the Simatic ML file + Determines whether the default values are exported or not + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Gets or sets the screen name. + + + + + + Composition of popup screens. + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create ScreenPopup from MasterCopy + + The source master copy + Siemens.Engineering.Hmi.Screen.ScreenPopup + + + + Import Action + + Path to the Simatic ML file + Options to use for the Import + System.Collections.Generic.IList<Siemens.Engineering.Hmi.Screen.ScreenPopup> + + + + Finds a given screen popup + + Name to find + Siemens.Engineering.Hmi.Screen.ScreenPopup + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Folder containing screen popups + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of screen popup user folders + + + + + + EOM parent of this object + + + + + + Composition of screen popups + + + + + + The name of the screen popup folder + + + + + + System folder containing screen popups + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of screen popup user folders + + + + + + EOM parent of this object + + + + + + Composition of screen popups + + + + + + User folder containing screen popups + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of screen popup user folders + + + + + + EOM parent of this object + + + + + + Composition of screen popups + + + + + + The name of the screen template user folder + + + + + + Composition of ScreenPopupUserFolders + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates a screen popup user folder + + Name of folder to be created + Siemens.Engineering.Hmi.Screen.ScreenPopupUserFolder + + + + Finds a given screen popup user folder + + Name to find + Siemens.Engineering.Hmi.Screen.ScreenPopupUserFolder + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Slide-In screen + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Common export + + Path to the Simatic ML file + Determines whether the default values are exported or not + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Type of a Slide-In screen. + + + + + + Composition of slidein screens. + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Import Action + + Path to the Simatic ML file + Options to use for the Import + System.Collections.Generic.IList<Siemens.Engineering.Hmi.Screen.ScreenSlidein> + + + + Find a slidein screen. + + Slidein to find + Siemens.Engineering.Hmi.Screen.ScreenSlidein + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Folder for slide-in screens + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Returns a collection of slide-in screens in that folder. + + + + + + System folder containing screens + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of screen user folders + + + + + + EOM parent of this object + + + + + + Composition of screens + + + + + + Represents a screen template + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Simatic ML export of a screen template + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the screen template + + + + + + Composition of ScreenTemplates + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create ScreenTemplate from MasterCopy + + The source master copy + Siemens.Engineering.Hmi.Screen.ScreenTemplate + + + + Simatic ML import of a screen template + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.Hmi.Screen.ScreenTemplate> + + + + Finds a given screen template + + Name to find + Siemens.Engineering.Hmi.Screen.ScreenTemplate + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Folder containing screen templates + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of screen template user folders + + + + + + EOM parent of this object + + + + + + Composition of screen templates + + + + + + The name of the screen template folder + + + + + + System folder containing screen templates + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of screen template user folders + + + + + + EOM parent of this object + + + + + + Composition of screen templates + + + + + + User folder containing screen templates + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of screen template user folders + + + + + + EOM parent of this object + + + + + + Composition of screen templates + + + + + + The name of the screen template user folder + + + + + + Composition of ScreenTemplateUserFolders + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates a screen template user folder + + Name of folder to be created + Siemens.Engineering.Hmi.Screen.ScreenTemplateUserFolder + + + + Finds a given screen template user folder + + Name to find + Siemens.Engineering.Hmi.Screen.ScreenTemplateUserFolder + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + User folder containing screens + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of screen user folders + + + + + + EOM parent of this object + + + + + + Composition of screens + + + + + + The name of the screen user folder + + + + + + Composition of ScreenUserFolders + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates a screen user folder + + Name of folder to be created + Siemens.Engineering.Hmi.Screen.ScreenUserFolder + + + + Finds a given screen user folder + + Name to find + Siemens.Engineering.Hmi.Screen.ScreenUserFolder + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Defines the available Slide-In screen types. + + + + + Slide-In screen type bottom. + + + + + Slide-In screen type left. + + + + + Slide-In screen type right. + + + + + Slide-In screen type top. + + + + + Represents a library type made from a style + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Name + + + + + + Represents a library type version made from a style + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Represents a library type made from a style sheet + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Name + + + + + + Represents a library type version made from a style sheet + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Defindes the VisibilityModes + + + + + VisibilityMode fade out + + + + + VisibilityMode show always + + + + + VisibilityMode show never + + + + + Represents a library type made from a Udt + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Name + + + + + + Represents a library type version made from a Udt + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents an Hmi tag + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Simatic ML export of a tag + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the tag + + + + + + Composition of (Hmi)Tags + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create Tag from MasterCopy + + The source master copy + Siemens.Engineering.Hmi.Tag.Tag + + + + Simatic ML import of a tag + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.Hmi.Tag.Tag> + + + + Finds a given tag + + Name to find + Siemens.Engineering.Hmi.Tag.Tag + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Folder containing Hmi tag tables & Hmi tag user folders + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of tag user folders + + + + + + EOM parent of this object + + + + + + Composition of Hmi tag tables + + + + + + The name of the tag folder + + + + + + System folder containing Hmi tag tables & Hmi tag user folders + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Get the default Hmi tag table + + + + + + Composition of tag user folders + + + + + + EOM parent of this object + + + + + + Composition of Hmi tag tables + + + + + + Represents an Hmi tag table + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Simatic ML export of a tag table + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Composition of Hmi tags + + + + + + Gets a value that identifies this is the default tag table + + + + + + The name of the tag table + + + + + + Composition of (Hmi)TagTables + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create TagTable from MasterCopy + + The source master copy + Siemens.Engineering.Hmi.Tag.TagTable + + + + Simatic ML import of a tag table + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.Hmi.Tag.TagTable> + + + + Finds a given tag table + + Name to find + Siemens.Engineering.Hmi.Tag.TagTable + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + User folder containing Hmi tag tables & Hmi tag user folders + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of tag user folders + + + + + + EOM parent of this object + + + + + + Composition of Hmi tag tables + + + + + + The name of the tag user folder + + + + + + Composition of (Hmi)TagUserFolders + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates a tag user folder + + Name of folder to be created + Siemens.Engineering.Hmi.Tag.TagUserFolder + + + + Finds a given tag user folder + + Name to find + Siemens.Engineering.Hmi.Tag.TagUserFolder + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a graphic list + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Simatic ML export of a graphic list + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the graphic list + + + + + + Composition of GraphicLists + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Simatic ML import of a graphic list + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.Hmi.TextGraphicList.GraphicList> + + + + Finds a given graphic list + + Name to find + Siemens.Engineering.Hmi.TextGraphicList.GraphicList + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a text list + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Simatic ML export of a text list + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the text list + + + + + + Composition of TextLists + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Simatic ML import of a text list + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.Hmi.TextGraphicList.TextList> + + + + Finds a given text list + + Name to find + Siemens.Engineering.Hmi.TextGraphicList.TextList + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents the software components of a Hmi + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + AlarmClasses collection + + + + + + Specifies HmiAlarmLog collection + + + + + + AnalogAlarm collection + + + + + + Specifies HmiAuditTrail collection + + + + + + HmiConnection Collection + + + + + + Specifies HmiDataLog collection + + + + + + DiscreteAlarms collection + + + + + + OpcUaAlarmTypes collection + + + + + + Plant object tags + + + + + + ScreenGroupComposition + + + + + + HmiScreen compostition + + + + + + Represents the HmiScripts + + + + + + Hmi system tag collection + + + + + + TagGroupComposition + + + + + + Hmi tagtables + + + + + + Hmi tag collection + + + + + + Runtime settings of the hmi device + + + + + + This class hold the common properties of AlarmClass, AnalogAlarm, DiscretAlarm + + + + + Validates the object + + + + + Validates the object + + System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Validates the HmiUnified object + + System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Name of the object + + + + + + Base class of user group + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Error object that notifies the errors associated with a particular property + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Errors associated with the property + + + + + + Name of the property + + + + + + Warnings associated with the property + + + + + + IChromDataExchangeExport Interface + + + + + Export script module + + Path of Destination + System.Collections.Generic.IEnumerable<System.IO.FileInfo> + + + + Export script module under a different file name + + Path of Destination + Name of File + System.Collections.Generic.IEnumerable<System.IO.FileInfo> + + + + Plant object + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Plant object interface members + + + + + + Plant object type + + + + + + Plant object interface + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Validates the object + + System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Get/set comment of interface + + + + + + Members of the plant object interface + + + + + + EOM parent of this object + + + + + + Plant object interface access mode + + + + + + The Acquisition cycle attribute + + + + + + Plant object interface AcquisitionMode + + + + + + The Hmi Connection + + + + + + Data type of the Plant object interface + + + + + + Hmi data type + + + + + + Plant object interface Data type length + + + + + + Name of Plant object interface + + + + + + The Persistence attribute + + + + + + The Plc Name Attribute + + + + + + The Plc Tag attribute + + + + + + Collection of Plant object interfaces + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds plant object interface + + Name of plant object interface + Siemens.Engineering.HmiUnified.Cpm.PlantObjectInterface + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Plant object interface member + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Validates the object + + System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Get/set comment of interface member + + + + + + Plant object logging tag collection + + + + + + Members of the plant object interface member + + + + + + EOM parent of this object + + + + + + DataType of the Plant object interface member + + + + + + Hmi data type + + + + + + Upper limit + + + + + + Lower limit + + + + + + Initial value attribute + + + + + + Plant object interface member DataTypeLength + + + + + + Name of Plant object interface member + + + + + + The SubstituteValue + + + + + + Collection of Plant object interface members + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds plant object interface member + + Name of plant object interface member + Siemens.Engineering.HmiUnified.Cpm.PlantObjectInterfaceMember + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents the plant object logging tag + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Compression Delay + + + + + + Compression Mode + + + + + + Logging Cycle + + + + + + Logging Cycle Factor + + + + + + Reference to the used data log configuration + + + + + + Defines the Higher limit + + + + + + LimitScope of Hmi Logging Tag + + + + + + Logging Mode + + + + + + Defines the Lower limit + + + + + + Name of the Logging Tag + + + + + + Smoothing delta value + + + + + + Smoothing max time + + + + + + Smoothing min time + + + + + + Smoothing mode of the logging tag + + + + + + Source Logging Tag + + + + + + TriggerMode property + + + + + + TriggerTag Value + + + + + + TriggerTagBitNumber + + + + + + PlantObject LoggingTag Aggregation Mode enum + + + + + None value of enum + + + + + Minimum - Mode + + + + + Maximum Mode + + + + + MinimumWithTimeStamp + + + + + MinimumWithTimeStamp + + + + + Sum - Compression mode + + + + + Time average stepped + + + + + Average - Compression Mode + + + + + End - Compression Mode + + + + + Represents plant object logging tag composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Find method for plant object logging tag + + Name of the plant object logging tag + Siemens.Engineering.HmiUnified.Cpm.PlantObjectLoggingTag + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Defines the limit scope for the plant object logging tag + + + + + Hmi LimitScope - NoLimitsUsed + + + + + Hmi LimitScope - Greater + + + + + Hmi LimitScope - Less + + + + + Hmi LimitScope - GreaterOrEqual + + + + + Hmi LimitScope - LessOrEqual + + + + + Hmi LimtScope - WithinLimits + + + + + Hmi LimitScope - WithinOrEqualLimits + + + + + Hmi LimitScope - OutsideLimits + + + + + Hmi LimtScope - OutsideOrEqualLimits + + + + + Plant object Logging mode enum + + + + + HmiLoggingMode - undefined + + + + + Logging mode - cyclic + + + + + Logging mode - on demand + + + + + Logging mode - on change + + + + + Plant object logging tag smoothing mode + + + + + No Smoothing Mode + + + + + Hmi Smoothing Mode - Value + + + + + Compare Values + + + + + Hmi Smoothing Mode - ValueRelative + + + + + Hmi Smoothing Mode - SwingingDoor + + + + + PlantObject LoggingTag TriggerMode + + + + + None value of enum + + + + + RisingEdge enum value + + + + + FallingEdge enum value + + + + + RisingAndFallingEdge + + + + + Plant object tag access mode + + + + + The none means zero + + + + + Address Access mode Absolute + + + + + Symbolic Address Access mode + + + + + AcquisitionMode of plant object tag + + + + + The None Means zero + + + + + cyclic on use + + + + + the CyclicContinuous mode + + + + + plant object tag limit value type + + + + + The None Means zero + + + + + Description for constant + + + + + Description for tag + + + + + Lower limit range + + + + + To set value range + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Value of upper/lower + + + + + + Get and set Vlaue type + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Plant object tag substitute value + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Get or set substitute value + + + + + + Get and set substitute value + + + + + + Plant object tag substitute value usage + + + + + No substitute value usage + + + + + communication error + + + + + limit is violated + + + + + communication error and limit violation + + + + + Range for limit high + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Plant View + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Collection of PlantViewNodes + + + + + + Assigned hmi device + + + + + + Name of the plant view + + + + + + Plant View composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds the view node by hierarchy path + + Hierarchy path of the plant view node + Siemens.Engineering.HmiUnified.Cpm.PlantViewNode + + + + Creates the view + + Name of view + Siemens.Engineering.HmiUnified.Cpm.PlantView + + + + Finds view + + Name of view + Siemens.Engineering.HmiUnified.Cpm.PlantView + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + View node + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Collection of PlantViewNodes + + + + + + Name of the plant view node + + + + + + Plant object + + + + + + PlantView of the node + + + + + + Path of the node in the hierarchy + + + + + + View node composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates view node + + Name of view node + Siemens.Engineering.HmiUnified.Cpm.PlantViewNode + + + + Creates a view node with plant object + + View node name + Name of the plant object type + Siemens.Engineering.HmiUnified.Cpm.PlantViewNode + + + + Finds view node + + Name of view node + Siemens.Engineering.HmiUnified.Cpm.PlantViewNode + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Specifies alarm class. + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies Alarm incoming outgoing acknowledge or AcknowledgedCleared status + + + + + + Specifies Alarm incoming acknowledge or acknowledged status + + + + + + Specifies Alarm coming going or cleared status + + + + + + Common Alarm Class for Alarm + + + + + + Specifies the alarm class number that identifies the alarm class in runtime + + + + + + Specifies if alarm class is system provided + + + + + + Alarm Log for alarm class + + + + + + Name + + + + + + Specifies the alarm priority + + + + + + Alarm incoming or raised status + + + + + + Defines the statemachine of the alarm class + + + + + + HmiAlarmClassComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create new object + + Name + Siemens.Engineering.HmiUnified.HmiAlarm.HmiAlarmClass + + + + Find + + Name + Siemens.Engineering.HmiUnified.HmiAlarm.HmiAlarmClass + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + HmiAnalogAlarm + + + + + This is base class for AnalogAlarm and DiscreteAlarm + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Specifies event/alarm text of alarm. + + + + + + Specifies event/alarm text of alarm 1. + + + + + + Specifies event/alarm text of alarm 2. + + + + + + Specifies event/alarm text of alarm 3. + + + + + + Specifies event/alarm text of alarm 4. + + + + + + Specifies event/alarm text of alarm 5. + + + + + + Specifies event/alarm text of alarm 6. + + + + + + Specifies event/alarm text of alarm 7. + + + + + + Specifies event/alarm text of alarm 8. + + + + + + Specifies event/alarm text of alarm 9. + + + + + + Specifies the multilingual InfoText of the alarm + + + + + + EOM parent of this object + + + + + + Specifies the alarm class + + + + + + Specifies the alarm pararmeters + + + + + + Specifies the area of the alarm + + + + + + Alarm row identification Number + + + + + + Specifies the origin of the alarm + + + + + + Specifies the alarm priority + + + + + + Specifies the tag that raise/trigger the alarm + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Specifies Limit Mode. + + + + + + Condition Value can be specified as constant value. + + + + + + Name + + + + + + Specifies the address of the trigger tag + + + + + + HmiAnalogAlarm Composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create + + Name + Siemens.Engineering.HmiUnified.HmiAlarm.HmiAnalogAlarm + + + + Find + + Name + Siemens.Engineering.HmiUnified.HmiAlarm.HmiAnalogAlarm + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + HmiDiscreteAlarm + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Control Tag for Acknowledgement of discrete alarm + + + + + + Control tag bit number for Acknowledgement of discrete alarm + + + + + + Acknowledgment tag for discrete alarm + + + + + + Acknowledgment tag bit number for discrete alarm + + + + + + Name + + + + + + Trigger bit on the trigger tag + + + + + + Specifies the address of the trigger bit + + + + + + Specify trigger mode for discrete alarm + + + + + + HmiDiscreteAlarmComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create + + Name + Siemens.Engineering.HmiUnified.HmiAlarm.HmiDiscreteAlarm + + + + Find + + Name + Siemens.Engineering.HmiUnified.HmiAlarm.HmiDiscreteAlarm + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Specifies the alarm status visuals + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the background color + + + + + + Specifies the flashing color + + + + + + Specifies the text color + + + + + + HmiAcknowledgedClearedState + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + HmiAcknowledgedState + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + HmiAlarmCondition + + + + + LowerLimit + + + + + UpperLimit + + + + + Equal + + + + + NotEqual + + + + + LowerLimitOrEqual + + + + + UpperLimitOrEqual + + + + + HmiAlarmStateMachine + + + + + Raise + + + + + RaiseClear + + + + + RaiseRequiresAcknowledgement + + + + + RaiseClearOptionalAcknowledgement + + + + + RaiseClearRequiresAcknowledgement + + + + + RaiseClearRequiresAcknowledgementAndReset + + + + + HmiClearedState + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + HmiDiscreteAlarmTriggerMode + + + + + OnRisingEdge + + + + + OnFallingEdge + + + + + HmiRaisedState + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Communication driver specific properties + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Interface property information + + + + + + Interface property name + + + + + + Value of interface property + + + + + + DriverPropertyComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds DriverProperty + + Name of DriverProperty + Siemens.Engineering.HmiUnified.HmiConnections.DriverProperty + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents the HmiConnection + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Validates the object + + System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Driver specific properties collection + + + + + + EOM parent of this object + + + + + + Additional comments if any + + + + + + Gives the communication driver + + + + + + Connection initially will be online or not in runtime. + + + + + + Parameters of connection provided in key value pair separated by semicolon. For Example: IntialAddress string for S7 300/400 connection “CommunicationInterface=Industrial Ethernet;HostAddress=192.168.0.2;HostAccessPoint=S7Online;PlcAddress=192.168.0.2;ExpansionSlot=2;Rack=0;IsCyclicOperation=true” + + + + + + Name of connection + + + + + + Shows access point of Partner (eg PLC) + + + + + + Name of connected partner + + + + + + Name of the station to which partner is located. + + + + + + Represents the Composition of Hmi Connections + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create method for Connection + + Connection Name + Siemens.Engineering.HmiUnified.HmiConnections.HmiConnection + + + + Find method for Connection + + Connection Name + Siemens.Engineering.HmiUnified.HmiConnections.HmiConnection + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Communication driver specific properties + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Returns the node id of an OPC UA alarm for a certain display name. + + The display name + System.String + + + + Reads the OPC UA alarm information from a xml file. + + Absolute file path to xml file + System.Boolean + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Returns the display names for opc ua alarms. + + + + + + Alarm logging + + + + + Base class for Alarm and Data logging + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Log backup + + + + + + Log segment for backup + + + + + + Logging settings + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Name + + + + + + Alarm log collection + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create method for alarm log + + Name + Siemens.Engineering.HmiUnified.HmiLogging.HmiAlarmLog + + + + Find method of alarmlog + + Name + Siemens.Engineering.HmiUnified.HmiLogging.HmiAlarmLog + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Audit trail configuration + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Name + + + + + + Audit trail collection + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Data log configuration + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Name + + + + + + Data log collection + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create Method of HmiDataLog + + Name + Siemens.Engineering.HmiUnified.HmiLogging.HmiDataLog + + + + Find method of HmiDataLog + + Name + Siemens.Engineering.HmiUnified.HmiLogging.HmiDataLog + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + DeviceNode + + + + + None enum value + + + + + Off enum value + + + + + Default enum value + + + + + Local enum value + + + + + Device Node SD-X51 + + + + + Device Node USB-X61 + + + + + Device Node -USB - X62 + + + + + HmiBackupMode + + + + + NoBackup + + + + + BackupToPrimaryPath + + + + + Logging backup configuration + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Defines the backup mode + + + + + + Logging backup path + + + + + + Specifies the time period type + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Return timeperiod in double + + System.Double + + + + Return Log Duration in String + + System.String + + + + Set timeperiod in double + + Day + hours + minutes + seconds + hundred nanoseconds + System.String + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies number of days + + + + + + Specifies number of hours + + + + + + Specifies minutes + + + + + + Specifies seconds + + + + + + Hundred Nonoseconds + + + + + + Logging segment configuration + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Defines the maximum size of a segment of the log on the storage medium in units of megabytes. When the value is set to 0, the size of the segment is not considered. + + + + + + Start time of the logging segment + + + + + + Segment Time Period + + + + + + Logging configuration + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Maximum size of data storage in MB + + + + + + Log Time period + + + + + + StorageDevice + + + + + + Path for storage + + + + + + Segment duration Class + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Method for getting segment timeperiod + + System.Double + + + + Return Segment Duration in String + + System.String + + + + Method for setting segment timeperiod + + days + hours + minutes + seconds + Hundred Nanoseconds + System.String + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Days + + + + + + Hours + + + + + + Minutes + + + + + + Seconds + + + + + + Hundred Nanoseconds + + + + + + Specifies OPC alarm and condition type class. + + + + + Sets NodeId and Connection together + + Describes Node Id + Describes Connection Name + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies Alarm class + + + + + + Specifies the Area Text + + + + + + Specifies Condition type ID + + + + + + Specifies Connection + + + + + + Name + + + + + + Specifies Node ID + + + + + + HmiOpcUaAlarmTypeComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create Opc Ua Alarm with Connection and NodeId + + Specifies NodeId + Specifies Connection + Specifies Name + Siemens.Engineering.HmiUnified.HmiOpcUaAlarm.HmiOpcUaAlarmType + + + + Find + + Name + Siemens.Engineering.HmiUnified.HmiOpcUaAlarm.HmiOpcUaAlarmType + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Hmi Tag Access Mode + + + + + The none means zero + + + + + Address Access mode Absolute + + + + + Symbolic Address Access mode + + + + + AcquisitionMode of Hmi Tag + + + + + The None Means zero + + + + + The OnDemand Mode + + + + + cyclic on use + + + + + the CyclicContinuous mode + + + + + Confirmation Type of Hmi Tag + + + + + None + + + + + Confirmation + + + + + Reason + + + + + ConfirmationAndComment + + + + + Signature + + + + + SignatureAndComment + + + + + Description for limit value type + + + + + The None Means zero + + + + + Description for constant + + + + + Description for tag + + + + + Description for substitute value + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Get or set substitute value + + + + + + Get and set substitute value + + + + + + Hmi Substitute Value Usage + + + + + No substitute value usage + + + + + communication error + + + + + limit is violated + + + + + communication error and limit violation + + + + + Hmi system tag + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Data type of the system tag + + + + + + Name of system tag + + + + + + Collection of hmi system tag + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds the hmi system tag based on the given name + + Hmi system tag name + Siemens.Engineering.HmiUnified.HmiTags.HmiSystemTag + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Hmi tag class + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Validates the object + + System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + MultilingualTextItemComposition for Comment property of Tag. Refer documentation for get and set of language specific comment + + + + + + Represents + + + + + + Members of the composite Hmi tag + + + + + + EOM parent of this object + + + + + + The Hmi Tag Access Mode + + + + + + The Acquisition cycle attribute + + + + + + Hmi Tag AcquisitionMode + + + + + + The Hmi Tag Address Attribute + + + + + + Provide different acknowledgement options to runtime user when the GMP tag is changed + + + + + + The Hmi Connection + + + + + + DataType of the Tag + + + + + + Determines whether Tag is GMP relevant or not + + + + + + Hmi data type + + + + + + Hmi end value + + + + + + Hmi start value + + + + + + Upper limit + + + + + + Lower limit + + + + + + Initial value attribute + + + + + + Linear scaling + + + + + + Mandatory Comments + + + + + + The hmi tag DataTypeLength + + + + + + Name of Hmi Tag + + + + + + The Persistence attribute + + + + + + Plc end value + + + + + + The Plc Name Attribute + + + + + + Plc start value + + + + + + The Plc Tag attribute + + + + + + The required rights for electronic signature + + + + + + Scope of the tag + + + + + + The SubstituteValue + + + + + + The parent tag table + + + + + + Indicates different types of hmi tag + + + + + + The Update Id Attribute + + + + + + Collection of hmi tags + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Export tags + + Destination Location where file is exported + System.Collections.Generic.IEnumerable<System.IO.FileInfo> + + + + Export tags + + Destination Location where file is exported + Name of the object to be exported + System.Collections.Generic.IEnumerable<System.IO.FileInfo> + + + + Import tags + + Source Location from where file is imported + System.Boolean + + + + Import tags + + Source Location from where file is imported + Name of the object to be imported + System.Boolean + + + + Creates hmi tag + + Name of the hmi tag + Siemens.Engineering.HmiUnified.HmiTags.HmiTag + + + + Creates hmi tag under a specified tag table + + Name of the hmi tag + Name of the parent hmi tagTable + Siemens.Engineering.HmiUnified.HmiTags.HmiTag + + + + Finds the hmi tag based on the given name + + Hmi tag name + Siemens.Engineering.HmiUnified.HmiTags.HmiTag + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Scope of the tag + + + + + System-wide tag + + + + + Session-local tag + + + + + Hmi tag tables + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Hmi tag collection + + + + + + Name of HmitagTable + + + + + + HmitagTable composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates hmi tag table + + Name of Hmi tag table + Siemens.Engineering.HmiUnified.HmiTags.HmiTagTable + + + + Finding the given tagtable + + Name of hmi tagtable + Siemens.Engineering.HmiUnified.HmiTags.HmiTagTable + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Specifies the tag table user group + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + TagTableGroupComposition + + + + + + EOM parent of this object + + + + + + Tag Table Composition + + + + + + Specifies name of tag table user group + + + + + + TagTableGroupComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create + + Name + Siemens.Engineering.HmiUnified.HmiTags.HmiTagTableGroup + + + + Find a tag group + + Name + Siemens.Engineering.HmiUnified.HmiTags.HmiTagTableGroup + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Indicates different types of hmi tag + + + + + Simple Tag + + + + + Tag with User Defined Datatype + + + + + Array member of the UDT + + + + + The hmi tag Update Scope + + + + + The none means zero + + + + + The Update Scope Client Server wide + + + + + The UpdateScopte Local Hmi Device + + + + + Lower limit range + + + + + To set value range + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Value of upper/lower + + + + + + Get and set Vlaue type + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Range for limit high + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + LibraryType for UnifiedTypes in Library + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Hmi Aggregation Mode enum + + + + + None value of enum + + + + + Minimum - Mode + + + + + Maximum Mode + + + + + MinimumWithTimeStamp + + + + + MinimumWithTimeStamp + + + + + Sum - Compression mode + + + + + Time average stepped + + + + + Average - Compression Mode + + + + + End - Compression Mode + + + + + Defines the limit scope for the logging tag + + + + + Hmi LimitScope - NoLimitsUsed + + + + + Hmi LimitScope - Greater + + + + + Hmi LimitScope - Less + + + + + Hmi LimitScope - GreaterOrEqual + + + + + Hmi LimitScope - LessOrEqual + + + + + Hmi LimtScope - WithinLimits + + + + + Hmi LimitScope - WithinOrEqualLimits + + + + + Hmi LimitScope - OutsideLimits + + + + + Hmi LimtScope - OutsideOrEqualLimits + + + + + Hmi Logging mode enum + + + + + HmiLoggingMode - undefined + + + + + Logging mode - cyclic + + + + + Logging mode - on demand + + + + + Logging mode - on change + + + + + Represents the LoggingTag + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Validates the object + + System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Compression Delay + + + + + + Compression Mode + + + + + + Logging Cycle + + + + + + Logging Cycle Factor + + + + + + Reference to the used data log configuration + + + + + + Defines the Higher limit + + + + + + LimitScope of Hmi Logging Tag + + + + + + Logging Mode + + + + + + Defines the Lower limit + + + + + + Name of the Logging Tag + + + + + + Smoothing delta value + + + + + + Smoothing max time + + + + + + Smoothing min time + + + + + + Smoothing mode of the logging tag + + + + + + Source Logging Tag + + + + + + TriggerMode property + + + + + + TriggerTag Value + + + + + + TriggerTagBitNumber + + + + + + Represensts Logging Tag Composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create method for Logging Tag + + Name of the Logging Tag + Siemens.Engineering.HmiUnified.LoggingTags.HmiLoggingTag + + + + Find method for Logging Tag + + Name of the Logging Tag + Siemens.Engineering.HmiUnified.LoggingTags.HmiLoggingTag + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Hmi Smoothing Mode + + + + + No Smoothing Mode + + + + + Hmi Smoothing Mode - Value + + + + + Compare Values + + + + + Hmi Smoothing Mode - ValueRelative + + + + + Hmi Smoothing Mode - SwingingDoor + + + + + HmiTiggerMode enum + + + + + None enum + + + + + RisingEdge enum + + + + + FallingEdge enum + + + + + RisingAndFallingEdge + + + + + Language and font + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Enables language and font + + + + + + Enables the language and font for logging + + + + + + Fixed font 1 + + + + + + Fixed font 2 + + + + + + Fixed font 3 + + + + + + Fixed font 4 + + + + + + Language name + + + + + + Order of language and font entry + + + + + + Language and font list + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Runtime Settings of MaxLogin + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Validates the object + + System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Enable locking user out after a number of unsuccessful attempts + + + + + + The number of unsuccessful attempts after a user is locked out + + + + + + Runtime Settings of OPC UA server + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Validates the object + + System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies whether hmi device should operate as OPC server + + + + + + It allows the alarms operations + + + + + + Enables the Alarm and conditions to allow the alarm operations + + + + + + Enables the guest user authentication + + + + + + Enables local discovery server for OPC UA server + + + + + + Enables the username and password authentication + + + + + + This port number will used to connect OPC UA server + + + + + + Maximum number of items to monitor per subscription count + + + + + + Maximum number of OPC UA sessions + + + + + + Maximum session timeout value + + + + + + Minimum interval for publishing + + + + + + 128bit signed security mode used for OPC UA server + + + + + + 128bit signed and encrypted security mode used for OPC UA server + + + + + + 256bit signed security mode used for OPC UA server + + + + + + 256bit signed and encrypted security mode used for OPC UA server + + + + + + 256 bit Sha signed security mode used for OPC UA server + + + + + + 256bit Sha 256 signed and encrypted security mode used for OPC UA server + + + + + + Aes128Sha256RsaOaepSign security for OPC UA server + + + + + + Aes128Sha256RsaOaepSignEncrypt security for OPC UA Server + + + + + + Aes256Sha256RsaPssSign security for OPC UA Server + + + + + + Aes256Sha256RsaPssSignEncrypt security for OPC UA Server + + + + + + No security is used for OPC UA server + + + + + + Runtime setting of Process diagnostics + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Expand alarm text with absolute address of faulty operand. + + + + + + Extend text with All faulty operands + + + + + + Expand alarm text with comment of faulty operand. + + + + + + Select which alarm text should be expanded with fault operand information. + + + + + + Expand alarm text with symbol of faulty operand. + + + + + + Expand alarm text with value of faulty operand. + + + + + + Indicates whether device participates in process diagnostics + + + + + + Runtime Settings of Reporting + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Activate Reporting + + + + + + ReportingDatabaseStorage Storage Medium + + + + + + ReportingDatabaseStoragePath Storage Medium + + + + + + ReportingMainStorage Storage Medium + + + + + + ReportingMainStoragePath Storage Medium + + + + + + Runtime resource settings + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Enable this setting to improve the Runtime performance when using high resolution graphics with screen objects. This might affect the zoom/declutter functionality. + + + + + + Runtime settings of hmi device + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Validates RuntimeSettings + + System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The attribute allow to configure URL, so that the runtime client is moved to url when is logged off + + + + + + Bit selection for multiple bit tag dynamization + + + + + + Indicates the setting for bit number evaluation strategy of resource lists. + + + + + + Indicates the bitselectionfortagdynamization in runtime settings. + + + + + + Determine whether device is GMP relevant or not + + + + + + Indicate Reporting Setting + + + + + + List of language and font entries + + + + + + Indicates the MaxLogin settings in runtime settings + + + + + + Indicated the opc ua settings in runtime settings + + + + + + Indicates the process diagnostics runtime settings + + + + + + Indicates the runtime resource settings.This functionality will be available in future version. + + + + + + Indicated the screen resolution in runtime settings + + + + + + Name of the start up screen for hmi device + + + + + + BitNumberEvaluationType enum to select values when multibit is on. + + + + + Exact match for bit selection + + + + + Least significant bit for bit selection + + + + + Criteria Analysis Extended Text + + + + + None + + + + + EventText + + + + + InfoText + + + + + AdditionalText1 + + + + + AdditionalText2 + + + + + AdditionalText3 + + + + + AdditionalText4 + + + + + AdditionalText5 + + + + + AdditionalText6 + + + + + AdditionalText7 + + + + + AdditionalText8 + + + + + AdditionalText9 + + + + + Extend text With + + + + + The First Faulty Operand + + + + + All Faulty Operand + + + + + ScreenResolution + + + + + ScreenResolution1980X1280 + + + + + ScreenResolution1920X1200 + + + + + ScreenResolution1920X1080 + + + + + ScreenResolution1680X1050 + + + + + ScreenResolution1600X1200 + + + + + ScreenResolution1440X900 + + + + + ScreenResolution1366X768 + + + + + ScreenResolution1280X1024 + + + + + ScreenResolution1280X800 + + + + + ScreenResolution1200X1920 + + + + + ScreenResolution1200X1600 + + + + + ScreenResolution1080X1980 + + + + + ScreenResolution1080X1920 + + + + + ScreenResolution1050X1680 + + + + + ScreenResolution1024X1280 + + + + + ScreenResolution1024X768 + + + + + ScreenResolution900X1440 + + + + + ScreenResolution800X1280 + + + + + ScreenResolution800X600 + + + + + ScreenResolution800X480 + + + + + ScreenResolution768X1366 + + + + + ScreenResolution768X1024 + + + + + ScreenResolution640X480 + + + + + ScreenResolution600X800 + + + + + ScreenResolution480X800 + + + + + ScreenResolution480X640 + + + + + ScreenResolution480X272 + + + + + ScreenResolution320X240 + + + + + ScreenResolution272X480 + + + + + ScreenResolution240X320 + + + + + ScreenResolution240X80 + + + + + StorageLocation + + + + + None Storage Medium + + + + + Off Storage Medium + + + + + Default StorageMedium + + + + + Local Storage Medium + + + + + SDX51 Storage Medium + + + + + USBX61 Storage Medium + + + + + USBX62 Storage Medium + + + + + Internal Storage Medium + + + + + ProjectFolder Storage Medium + + + + + Dummy Description + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Export script module + + Location where the script module should be exported + System.Collections.Generic.IEnumerable<System.IO.FileInfo> + + + + Export script module with specific file name + + Location where the script module should be exported + Name of the exported file + System.Collections.Generic.IEnumerable<System.IO.FileInfo> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Name attribute description + + + + + + Script Module Description + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Export scripts + + Path to destinationLocation + System.Collections.Generic.IEnumerable<System.IO.FileInfo> + + + + Import scripts + + path to sourcelocation + System.Boolean + + + + Import scripts + + path to sourcelocation + Name of the imported file + System.Boolean + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Base class for all screens and screen objects. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Validates the object + + System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.Common.HmiValidationResult> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Dynamization collection + + + + + + EOM parent of this object + + + + + + Property event handlers + + + + + + Migration hint: Was called RulerView in Classic + + + + + Base class for all controls that can be shown within a window + + + + + Base class for anything that is potentially displayed within a window, such as screen windows or advanced controls + + + + + Base class for all screen items that can be configured within a screen + + + + + This feature carries all properties that are shared by screen items and the TopLevelScreenWindow (which do not share some base class in the screen model) + + + + + Specifies whether the selected object can be operated in runtime + + + + + + Configured name of the screen item + + + + + + StyleItem's class will be resolved by name + + + + + + Screen items specifying a tab index of 0 are not part of the tab order + + + + + + Specifies whether the selected object is visible + + + + + + Specifies the identifier feature of the object + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Read-Only property to summarize the current quality of the complete screen item + + + + + + Specifes whether the specified object can be operated in runtime. + + + + + + Configured name of the screen item + + + + + + With this Property, screen items can be configured to show no focus rect even if they have focus + + + + + + Specifies the style which is applied to the object + + + + + + Screen items specifying a tab index of 0 are not part of the tab order + + + + + + Specifies the visiblity of screen item. + + + + + + This feature defines all properties that are needed for a bounding box (widgets, windows and controls) or surface (non-centric shapes) + + + + + Specifies height in device independent units + + + + + + Specifies X coordinates in device independent units + + + + + + Specifies Y coordinates in device independent units + + + + + + Specifies width in device independent units + + + + + + This feature carries all properties relevant for (screen) windows, since HmiTopLevelScreenWindow is a root element that cannot be configured within a screen and does therefor not inherit from HmiScreenItemBase + + + + + Text to be shown in the caption of a screen window or windowed control + + + + + + Specifies the color of the Caption + + + + + + Specifes the icon on the window + + + + + + Specifies the window configuration like ShowCaption, ShowBorder, AlwaysOnTop. + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Text to be shown in the caption of a screen window or windowed control + + + + + + Specifies the color of the Caption + + + + + + Specifies height of the control window + + + + + + specifies the icon on the control window + + + + + + Specifies the value of the X coordinates of control window + + + + + + Specifies the value of the Y coordinates of control window + + + + + + Specifies the width of the control window + + + + + + Specifies the window configuration like ShowCaption, ShowBorder, AlwaysOnTop. + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the background color + + + + + + Returns the StatusBar object + + + + + + Returns the ToolBar object + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies whether the TrendCompanion snaps to the window of the associated TrendControls + + + + + + Container base + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Contained type + + + + + + HmiCustomWebControlContainer + + + + + TODO: Description needs to updated + + + + + Specifies access control for the screen item + + + + + + If set to true, the screen item configured within the screen (or a parent screen if not configured locally) enables the screen item only when the release button while the button is pressed + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiCustomWebControlContainer + + + + + + Interface properties Collection + + + + + + EOM parent of this object + + + + + + Specifies access control for the screen item + + + + + + If set to true, the screen item configured within the screen (or a parent screen if not configured locally) enables the screen item only when the release button while the button is pressed + + + + + + HmiCustomWidgetContainer + + + + + This base class is used for all simple screen items, which are all shapes and widgets but no advanced controls + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies access control for the screen item + + + + + + Specifies the opacity of the object values ranging (0 to 1) + + + + + + If set to true, the screen item configured within the screen (or a parent screen if not configured locally) enables the screen item only when the release button while the button is pressed + + + + + + Specifies ToolTipText + + + + + + Represents rotation feature + + + + + Specifies the rotation angle of the screen item in degree + + + + + + Specifies the Rotation placement wrt center + + + + + + Specifies the X coordinate of the rotation point + + + + + + Specifies the Y coordinate of the rotation point + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiCustomWidgetContainer + + + + + + Interface properties Collection + + + + + + EOM parent of this object + + + + + + in DIU + + + + + + Coordinates in DIU + + + + + + Specifies the rotation angle of the screen item in degree + + + + + + Specifies the RotationCenterPlacement works + + + + + + Specifies the X coordinate of the rotation point + + + + + + Specifies the Y coordinate of the rotation point + + + + + + Coordinates in DIU + + + + + + Visualize Quality + + + + + + in DIU + + + + + + This is the base class used by screens and screen templates + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies display name propoerty of the screen + + + + + + Specifies name of the screen. + + + + + + HmiScreenItemBaseComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create new object + + Name + Siemens.Engineering.HmiUnified.UI.Base.HmiScreenItemBase + + + + Create new custom container object + + Name + ContainedType Value + Siemens.Engineering.HmiUnified.UI.Base.HmiScreenItemBase + + + + Find + + Name + Siemens.Engineering.HmiUnified.UI.Base.HmiScreenItemBase + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Migration hint: Combines HmiFunctionTrend and HmiOnlineTrend functionality + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The space between TrendAreas + + + + + + Specifies whether extend ruler to axis. + + + + + + Specifies legend of the trendcontrol. + + + + + + Online = Diagram is updated with new values, Offline = Diagram is frozen, no new values are added + + + + + + TODO: Description needs to updated + + + + + + Specify whether to show ruler + + + + + + Control to display active pending alarms from the alarm service + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiAlarmControl + + + + + + EOM parent of this object + + + + + + Defines the flashing rate for alarms which have to be acknowledged + + + + + + Only considered with source type "ActiveAlarms" + + + + + + Only considered with source type "AlarmDefinition" + + + + + + Specifies the source of the alarms of the alarm window + + + + + + Accepts only columns of type HmiAlarmStatisticsColumnPart + + + + + + Accepts only columns of type HmiAlarmColumnPart + + + + + + Migration hint: Was "AutoScroll" in Classic + + + + + + If none of the Columns has a sort criteria, the DefaultSortDirection of the control is applied to the time column + + + + + + The specification of the filter syntax is defined in SDS CHROM General (please refer to "Query Language" chapter 4 + + + + + + Defines the flashing rate for alarms which have to be reset + + + + + + Supresses any flashing at control level + + + + + + Positive numbers according to the Microsoft time zone index value specification, negative numbers from CHROM (-1 = RH local) + + + + + + Specifies whether the configured color of the alarm is used + + + + + + Screenitem for managing ParameterControl (successor of classic Panel RecipeView) + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiDetailedParameterControl + + + + + + EOM parent of this object + + + + + + Specifies the type of table editing + + + + + + Specifies the font of the text + + + + + + Specifies the font color + + + + + + By enabling this property, the visibility of table can be controlled to make sure data is displayed only to authorised user + + + + + + If configured, the control won't allow changing the parameter set type + + + + + + Accepts only columns of type HmiDetailedParameterControlColumnPart + + + + + + Specifies the background color of the selected cells + + + + + + Specifies the foreground color of the selected cells + + + + + + Positive numbers according to the Microsoft time zone index value specification, negative numbers from CHROM (-1 = RH local) + + + + + + Faceplate concept according to SDS CHROM 30 Screens + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiFaceplateContainer + + + + + + Interface properties Collection + + + + + + EOM parent of this object + + + + + + Specifies whether the faceplate or container window shall adapt its size + + + + + + Specifies the rotation angle of the screen item in degree + + + + + + Specifies the RotationCenterPlacement works + + + + + + Specifies the X coordinate of the rotation point + + + + + + Specifies the Y coordinate of the rotation point + + + + + + Screenitem for displaying different function trends + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiFunctionTrendControl + + + + + + FunctionTrendAreas Collection + + + + + + EOM parent of this object + + + + + + Represents a media player embedded in a screen + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiMediaControl + + + + + + EOM parent of this object + + + + + + Specifies whether Autoplay is activated + + + + + + source of the media to be played (e + + + + + + Specifies the scaling of the video output + + + + + + Screenitem for managing different processes + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiProcessControl + + + + + + EOM parent of this object + + + + + + Specifies the type of table editing + + + + + + Specifies start and stop of the updating + + + + + + Accepts exactly one column of type HmiTimeRangeColumnPart and multiple HmiProcessColumnPart + + + + + + Used as kind of smoothing together with Factor + + + + + + Used as kind of smoothing together with Base + + + + + + Positive numbers according to the Microsoft time zone index value specification, negative numbers from CHROM (-1 = RH local) + + + + + + Control to display diagnostic information of devices connected + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiSystemDiagnosisControl + + + + + + EOM parent of this object + + + + + + Specifies Matrix View properties + + + + + + Show Status Path + + + + + + Accepts only columns of type HmiDataGridColumnPart + + + + + + Specifies System Diagnosis View Type Matrix or Diagnosis + + + + + + Positive numbers according to the Microsoft time zone index value specification, negative numbers from CHROM (-1 = RH local) + + + + + + Migration hint: Formerly known as HmiRulerView in Classic + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiTrendCompanion + + + + + + EOM parent of this object + + + + + + Specifies wether the companion will always be shown, or just if the parent's ShowRuler property is set + + + + + + Returns the SourceTrendControl object + + + + + + Positive numbers according to the Microsoft time zone index value specification, negative numbers from CHROM (-1 = RH local) + + + + + + Specifies the window display of TrendCompanion + + + + + + Accepts only columns of type HmiTrendColumnPart + + + + + + Accepts only columns of type HmiTrendColumnPart + + + + + + Accepts only columns of type HmiTrendColumnPart + + + + + + Takes trend controls back color as back color for each row in the grid + + + + + + Takes the individual trend color as font color for the corresponding entry in the grid + + + + + + Screenitem for managing different trends + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiTrendControl + + + + + + EOM parent of this object + + + + + + TrendAreas Collection + + + + + + Specifies whether the ruler is shown for the statistics area + + + + + + Positive numbers according to the Microsoft time zone index value specification, negative numbers from CHROM (-1 = RH local) + + + + + + Widget that can display Web content + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiWebControl + + + + + + EOM parent of this object + + + + + + String formatted URL pointing to the address the web browser shall display + + + + + + Base dynamization + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Dynamization type + + + + + + Property name + + + + + + Dynamization collection + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates dynamization object + + Property name + Siemens.Engineering.HmiUnified.UI.Dynamization.DynamizationBase + Consistency check failure + + + + Finds the dynamization + + Name of the property + Siemens.Engineering.HmiUnified.UI.Dynamization.DynamizationBase + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Type of dynamization + + + + + No dynamization + + + + + Tag dynamization + + + + + Script dynamization + + + + + Resource list dynmization + + + + + Flashing dynamization + + + + + Resource list dynamization + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Resource list object name + + + + + + Tag object name + + + + + + Tag dynamization + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Address of the tag + + + + + + Data type of the tag + + + + + + Plc Tag Name associated with Hmi Tag + + + + + + Read only + + + + + + Tag for the dynamization + + + + + + Use indirect addressing + + + + + + Value Converter + + + + + + Flashing condition + + + + + Flashing is always inactive + + + + + Flashing is active at any time + + + + + Flashing is only active if one of the TagDynamics associated with the same screen item indicates a range violation + + + + + Flashing dynamization + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Alternate color + + + + + + Default color + + + + + + Flashing condition + + + + + + Flashing rate + + + + + + Flashing rate + + + + + Flashing toggles between on and off state every 2 seconds (0.5 Hz) + + + + + Flashing toggles between on and off state every second (1 Hz) + + + + + Flashing toggles between on and off state every 500 milliseconds (2 Hz) + + + + + Hmi Script interface + + + + + Checks the syntax of the script + + Siemens.Engineering.HmiUnified.Common.HmiValidationResult + + + + Script method is async + + + + + + Global definition area script + + + + + + Script code + + + + + + Script dynamization + + + + + Checks the syntax of the script + + Siemens.Engineering.HmiUnified.Common.HmiValidationResult + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Script method is async + + + + + + Global definition area script + + + + + + Script code + + + + + + Trigger for script + + + + + + Trigger for script dynamization + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Cycle for duration + + + + + + Tags for trigger + + + + + + Type of trigger + + + + + + Type of trigger + + + + + Disabled trigger + + + + + 1 sec cycle + + + + + 2 sec cycle + + + + + Cycle trigger + + + + + Tags trigger + + + + + 5 sec cycle + + + + + Automatic tags + + + + + 10 sec cycle + + + + + 100ms cycle + + + + + 250ms cycle + + + + + 500ms cycle + + + + + Bitmask type for bitmask entry + + + + + SingleBit + + + + + MultiBit + + + + + Condition Type for Mapping Table + + + + + None + + + + + Range + + + + + Bit mask + + + + + Singe Bit + + + + + Mapping Table for Tag Dynamization + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Mapping Entries + + + + + + EOM parent of this object + + + + + + Condition Type + + + + + + Mapping Table Entries + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Alternate Value + + + + + + Property Flashing + + + + + + Flashing Rate + + + + + + Property Value + + + + + + Mapping Table Composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create singlbit entry and multibit entry + + Select the type of dynamization for creating its entries. + System.Collections.Generic.IList<Siemens.Engineering.HmiUnified.UI.Dynamization.Tag.MappingTableEntryBitmask> + + + + Create Tag dynamization entries + + Siemens.Engineering.HmiUnified.UI.Dynamization.Tag.MappingTableEntryBase + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + MappingTable Entry Bitmask + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + BitDynamizationType + + + + + + Multiple Bits: Condition value is 2 to the power of the bit number which is being configured.Example: For configuring Bit no. 3, condition value will be : 2^3 = 8. Single Bit :Condition value for State 0 of the bit will always be 0. And Condition Value for State 1 will be 2 to the power of the bit number which is being configured. Example : If configuring Bit No. 15, State 0 Condition will be 0 & State 1 Condition will be 2^15 = 32768. + + + + + + Multiple Bits: Relevant value is the Decimal equivalent of all the bits configured. Example : If Bit 2 & 4 are being configured, then Relevant value will be : 2^4 OR 2^2 = 20. Single Bit: Relevant value is the Decimal equivalent of the Single bit being configured. Example : If Bit 15 is being configured, then Relevant value will be : 2^15 = 32768. + + + + + + Mapping Entry Range + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + From + + + + + + Range Type + + + + + + To + + + + + + Range Type + + + + + Range + + + + + From + + + + + To + + + + + Value converter for Tag Dynamization + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Returns Mapping Table information + + + + + + TODO: Description needs to be updated + + + + + None + + + + + TimeAverageStepped + + + + + MinMax + + + + + Possible information to be displayed in an AlarmControl (a + + + + + Undefined + + + + + Alarm Identification + + + + + Name + + + + + Class + + + + + Priority + + + + + Group + + + + + Origin + + + + + Area + + + + + selects detailed view of an alarm; contains additionally the info text, the alarm parameter values and comments + + + + + Information + + + + + navigate to alarm source aka loop-in-alarm (at the moment only one target, later on context menu with 0 + + + + + EventText + + + + + AlarmText1 + + + + + AlarmText2 + + + + + AlarmText3 + + + + + AlarmText4 + + + + + AlarmText5 + + + + + AlarmText6 + + + + + AlarmText7 + + + + + AlarmText8 + + + + + AlarmText9 + + + + + AlarmState + + + + + ModificationTime + + + + + RaiseTime + + + + + AcknowledgeTime + + + + + ClearTime + + + + + ResetTime + + + + + SuppresionsState + + + + + EscalationLevel + + + + + Context + + + + + Duration + + + + + AcknowledgmentState + + + + + Value + + + + + ValueQuality + + + + + ValueLimit + + + + + HostName + + + + + UserName + + + + + ProcessValue1 + + + + + ProcessValue2 + + + + + ProcessValue3 + + + + + ProcessValue4 + + + + + ProcessValue5 + + + + + ProcessValue6 + + + + + ProcessValue7 + + + + + ProcessValue8 + + + + + ProcessValue9 + + + + + ProcessValue10 + + + + + ClassSymbol + + + + + StateText + + + + + GroupID + + + + + Hmi AlarmControl Events + + + + + No Event + + + + + AlarmControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + AlarmControl-Deactivated Occurs when a screen item looses the focus. + + + + + AlarmControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. + + + + + AlarmControl-CommandFired + + + + + TODO: Description needs to be updated + + + + + NotConfigured + + + + + ActiveAlarms + + + + + Historical data (replaces Classic's short term, but does not differentiate between short and long term anymore in IOWA) + + + + + Historical data, updates in the archive get notified + + + + + The configuration view consideres the flags defined in ConfigurationViewSetup + + + + + AlarmStatistics + + + + + All time spans are in seconds + + + + + Undefined + + + + + Average time between raise event of annunciated alarms and the raise event of subsequent annunciated alarms + + + + + Average time between raise event of annunciated alarms and their clear event + + + + + Average time between raise event of annunciated alarms and their acknowledgment + + + + + Average time between raise event of annunciated alarms and their reset + + + + + Number of annunciated alarms per time [hour|day|…] + + + + + Sum of times between raise event of annunciated alarms and the raise event of subsequent annunciated alarms + + + + + Sum of times between raise event of annunciated alarms and their clear event + + + + + Sum of times between raise event of annunciated alarms and their acknowledgment + + + + + Sum of times between raise event of annunciated alarms and their reset + + + + + ID + + + + + Name + + + + + Class + + + + + Priority + + + + + Group + + + + + Origin + + + + + Area + + + + + Comments + + + + + Information + + + + + LoopInAlarm + + + + + EventText + + + + + AlarmText1 + + + + + AlarmText2 + + + + + AlarmText3 + + + + + AlarmText4 + + + + + AlarmText5 + + + + + AlarmText6 + + + + + AlarmText7 + + + + + AlarmText8 + + + + + AlarmText9 + + + + + AlarmState + + + + + ModificationTime + + + + + RaiseTime + + + + + AcknowledgeTime + + + + + ClearTime + + + + + ResetTime + + + + + SuppressionState + + + + + EscalationLevel + + + + + Context + + + + + Duration + + + + + AcknowledgmentState + + + + + Value + + + + + ValueQuality + + + + + ValueLimit + + + + + TagName + + + + + Computer + + + + + User + + + + + ProcessValue1 + + + + + ProcessValue2 + + + + + ProcessValue3 + + + + + ProcessValue4 + + + + + ProcessValue5 + + + + + ProcessValue6 + + + + + ProcessValue7 + + + + + ProcessValue8 + + + + + ProcessValue9 + + + + + ProcessValue10 + + + + + ClassSymbol + + + + + StateText + + + + + Migration hint: Was called "HmiBackGraphicAlignment" (and "HmiFillStyleAlignment", which was a subset of the other) in Classic + + + + + The background is filled to fit the windows’s size + + + + + The background is filled to fit the screen's size + + + + + Hmi Bar Events + + + + + No Event + + + + + Bar-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + Bar-Deactivated Occurs when a screen item looses the focus. + + + + + Bar-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + Bar-KeyDown + + + + + Bar-KeyUp + + + + + Bar-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Migration hint: Was called "HmiBarSegmentColoring" in Classic + + + + + Segmented + + + + + was "Entire" + + + + + Full segments are in background + + + + + Background color changes according to current process value and limit colors + + + + + Hmi Button Events + + + + + No Event + + + + + Button-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + Button-Deactivated Occurs when a screen item looses the focus. + + + + + Button-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + Button-KeyDown + + + + + Button-KeyUp + + + + + Button-Down This event is fired whenever a touch point or mouse pointer device's button was released. + + + + + Button-Up This event is fired whenever a touch point or mouse pointer device's button was pressed. + + + + + Button-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + This screen item represents a button that can be operated but has no state + + + + + Button with ordinary edges + + + + + Button with round edges + + + + + Defines how a line's caps are drawn (only valid for line EndType + + + + + Caps are drawn outside of line end's coordinates with a factor of width/2 + + + + + Caps are drawn outside of line end's coordinates with a factor of width/2 + + + + + Caps intersects the line end's coordinates + + + + + Hmi CheckBoxGroup Events + + + + + No Event + + + + + CheckBoxGroup-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + CheckBoxGroup-Deactivated Occurs when a screen item looses the focus. + + + + + CheckBoxGroup-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + CheckBoxGroup-KeyDown + + + + + CheckBoxGroup-KeyUp + + + + + CheckBoxGroup-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Hmi Circle Events + + + + + No Event + + + + + Circle-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + Circle-Deactivated Occurs when a screen item looses the focus. + + + + + Circle-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + Circle-KeyDown + + + + + Circle-KeyUp + + + + + Circle-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Hmi CircleSegment Events + + + + + No Event + + + + + CircleSegment-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + CircleSegment-Deactivated Occurs when a screen item looses the focus. + + + + + CircleSegment-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + CircleSegment-KeyDown + + + + + CircleSegment-KeyUp + + + + + CircleSegment-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Hmi CircularArc Events + + + + + No Event + + + + + CircularArc-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + CircularArc-Deactivated Occurs when a screen item looses the focus. + + + + + CircularArc-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + CircularArc-KeyDown + + + + + CircularArc-KeyUp + + + + + CircularArc-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Hmi Clock Events + + + + + No Event + + + + + Clock-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + Clock-Deactivated Occurs when a screen item looses the focus. + + + + + Clock-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + Clock-KeyDown + + + + + Clock-KeyUp + + + + + Clock-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Hmi ComboBox Events + + + + + No Event + + + + + ComboBox-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + ComboBox-Deactivated Occurs when a screen item looses the focus. + + + + + ComboBox-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + ComboBox-KeyDown + + + + + ComboBox-KeyUp + + + + + ComboBox-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Specifies what kind of content shall be displayed + + + + + Graphic has priority + + + + + GraphicAndText + + + + + Text + + + + + Graphic + + + + + Migration hint: Was called "HmiLineStyle" in Classic + + + + + Solid + + + + + Dash + + + + + Dot + + + + + DashDot + + + + + DashDotDot + + + + + TODO: Description needs to be updated + + + + + None + + + + + Number indicating the current line number or comparable + + + + + Applies only for columns + + + + + Defines the info blocks for HmiDetailedParameterControl + + + + + None + + + + + Has to be available always + + + + + Has to be available always + + + + + ParameterSetElementUnit + + + + + Hmi DetailedParameterControl Events + + + + + No Event + + + + + DetailedParameterControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + DetailedParameterControl-Deactivated Occurs when a screen item looses the focus. + + + + + DetailedParameterControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. + + + + + DetailedParameterControl-CommandFired + + + + + Hmi DotNetControlContainer Events + + + + + No Event + + + + + DotNetControlContainer-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + DotNetControlContainer-Deactivated Occurs when a screen item looses the focus. + + + + + TODO: Description needs to be updated + + + + + None + + + + + Update + + + + + Create + + + + + Delete + + + + + Hmi Ellipse Events + + + + + No Event + + + + + Ellipse-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + Ellipse-Deactivated Occurs when a screen item looses the focus. + + + + + Ellipse-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + Ellipse-KeyDown + + + + + Ellipse-KeyUp + + + + + Ellipse-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Hmi EllipseSegment Events + + + + + No Event + + + + + EllipseSegment-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + EllipseSegment-Deactivated Occurs when a screen item looses the focus. + + + + + EllipseSegment-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + EllipseSegment-KeyDown + + + + + EllipseSegment-KeyUp + + + + + EllipseSegment-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Hmi EllipticalArc Events + + + + + No Event + + + + + EllipticalArc-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + EllipticalArc-Deactivated Occurs when a screen item looses the focus. + + + + + EllipticalArc-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + EllipticalArc-KeyDown + + + + + EllipticalArc-KeyUp + + + + + EllipticalArc-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Hmi FaceplateContainer Events + + + + + No Event + + + + + FaceplateContainer-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + FaceplateContainer-Deactivated Occurs when a screen item looses the focus. + + + + + Defines the direction an object's fill level will be rendered + + + + + BottomToTop + + + + + TopToBottom + + + + + LeftToRight + + + + + RightToLeft + + + + + TODO: Description needs to be updated + + + + + Solid + + + + + Transparent + + + + + BackwardDiagonal + + + + + Cross + + + + + DiagonalCross + + + + + ForwardDiagonal + + + + + Horizontal + + + + + Vertical + + + + + GradientHorizontal + + + + + GradientVertical + + + + + GradientForwardDiagonal + + + + + GradientBackwardDiagonal + + + + + GradientHorizontalTricolor + + + + + GradientVerticalTricolor + + + + + GradientForwardDiagonalTricolor + + + + + GradientBackwardDiagonalTricolor + + + + + TODO: Description needs to be updated + + + + + 2 s + + + + + 1 s + + + + + 500 ms + + + + + Discribes font names supported in WinCC + + + + + Arial + + + + + Times New Roman + + + + + SimSun + + + + + Siemens Sans + + + + + Allows to specify how some text shall be striked out + + + + + None + + + + + Single + + + + + Allows to specify a text's font weight + + + + + Light + + + + + Normal + + + + + SemiBold + + + + + Bold + + + + + None + + + + + Hmi FunctionTrendControl Events + + + + + No Event + + + + + FunctionTrendControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + FunctionTrendControl-Deactivated Occurs when a screen item looses the focus. + + + + + FunctionTrendControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. + + + + + FunctionTrendControl-CommandFired + + + + + Hmi Gauge Events + + + + + No Event + + + + + Gauge-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + Gauge-Deactivated Occurs when a screen item looses the focus. + + + + + Gauge-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + Gauge-KeyDown + + + + + Gauge-KeyUp + + + + + Gauge-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + TODO: Description needs to be updated + + + + + The graphic is not scaled and centered if not configured explicitly via a separate property + + + + + was "Stretch" + + + + + The graphic uses all the available space of the control without changing the aspect ratio + + + + + The graphic uses all the available space of the control without changing the aspect ratio + + + + + The graphic is not scaled but repeated in a tiled fashion + + + + + Hmi GraphicView Events + + + + + No Event + + + + + GraphicView-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + GraphicView-Deactivated Occurs when a screen item looses the focus. + + + + + GraphicView-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + GraphicView-KeyDown + + + + + GraphicView-KeyUp + + + + + GraphicView-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + TODO: Description needs to be updated + + + + + None + + + + + Columns + + + + + Rows + + + + + TODO: Description needs to be updated + + + + + None + + + + + Vertical Coarse + + + + + Horizontal Coarse + + + + + Vertical Fine + + + + + Horizontal Fine + + + + + Allows to specify how many cells of a data grid can be selected at the same time + + + + + None + + + + + Single + + + + + Multi + + + + + TODO: Description needs to be updated + + + + + Left + + + + + Center + + + + + Right + + + + + only applicable with layout containers; fallback behaves like Center + + + + + Hmi IOField Events + + + + + No Event + + + + + IOField-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + IOField-Deactivated Occurs when a screen item looses the focus. + + + + + IOField-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + IOField-KeyDown + + + + + IOField-KeyUp + + + + + IOField-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + TwoStates is no more + + + + + Output + + + + + InputOutput + + + + + was "HmiLineEndStyle" + + + + + Line + + + + + was "Arrow" + + + + + was "FilledArrow" + + + + + was "FilledArrowReversed" + + + + + was "Circle" + + + + + was "FilledCircle" + + + + + Hmi Line Events + + + + + No Event + + + + + Line-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + Line-Deactivated Occurs when a screen item looses the focus. + + + + + Line-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + Line-KeyDown + + + + + Line-KeyUp + + + + + Line-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Was called "HmiCornerStyle" + + + + + Round + + + + + was "Flat" + + + + + was "Pointed" + + + + + Hmi ListBox Events + + + + + No Event + + + + + ListBox-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + ListBox-Deactivated Occurs when a screen item looses the focus. + + + + + ListBox-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + ListBox-KeyDown + + + + + ListBox-KeyUp + + + + + ListBox-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + TODO: Description needs to be updated + + + + + None + + + + + Point + + + + + Square + + + + + Circle + + + + + Graphic + + + + + Hmi MediaControl Events + + + + + No Event + + + + + MediaControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + MediaControl-Deactivated Occurs when a screen item looses the focus. + + + + + MediaControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. + + + + + MediaControl-CommandFired + + + + + MediaControl-Paused + + + + + MediaControl-Playing + + + + + MediaControl-Stopped + + + + + TODO: Description needs to be updated + + + + + Horizontal + + + + + Vertical + + + + + Defines the info blocks for HmiOverviewParameterControl + + + + + None + + + + + ParameterSetID + + + + + LastUser + + + + + LastAccess + + + + + Generic columns; starting at 1 + + + + + Generic columns; starting at 2 + + + + + Specifies which drag indicators ("Schleppzeiger") shall be active and displayed + + + + + None + + + + + Low + + + + + High + + + + + Hmi Polygon Events + + + + + No Event + + + + + Polygon-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + Polygon-Deactivated Occurs when a screen item looses the focus. + + + + + Polygon-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + Polygon-KeyDown + + + + + Polygon-KeyUp + + + + + Polygon-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Hmi Polyline Events + + + + + No Event + + + + + Polyline-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + Polyline-Deactivated Occurs when a screen item looses the focus. + + + + + Polyline-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + Polyline-KeyDown + + + + + Polyline-KeyUp + + + + + Polyline-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Hmi ProcessControl Events + + + + + No Event + + + + + ProcessControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + ProcessControl-Deactivated Occurs when a screen item looses the focus. + + + + + ProcessControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. + + + + + ProcessControl-CommandFired + + + + + TODO: Description needs to be updated + + + + + Bar + + + + + Hair-Line or Needle, depends on the actual screen item + + + + + Floater or comparable, carries also the process value + + + + + BarWithDetailedIndicator + + + + + TODO: Description needs to be updated + + + + + Bad + + + + + Uncertain + + + + + Good + + + + + UpperLimitViolation + + + + + LowerLimitViolation + + + + + Uninitialized or undefined + + + + + Hmi RadioButtonGroup Events + + + + + No Event + + + + + RadioButtonGroup-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + RadioButtonGroup-Deactivated Occurs when a screen item looses the focus. + + + + + RadioButtonGroup-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + RadioButtonGroup-KeyDown + + + + + RadioButtonGroup-KeyUp + + + + + RadioButtonGroup-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Hmi Rectangle Events + + + + + No Event + + + + + Rectangle-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + Rectangle-Deactivated Occurs when a screen item looses the focus. + + + + + Rectangle-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + Rectangle-KeyDown + + + + + Rectangle-KeyUp + + + + + Rectangle-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + TODO: Description needs to be updated + + + + + In DIU + + + + + In absence of HmiBoxFeature relative to CenterX, CenterY, otherwise relative to the box's natural center pointer + + + + + In DIU + + + + + TODO: Description needs to be updated + + + + + None + + + + + Labels + + + + + Ticks + + + + + Formerly known as "HmiBarScalingType" + + + + + Linear + + + + + Logarithmic + + + + + NegativeLogarithmic + + + + + Tangent + + + + + Quadratic + + + + + Cubic + + + + + Hmi Screen Events + + + + + No Event + + + + + Screen-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + Screen-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Screen-Loaded Occurs when a screen is loaded (opened). + + + + + Screen-Unloaded Occurs when a screen is already cleared (closed). Screen items cannot be accessed anymore. + + + + + Specifies whether the screen or screen window shall adapt its size to each other + + + + + Neither the screen nor the screen window does adapt their sizes + + + + + The screen window adapts its size to fit to the configured screen that is cur-rently shown + + + + + The screen adapts its size to fit to the configured window it is hosted in + + + + + Hmi ScreenWindow Events + + + + + No Event + + + + + ScreenWindow-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + ScreenWindow-Deactivated Occurs when a screen item looses the focus. + + + + + TODO: Description needs to be updated + + + + + The scrollbar is only shown if the content is larger than the available space + + + + + The scrollbar is shown + + + + + The scrollbar is hidden and does not require any space in the UI + + + + + TODO: Description needs to be updated + + + + + For Checkboxes + + + + + For Radio buttons + + + + + TODO: Description needs to be updated + + + + + None + + + + + Vertical + + + + + Horizontal + + + + + TODO: Description needs to be updated + + + + + Left applies for vertical orientation, top for horizontal + + + + + Right applies for vertical orientation, bottom for horizontal + + + + + Hmi Slider Events + + + + + No Event + + + + + Slider-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + Slider-Deactivated Occurs when a screen item looses the focus. + + + + + Slider-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + Slider-KeyDown + + + + + Slider-KeyUp + + + + + Slider-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + TODO: Description needs to be updated + + + + + None + + + + + Ascending + + + + + Descending + + + + + Hmi SymbolicIOField Events + + + + + No Event + + + + + SymbolicIOField-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + SymbolicIOField-Deactivated Occurs when a screen item looses the focus. + + + + + SymbolicIOField-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + SymbolicIOField-KeyDown + + + + + SymbolicIOField-KeyUp + + + + + SymbolicIOField-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + TODO: Description needs to be updated + + + + + Undefined + + + + + Number + + + + + DateTime + + + + + EventMessage + + + + + EventType + + + + + EventState + + + + + Hmi SystemDiagnosisControl Events + + + + + No Event + + + + + SystemDiagnosisControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + SystemDiagnosisControl-Deactivated Occurs when a screen item looses the focus. + + + + + SystemDiagnosisControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. + + + + + SystemDiagnosisControl-CommandFired + + + + + System Diagnosis Control Matrix Block Properties + + + + + Undefined + + + + + Status + + + + + Name + + + + + OperatingState + + + + + Rack + + + + + Slot + + + + + OrderNumber + + + + + Address + + + + + PlantDesignation + + + + + LocationIdentifier + + + + + Subsystem + + + + + Station + + + + + Subslot + + + + + SubAddress + + + + + SoftwareVersion + + + + + Installation + + + + + AdditionaInformation + + + + + ErrorDescription + + + + + ManufacturerID + + + + + HardwareVersion + + + + + ProfileID + + + + + SpecificProfileData + + + + + IandMDataVersion + + + + + SerialNumber + + + + + RevisionCounter + + + + + view types for SysDiag + + + + + Diagnosis + + + + + Matrix + + + + + Hmi TextBox Events + + + + + No Event + + + + + TextBox-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + TextBox-Deactivated Occurs when a screen item looses the focus. + + + + + TextBox-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + TextBox-KeyDown + + + + + TextBox-KeyUp + + + + + TextBox-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Hmi Text Events + + + + + No Event + + + + + Text-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + Text-Deactivated Occurs when a screen item looses the focus. + + + + + Text-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + Text-KeyDown + + + + + Text-KeyUp + + + + + Text-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + Relative Position of a Text (usually in relation to a graphic element) + + + + + Left + + + + + Right + + + + + Top + + + + + Bottom + + + + + Behind + + + + + InFront + + + + + Allows to specify how text is trimmed (with end ellipsis or not) + + + + + None + + + + + Ellipsis are always at the end + + + + + TODO: Description needs to be updated + + + + + NoWrap + + + + + WordWrap + + + + + TODO: Description needs to be updated + + + + + Undefined + + + + + Millisecond + + + + + Second + + + + + Minute + + + + + Hour + + + + + Day + + + + + Month + + + + + Year + + + + + TODO: Description needs to be updated + + + + + TimeRange + + + + + FromBeginToEnd + + + + + PointCount + + + + + Hmi ToggleSwitch Events + + + + + No Event + + + + + ToggleSwitch-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + ToggleSwitch-Deactivated Occurs when a screen item looses the focus. + + + + + ToggleSwitch-Tapped This event is fired whenever a touch point was released before the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's left button. + + + + + ToggleSwitch-KeyDown + + + + + ToggleSwitch-KeyUp + + + + + ToggleSwitch-Down This event is fired whenever a touch point or mouse pointer device's button was released. + + + + + ToggleSwitch-Up This event is fired whenever a touch point or mouse pointer device's button was pressed. + + + + + ToggleSwitch-ContextTapped This event is fired whenever a touch point was released after the holding-treshold was reached, or after a sequence of Down and Up for a mouse pointer device's right button. + + + + + ToggleSwitch-StateChanged + + + + + Hmi TouchArea Events + + + + + No Event + + + + + TouchArea-GestureDetected + + + + + Hmi TrendCompanion Events + + + + + No Event + + + + + TrendCompanion-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + TrendCompanion-Deactivated Occurs when a screen item looses the focus. + + + + + TrendCompanion-Initialized Is fired whenever the control is successfully initialized and the data connection is established. + + + + + TrendCompanion-CommandFired + + + + + Migration hint: Was called HmiRulerView in Classic + + + + + Ruler + + + + + StatisticArea + + + + + StatisticResult + + + + + Hmi TrendControl Events + + + + + No Event + + + + + TrendControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + TrendControl-Deactivated Occurs when a screen item looses the focus. + + + + + TrendControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. + + + + + TrendControl-CommandFired + + + + + TODO: Description needs to be updated + + + + + None + + + + + Name + + + + + Index + + + + + Label + + + + + Show + + + + + TagNameY + + + + + TagNameX + + + + + YValue + + + + + XValueOrTimestamp + + + + + YValueLowerLimit + + + + + TimestampLowerLimit + + + + + YValueUpperLimit + + + + + TimestampUpperLimit + + + + + Minimum + + + + + MinimumTimestamp + + + + + Maximum + + + + + MaximumTimestamp + + + + + Average + + + + + StandardDeviation + + + + + Integral + + + + + WeightedAverageValue + + + + + Duration + + + + + NumberOfValues + + + + + AreaName + + + + + AreaNameLL + + + + + AreaNameHL + + + + + Sum + + + + + TODO: Description needs to be updated + + + + + Points + + + + + Interpolated + + + + + Stepped + + + + + Bar + + + + + Value + + + + + TODO: Description needs to be updated + + + + + Top + + + + + Center + + + + + Bottom + + + + + only applicable with layout containers; fallback behaves like Center + + + + + Defines output of video + + + + + Undefined + + + + + The video is scaled to fit + + + + + The Video is scaled uniformly to fit without cropping + + + + + The Video is scaled uniformly to fill, cropping if necessary + + + + + For details on the predefined filters, please refer to SDS CHROM 12 Alarms + + + + + No alarms are shown + + + + + Show all alarms that are not suppressed + + + + + Show alarms that are disabled + + + + + Show alarms that are suppressed by design + + + + + Show alarms that are shelved + + + + + Hmi WebControl Events + + + + + No Event + + + + + WebControl-Activated Occurs when a screen item is activated and gets the focus; does not occur, however if screen item has already the focus and is e.g. clicked again. + + + + + WebControl-Deactivated Occurs when a screen item looses the focus. + + + + + WebControl-Initialized Is fired whenever the control is successfully initialized and the data connection is established. + + + + + WebControl-CommandFired + + + + + Migration hint: Replacevarious booleans used in Classic's ScreenWindow classes + + + + + None + + + + + Window caption is visible + + + + + Window border is visible + + + + + Window is opened on top of all other windows + + + + + Window is resizable + + + + + Window movable + + + + + Window has a 'Maximize' button + + + + + Window has a 'Close' button + + + + + Window cannot be moved out of the parent (Screen, Faceplate, etc + + + + + "Hmi AlarmControl event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiAlarmControlEventHandler + Consistency check failed + + + + FindAction For AlarmControl Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiAlarmControlEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi Bar event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiBarEventHandler + Consistency check failed + + + + FindAction For Bar Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiBarEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi Button event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiButtonEventHandler + Consistency check failed + + + + FindAction For Button Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiButtonEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi CheckBoxGroup event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiCheckBoxGroupEventHandler + Consistency check failed + + + + FindAction For CheckBoxGroup Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiCheckBoxGroupEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi Circle event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiCircleEventHandler + Consistency check failed + + + + FindAction For Circle Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiCircleEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi CircleSegment event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiCircleSegmentEventHandler + Consistency check failed + + + + FindAction For CircleSegment Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiCircleSegmentEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi CircularArc event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiCircularArcEventHandler + Consistency check failed + + + + FindAction For CircularArc Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiCircularArcEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi Clock event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiClockEventHandler + Consistency check failed + + + + FindAction For Clock Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiClockEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi ComboBox event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiComboBoxEventHandler + Consistency check failed + + + + FindAction For ComboBox Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiComboBoxEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi CustomWebControlContainer event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Returns valid enum values for given event handler + + System.Collections.Generic.IEnumerable<System.String> + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiCustomWebControlContainerEventHandler + Consistency check failed + + + + FindAction For CustomWebControlContainer Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiCustomWebControlContainerEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi CustomWidgetContainer event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Returns valid enum values for given event handler + + System.Collections.Generic.IEnumerable<System.String> + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiCustomWidgetContainerEventHandler + Consistency check failed + + + + FindAction For CustomWidgetContainer Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiCustomWidgetContainerEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi DetailedParameterControl event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiDetailedParameterControlEventHandler + Consistency check failed + + + + FindAction For DetailedParameterControl Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiDetailedParameterControlEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi DotNetControlContainer event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiDotNetControlContainerEventHandler + Consistency check failed + + + + FindAction For DotNetControlContainer Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiDotNetControlContainerEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi Ellipse event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiEllipseEventHandler + Consistency check failed + + + + FindAction For Ellipse Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiEllipseEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi EllipseSegment event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiEllipseSegmentEventHandler + Consistency check failed + + + + FindAction For EllipseSegment Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiEllipseSegmentEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi EllipticalArc event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiEllipticalArcEventHandler + Consistency check failed + + + + FindAction For EllipticalArc Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiEllipticalArcEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi FaceplateContainer event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiFaceplateContainerEventHandler + Consistency check failed + + + + FindAction For FaceplateContainer Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiFaceplateContainerEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi FunctionTrendControl event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiFunctionTrendControlEventHandler + Consistency check failed + + + + FindAction For FunctionTrendControl Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiFunctionTrendControlEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi Gauge event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiGaugeEventHandler + Consistency check failed + + + + FindAction For Gauge Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiGaugeEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi GraphicView event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiGraphicViewEventHandler + Consistency check failed + + + + FindAction For GraphicView Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiGraphicViewEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi IOField event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiIOFieldEventHandler + Consistency check failed + + + + FindAction For IOField Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiIOFieldEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi Line event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiLineEventHandler + Consistency check failed + + + + FindAction For Line Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiLineEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi ListBox event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiListBoxEventHandler + Consistency check failed + + + + FindAction For ListBox Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiListBoxEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi MediaControl event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiMediaControlEventHandler + Consistency check failed + + + + FindAction For MediaControl Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiMediaControlEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi Polygon event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiPolygonEventHandler + Consistency check failed + + + + FindAction For Polygon Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiPolygonEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi Polyline event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiPolylineEventHandler + Consistency check failed + + + + FindAction For Polyline Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiPolylineEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi ProcessControl event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiProcessControlEventHandler + Consistency check failed + + + + FindAction For ProcessControl Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiProcessControlEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi RadioButtonGroup event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiRadioButtonGroupEventHandler + Consistency check failed + + + + FindAction For RadioButtonGroup Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiRadioButtonGroupEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi Rectangle event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiRectangleEventHandler + Consistency check failed + + + + FindAction For Rectangle Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiRectangleEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi Screen event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiScreenEventHandler + Consistency check failed + + + + FindAction For Screen Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiScreenEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi ScreenWindow event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiScreenWindowEventHandler + Consistency check failed + + + + FindAction For ScreenWindow Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiScreenWindowEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi Slider event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiSliderEventHandler + Consistency check failed + + + + FindAction For Slider Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiSliderEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi SymbolicIOField event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiSymbolicIOFieldEventHandler + Consistency check failed + + + + FindAction For SymbolicIOField Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiSymbolicIOFieldEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi SystemDiagnosisControl event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiSystemDiagnosisControlEventHandler + Consistency check failed + + + + FindAction For SystemDiagnosisControl Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiSystemDiagnosisControlEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi TextBox event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiTextBoxEventHandler + Consistency check failed + + + + FindAction For TextBox Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiTextBoxEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi Text event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiTextEventHandler + Consistency check failed + + + + FindAction For Text Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiTextEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi ToggleSwitch event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiToggleSwitchEventHandler + Consistency check failed + + + + FindAction For ToggleSwitch Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiToggleSwitchEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi TouchArea event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiTouchAreaEventHandler + Consistency check failed + + + + FindAction For TouchArea Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiTouchAreaEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi TrendCompanion event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiTrendCompanionEventHandler + Consistency check failed + + + + FindAction For TrendCompanion Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiTrendCompanionEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi TrendControl event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiTrendControlEventHandler + Consistency check failed + + + + FindAction For TrendControl Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiTrendControlEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + "Hmi WebControl event handler + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Event type + + + + + + Script for button event + + + + + + Button events composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates event + + Event type + Siemens.Engineering.HmiUnified.UI.Events.HmiWebControlEventHandler + Consistency check failed + + + + FindAction For WebControl Event Handler + + Event Type + Siemens.Engineering.HmiUnified.UI.Events.HmiWebControlEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Event handler for properties + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Type of event + + + + + + Name of the property + + + + + + Script for event handler + + + + + + Collection of property event handlers + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates property event handler + + Name of the property + Type of event + Siemens.Engineering.HmiUnified.UI.Events.PropertyEventHandler + Create is not possible + + + + Find the property event handler + + Name of the property + Type of event + Siemens.Engineering.HmiUnified.UI.Events.PropertyEventHandler + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Types of property events + + + + + Property changed event type + + + + + Quality code changed event type + + + + + This feature defines just the arc that is used to express an arc element + + + + + Clock-wise angle + + + + + + A start angle of 0° corresponds with 3 o'clock + + + + + + This feature is used for all shapes that can be filled + + + + + Specifies the AlternateBackColor + + + + + + Specifies the AlternateBorderColor + + + + + + Specifies BackColor + + + + + + Pattern applied to the screen item's background + + + + + + Specifies BorderColor + + + + + + Specifes border width + + + + + + Specifies DashType + + + + + + Specifies FillDirection + + + + + + Percental value indicating some fill level + + + + + + Specifies whether to show fill level. + + + + + + Represents the axis feature + + + + + Color defined for a specific axis (line, ticks, etc) + + + + + + Specifies the display name of the object + + + + + + Serves as key for the axis + + + + + + Specifies whether the selected object is visible. + + + + + + This feature carries all properties that are shared by HmiScreen and HmiFaceplateType + + + + + Secondary color of the screen's background to be used in FillPattern + + + + + + Primary color of the screen's background + + + + + + Specifies the background fill pattern of the screen + + + + + + Graphic to be shown in the screen's background + + + + + + Specifies how the backgraphic is stretched + + + + + + Specifies if the background fills just the screen or the entire window's view + + + + + + States whether the screen is operable at all (‘Enabled’ = true) or not + + + + + + Specifies the dimensions of the screen in device-independend units (DIU) + + + + + + The initial position of screen is defined through the current scrollbar position of the parent Hmi(TopLevel)ScreenWindow If an screen is smaller than its parent window, this alignment is used for positioning + + + + + + The initial position of screen is defined through the current scrollbar position of the parent Hmi(TopLevel)ScreenWindow If an screen is smaller than its parent window, this alignment is used for positioning + + + + + + Specifies the dimensions of the screen in device-independend units (DIU) + + + + + + This feature is used for all line-based shapes, having a starting and end point + + + + + Specifies secondary line color + + + + + + Specifies the type of the line cap like square, round, flat + + + + + + Specifies the line dash type like solid, dash, dot etc + + + + + + Specifies line end type like line, empty arrow, arrow etc + + + + + + Specifies the color of the line + + + + + + Specifies the width of the line + + + + + + Specifies line start type like line, empty arrow, arrow etc + + + + + + This feature holds all properties that are related to measurement units + + + + + Represents feature related to scaling + + + + + Specifies whether the scaling is auto + + + + + + Specifies the color of the label + + + + + + Specifes whether the scale has label or ticks + + + + + + Specifies the tick color + + + + + + Represents all properties used in HmiScreenWindow, HmiPopupScreenWindow (both derived from HmiScreenItemBase) and HmiTopLevelScreenWindow (base class) + + + + + Specifies whether the screen or screen window shall adapt its size + + + + + + Defining the zoom factor for the screen window, which may differ from the zoom factor of the contained screen + + + + + + Specifies the horizontal position of the screen within the screen window in DIU + + + + + + Defines the screen position in the screen window + + + + + + States whether zooming is allowed (‘InteractiveZooming’ = true) or not for this screen window + + + + + + Reference to a screen to be shown in the screen window + + + + + + Name is taken from the current screen when read + + + + + + Number is taken from the current screen when read + + + + + + Specifies the server prefix + + + + + + Specifies the vertical position of the screen within the screen window in DIU + + + + + + Defines the screen position in the screen window + + + + + + Represents the properties required to define the time range + + + + + Specifies the start time of the time range + + + + + + Specifies the end time of the time range + + + + + + Specifiese the the point count for the time range + + + + + + Specifies RangeType like TimeRange, FromBiginToEnd, PointCount. + + + + + + Specifies the TimeRangeFactor Avarage + + + + + + Specifies TimeRangeFactor + + + + + + Usage sample:AlarmControl1 + + + + + Base class for all types of columns within a data grid + + + + + Base class for all screen model parts + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + This property is ignored if the AllowSort=false on the overall screen item is set + + + + + + alpha channel is zero; colors are taken from the HmiDataGridViewPart; otherwise colors are mixed in order from grid to column to cells + + + + + + Returns the Content object + + + + + + The cells of the affected column are enabled or disabled + + + + + + alpha channel is zero; colors are taken from the HmiDataGridViewPart; otherwise colors are mixed in order from grid to column to cells + + + + + + Returns the Header object + + + + + + Specifies the maximum width + + + + + + Specifies the minimum width + + + + + + Unique name for the column within the DataGrid + + + + + + Specifies the format for displaying values + + + + + + Specifies the direction of sorting + + + + + + Index 0 is ignored, starting with 1 (highest) the index specifies the priority of columns and their individual sort order + + + + + + Specifies whether the selected object is visible + + + + + + Specifies the width + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies which component of the alarm is displayed + + + + + + Specifies whether the configured color of the alarm is used + + + + + + This part contains property assocaited with Alarmcolumn part + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + AlarmStatisticBlock + + + + + + Includes properties regarding how the content of the screenitem + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies whether text, graphic or both shall be used for visualization + + + + + + Specifies the type of scaling of the graphic in the screen + + + + + + Specifies the horizontal alignment of a text + + + + + + Fix and absolute spacing in between areas spawn by the content split ratio + + + + + + Defines ratio of graphic to text (0 + + + + + + Position of the text in relation to the element's graphic + + + + + + Specifies the type of trimming of a text if the space is not sufficient + + + + + + Specifies the vertical alignment of a text + + + + + + Button that can be used within control bars, such as within a toolbar + + + + + Can show a graphic and text that can be arranged via content part + + + + + Base class of any element that can be used within a control bar, e + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies access control for the tool- or statusbar element + + + + + + ID can be used to identify a control bar element, e + + + + + + Specifies whether the specified object can be operated in runtime + + + + + + Specifies the font color + + + + + + Specifies the height + + + + + + Specifies the maximum height + + + + + + Specifies the maximum width + + + + + + Specifies the minimum height + + + + + + Specifies the minimum width + + + + + + Specifies the distance of the content from the border + + + + + + Specifies the tooltip text + + + + + + Specifies whether the selected object is visible + + + + + + Specifies the width + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Returns the Content object + + + + + + Specifies the graphic + + + + + + Specifies the labeling + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the second color for a color gradient + + + + + + Specifies the second border color which is displayed for line styles such as Dash + + + + + + Specifies the background color + + + + + + Specifies the line color + + + + + + Specifies the line thickness + + + + + + Specifies the hot(shortcut) key + + + + + + HmiControlBarElementPartBaseComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Label to be used within control bars, such as a tool bar + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the horizontal alignment of a text + + + + + + Specifies the labeling + + + + + + Specifies the vertical alignment of a text + + + + + + Base class for control bars, such as tool and status bars + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Elements Collection + + + + + + EOM parent of this object + + + + + + Specifies the background color + + + + + + Specifies whether the specified object can be operated in runtime + + + + + + Specifies the font of the text + + + + + + Specifies the value of padding + + + + + + Specifies whether tooltips are shown + + + + + + Specifies whether the selected object is visible + + + + + + defines a separator that can be used on a control bar + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Edit field used within HmiToolBar or HmiStatusBar + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the second border color which is displayed for line styles such as Dash + + + + + + Specifies the background color + + + + + + Specifies the line color + + + + + + Specifies the line thickness + + + + + + Specifies whether the text box is write-protected + + + + + + defines property that indicates about the switch's state + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + In pressed state toggle button can have the defined Alternate Graphic + + + + + + In pressed state toggle button can have the defined Alternate text + + + + + + Specifies the hot(shortcut) key + + + + + + Indicator for the switch's state + + + + + + This screen item part specifies the round corners of an area-based screen item + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the radius of the rounding of the bottom left corner + + + + + + Specifies the radius of the rounding of the bottom right corner + + + + + + Specifies the radius of the rounding of top left corner + + + + + + Specifies the radius of the rounding of top right corner + + + + + + This screen item part specifies the curved scale of guage + + + + + TODO: LabelPosition (LeftOrTop, RightOrBottom) to be considered + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies whether automatic scaling is activated + + + + + + Specifies the start of a value range or value range section + + + + + + Number of primary divisions (in between large ticks) + + + + + + Specifies the end of a value range or value range section + + + + + + Specifies the color of the label + + + + + + Specifies the Lable Font + + + + + + Specifies a format pattern that is applied to scale label's and process value indicators + + + + + + Specifies the type of scaling + + + + + + The scaling type has influence on the scale (e + + + + + + Number of secondary divisions (in between small ticks) + + + + + + Specifies the color of the axis scale + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The offset angle clock-wise + + + + + + The angle where the scale starts + + + + + + Hmi Custom Control Interface property + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Parent of the custom properties which are specific to each custom control or custom widgets. + + + + + + Interface property name + + + + + + Value of interface property + + + + + + HmiCustomControlInterfaceComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Checks if a property can be created + + System.Boolean + + + + Checks if a property can be deleted + + System.Boolean + + + + Create Custom Interface + + Siemens.Engineering.HmiUnified.UI.Parts.HmiCustomControlInterface + + + + Find Custom Control Interface + + Name of HmiCustomControlInterface Property + Siemens.Engineering.HmiUnified.UI.Parts.HmiCustomControlInterface + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Part specifying the header for a column + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Returns the Content object + + + + + + Specifies the graphic + + + + + + Specifies the labeling + + + + + + Part specifying properties of DataGridColumn + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Matches the considered column in binding source "ConsideredColumns" property + + + + + + HmiDataGridColumnPartBaseComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Find + + Name + Siemens.Engineering.HmiUnified.UI.Parts.HmiDataGridColumnPartBase + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Settings used within a data grid that apply for all columns and their headers + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies whether the order of the columns can be changed + + + + + + Specifies whether the size of the columns can be changed + + + + + + Specifies the type of content of a column header + + + + + + Specifies the font of the text + + + + + + Specifies the background color of the header + + + + + + Specifies the font color of the headers + + + + + + Specifies the color of the dividing line between column headers + + + + + + Specifies the background color of the header of a selected row or column + + + + + + Specifies the font color of the header of a selected row or column + + + + + + Specifies the type of content of a row header + + + + + + Part that represents a data grid that can be used within advanced controls + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Columns Collection + + + + + + EOM parent of this object + + + + + + Specifies if filter is applied or not + + + + + + Setting this property to true turns all AllowSort properties on the individual columns active (the actual true/false value of the column is used) + + + + + + Specifies the second color for a color gradient + + + + + + Specifies the flashing color for the text + + + + + + Specifies the background color + + + + + + Specifies the inner distance of the contents from the cell frame + + + + + + Specifies whether rows or colums have alternating colors + + + + + + Is the font to be used within the table (cells) + + + + + + Specifies the font color + + + + + + Specifies the color of the grid lines + + + + + + Specifies the visibility of the grid lines + + + + + + Specifies the width of the separator lines in pixels + + + + + + Specifies whether multiple selection is enabled in the table content + + + + + + Returns the HeaderSettings object + + + + + + Specifies the setting for the horizontal scroll bar of the window + + + + + + Specifies the height of all rows of the table in DIU (Device Independent Unit) + + + + + + Specifies whether only the cell or the whole row is included in a selection + + + + + + Specifies the background color of the selected cells + + + + + + Specifies the border color of a selection + + + + + + Specifies the border thickness of a selection + + + + + + Specifies the foreground color of the selected cells + + + + + + Specifies the setting for the vertical scroll bar of the window + + + + + + Part which defines the source data + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Accepts (currently) only HmiTag and HmiLoggingTag + + + + + + Specifies whether the quality of the process value is displayed + + + + + + Part defining properties of DetailedparameterControlColumn + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the parameters of a parameter set + + + + + + Hmi faceplate properties interface + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Interface property name + + + + + + Value of interface property + + + + + + HmiFaceplateInterfaceComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds HmiFaceplateInterface + + Name of HmiFaceplateInterface Property + Siemens.Engineering.HmiUnified.UI.Parts.HmiFaceplateInterface + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + This screen item part specifies a font configuration + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies whether the text is italic + + + + + + Specifies the text font name + + + + + + Font size unit is: DIU + + + + + + Specifies whether the text is striked out + + + + + + Specifies whether the text is underlined + + + + + + Specifies the text is bold + + + + + + Migration hint: trend areas have been named trend windows in Classic + + + + + Base class of HmiTrendAreaPart + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + LeftValueAxes Collection + + + + + + EOM parent of this object + + + + + + RightValueAxes Collection + + + + + + Specifies the background color + + + + + + Grid lines are always shown for the area's inner axes (that's the axis with index=0 in the parts arrays) + + + + + + Specifies the separator line color of the major scaling + + + + + + Specifies the separator line color of the minor scaling + + + + + + Is used as key for the graph area + + + + + + Defines the appearance of the ruler in this area + + + + + + The TrendControl will set the areas proportional to their individual HeightFactors + + + + + + Specifies whether the selected object is visible + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + BottomValueAxes Collection + + + + + + FunctionTrends Collection + + + + + + EOM parent of this object + + + + + + TopValueAxes Collection + + + + + + HmiFunctionTrendAreaPartComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create new object + + Name + Siemens.Engineering.HmiUnified.UI.Parts.HmiFunctionTrendAreaPart + + + + Find + + Name + Siemens.Engineering.HmiUnified.UI.Parts.HmiFunctionTrendAreaPart + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Part defining properties of FunctionTrend + + + + + Base class of HmiTrendPart + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the second color for a color gradient + + + + + + Specifies the background color + + + + + + Specifies the pattern of the background or the fill + + + + + + Specifies the dash type of the frame or the line + + + + + + Specifies the tag for data source of the value axis + + + + + + Specifies the display name + + + + + + Specifies the line color + + + + + + Specifies the line thickness + + + + + + Specifies the point color of the trend + + + + + + Specifies the point width + + + + + + Specifies a graphic element as a dot + + + + + + Specifies the type of dots + + + + + + If Limit colors are defined and quality is uncertain with RangeViolation, colors defined in this part are ignored + + + + + + Only relevant for historical data + + + + + + Specifies whether the selected object is visible + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the date and time for the start time of the time range + + + + + + Specifies the tag for data source of the x value axis + + + + + + Specifies the date and time for the end time of the time range + + + + + + Specifies the number of measurement points from the start time + + + + + + Specifies the type of time range + + + + + + Specifies the basis of the time range + + + + + + Specifies the factor for the time base for defining the time range + + + + + + Specifies the type of trend representation + + + + + + HmiFunctionTrendPartComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create new object + + Siemens.Engineering.HmiUnified.UI.Parts.HmiFunctionTrendPart + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Parts defining properties of HelpLine + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies a value for the object being used or returns it + + + + + + Specifies whether the selected object is visible + + + + + + HmiHelpLinePartComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create new object + + Siemens.Engineering.HmiUnified.UI.Parts.HmiHelpLinePart + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Covers all aspects of special behavior input elements may have in HMI + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Value is written to tag once the screen item loses its focus + + + + + + On focus the last value will be cleared + + + + + + Specifies whether the IOField accepts input while not showing it + + + + + + Part defining properties of legend + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the font of the text + + + + + + Fore color for legend part + + + + + + Specifies whether the selected object is visible + + + + + + Part specifying Matrix view properties + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + HardwareDetails Collection + + + + + + EOM parent of this object + + + + + + SystemDiagnosisHardwareDetailView + + + + + + Specifies tie border width + + + + + + Specifies the tile max height + + + + + + Specifies the tile minimum height + + + + + + Specifies the tile width max + + + + + + Specifies the tile width min + + + + + + Part defining properties of OverviewParameterControlColumn + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the OverviewParameterControlBlock property + + + + + + This screen item part specifies the distance of a screen item's content and it's border + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the distance to the bottom + + + + + + Specifies the value of the X coordinate + + + + + + Specifies the right margin + + + + + + Specifies the value of the Y coordinate + + + + + + Part defining properties of ProcessColumn + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the data source of the value column + + + + + + Part defining properties for identifying the quality + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the color for values of quality Bad, Value cannot be used + + + + + + Specifies the color for values of quality Uncertain, the quality of the value is worse than usual, the value could still be usable. + + + + + + Specifies whether the selected object is visible + + + + + + Part defining properties of ruler + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the line color + + + + + + Specifies the width + + + + + + Migration Hint: was called CustomSegments in Classic + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the start of a value range or value range section + + + + + + Specifies the scaled value for the specified start of a value range or value range section + + + + + + Specifies the display name + + + + + + Specifies the end of a value range or value range section + + + + + + Specifies the scaled value for the specified end of a value range or value range section + + + + + + HmiScalingEntryPartComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create new object + + Siemens.Engineering.HmiUnified.UI.Parts.HmiScalingEntryPart + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + base class for all elements + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + This screen item part represents a single entry to be used within a selection group + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the graphic + + + + + + Specifies whether the entry is selected + + + + + + Specifies the labeling + + + + + + HmiSelectionItemPartComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create new object + + Siemens.Engineering.HmiUnified.UI.Parts.HmiSelectionItemPart + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + A status bar is a specialization of the control bar, which is usually found at the bottom of a control or window + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Part defining property associated with alignment of screenitem + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Migration hint: Former modes UpAndDown and LeftAndRight can be specified by using the BarOriginValue in addition to this orientation + + + + + + This part contains property assocaited with SystemDiagnosisControlColumn part + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies which component of the SystemDiagnosisControl is displayed + + + + + + Part specifying the Detail View Properties of Hardware details + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + HardwareDetails Collection + + + + + + EOM parent of this object + + + + + + Part specifying Hardware Detail Properties + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + SystemDiagnosisMatrixBlock + + + + + + Visible + + + + + + HmiSystemDiagnosisHardwareDetailPartComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create new object + + Siemens.Engineering.HmiUnified.UI.Parts.HmiSystemDiagnosisHardwareDetailPart + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + HmiSystemDiagnosisMatrixColumn properties + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + SystemDiagnosisMatrixBlock + + + + + + This part covers several aspects that are related to text and applied formatting + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the font of the text + + + + + + Specifies the font color + + + + + + Specifies the labeling + + + + + + Specifies whether the selected object is visible + + + + + + Part defining properties of TimeAxis + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Always move visible area with recently added value + + + + + + Specifies whether automatic scaling is activated + + + + + + Color defined for a specific axis (line, ticks, etc) + + + + + + Specifies the date and time for the start time of the time range + + + + + + Specifies the display name + + + + + + Specifies the type of line end + + + + + + Specifies the color of the label + + + + + + Specifies the label font + + + + + + Serves as key for the axis + + + + + + Specifies the format for displaying values + + + + + + Specifies the number of measurement points from the start time + + + + + + Specifies the type of time range + + + + + + Specifies the type of scaling + + + + + + Specifies the color of the axis scale + + + + + + Specifies the basis of the time range + + + + + + Specifies the factor for the time base for defining the time range + + + + + + Specifies whether the selected object is visible + + + + + + HmiTimeAxisPartComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create new object + + Name + Siemens.Engineering.HmiUnified.UI.Parts.HmiTimeAxisPart + + + + Find + + Name + Siemens.Engineering.HmiUnified.UI.Parts.HmiTimeAxisPart + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Part defining properties of timerange + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the date and time for the start time of the time range + + + + + + Specifies the date and time for the end time of the time range + + + + + + Specifies the number of measurement points from the start time + + + + + + Specifies the type of time range + + + + + + Specifies the basis of the time range + + + + + + Specifies the factor for the time base for defining the time range + + + + + + A tool bar is a specialization of the control bar, which can be positioned freely and carries hot keys + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies whether the hotkeys are activated for buttons in the toolbar + + + + + + Part defining properties of trendarea + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + BottomTimeAxes Collection + + + + + + EOM parent of this object + + + + + + TopTimeAxes Collection + + + + + + Trends Collection + + + + + + Defines the appearance of the two statistic rulers in this area + + + + + + HmiTrendAreaPartComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create new object + + Name + Siemens.Engineering.HmiUnified.UI.Parts.HmiTrendAreaPart + + + + Find + + Name + Siemens.Engineering.HmiUnified.UI.Parts.HmiTrendAreaPart + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Part defining properties of trendcolumn + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the properties or evaluated data of the associated TrendControl which are displayed in the column of the TrendCompanion + + + + + + part defining different trends in various controls + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Aggregation applied to logging tags only + + + + + + Specifies the type of trend representation + + + + + + HmiTrendPartComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create new object + + Siemens.Engineering.HmiUnified.UI.Parts.HmiTrendPart + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + BaseClass of both X and Y ValueAxis + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + HelpLines Collection + + + + + + EOM parent of this object + + + + + + ScalingEntries Collection + + + + + + Specifies whether the user scaling is applied + + + + + + Specifies whether the automatic determination of the value range is activated by the minimum and maximum value of the trend + + + + + + Color defined for a specific axis (line, ticks, etc) + + + + + + Specifies the display name + + + + + + Serves as key for the axis + + + + + + Specifies whether the display names of the user scaling are used + + + + + + Specifies whether the selected object is visible + + + + + + Horizontal X axis for values + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + HmiXValueAxisPartComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create new object + + Name + Siemens.Engineering.HmiUnified.UI.Parts.HmiXValueAxisPart + + + + Find + + Name + Siemens.Engineering.HmiUnified.UI.Parts.HmiXValueAxisPart + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Vertical y axis for values + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + HmiYValueAxisPartComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create new object + + Name + Siemens.Engineering.HmiUnified.UI.Parts.HmiYValueAxisPart + + + + Find + + Name + Siemens.Engineering.HmiUnified.UI.Parts.HmiYValueAxisPart + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Specifies screen user group + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of Screen Group + + + + + + EOM parent of this object + + + + + + HmiScreenComposition + + + + + + Specifies name of screen user group + + + + + + ScreenGroupComposition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create + + Name + Siemens.Engineering.HmiUnified.UI.ScreenGroup.HmiScreenGroup + + + + Find + + Name + Siemens.Engineering.HmiUnified.UI.ScreenGroup.HmiScreenGroup + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a screen + + + + + Resize screen as per device display size + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiScreen + + + + + + EOM parent of this object + + + + + + Specifies screen Item composition + + + + + + Secondary color of the screen's background to be used in FillPattern + + + + + + Primary color of the screen's background + + + + + + Specifyies the background fill pattern of the screen + + + + + + Graphic to be shown in the screen's background + + + + + + Specifies how the backgraphic is stretched + + + + + + Specifies if the background fills just the screen or the entire window's view + + + + + + States whether the screen is operable at all (‘Enabled’ = true) or not + + + + + + Specifies the height of the screen in device-independend units (DIU) + + + + + + The initial position of screen is defined through the current scrollbar position of the parent Hmi(TopLevel)ScreenWindow If an screen is smaller than its parent window, this alignment is used for positioning + + + + + + Configured number of the screen + + + + + + The initial position of screen is defined through the current scrollbar position of the parent Hmi(TopLevel)ScreenWindow If an screen is smaller than its parent window, this alignment is used for positioning + + + + + + Specifies the width of the screen in device-independend units (DIU) + + + + + + Screens Composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates New Screen + + Name + Siemens.Engineering.HmiUnified.UI.Screens.HmiScreen + + + + Find + + Name + Siemens.Engineering.HmiUnified.UI.Screens.HmiScreen + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + HmiScreenWindow references an HmiScreen in order to provide screen-in-screen functionality + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiScreenWindow + + + + + + EOM parent of this object + + + + + + Specifies whether the screen or screen window shall adapt its size + + + + + + Defining the zoom factor for the screen window, which may differ from the zoom factor of the contained screen + + + + + + Specifies the horizontal position of the screen within the screen window in DIU + + + + + + Defines the screen position in the screen window + + + + + + States whether zooming is allowed (‘InteractiveZooming’ = true) or not for this screen window + + + + + + Reference to a screen to be shown in the screen window + + + + + + Name is taken from the current screen when read + + + + + + Number is taken from the current screen when read + + + + + + Specifies the server prefix + + + + + + Specifies whether the screen window can swith to window with tab. + + + + + + Specifies the vertical position of the screen within the screen window in DIU + + + + + + Defines the screen position in the screen window + + + + + + Base class for all shapes that have a defined center + + + + + Base class for all shapes + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the rotation angle of the screen item in degree + + + + + + Specifies the RotationCenterPlacement works + + + + + + Specifies the X coordinate of the rotation point + + + + + + Specifies the Y coordinate of the rotation point + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the X coordinate of center. + + + + + + Specifies the Y coordinate of center. + + + + + + This screen item represents a specific shape that can be filled + + + + + Base class for all circular shapes + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the radius + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiCircle + + + + + + EOM parent of this object + + + + + + Secondary color of the circle's background to be used in FillPattern + + + + + + Secondary color of the circle's border to be used in FillPattern + + + + + + Primary color of the screen item's background + + + + + + Pattern applied to the screen item's background + + + + + + Primary color of the screen item's border + + + + + + Specifies the border width + + + + + + Specifies the outer line dash type like solid, dash, dot etc + + + + + + Specifies the fill direction + + + + + + Percental value indicating some fill level + + + + + + Specifies whether to show fill level is shown + + + + + + This screen item represents a specific shape that can be filled + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiCircleSegment + + + + + + EOM parent of this object + + + + + + Clock-wise angle + + + + + + A start angle of 0° corresponds with 3 o'clock + + + + + + This screen item represents a specific shape based on a line + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiCircularArc + + + + + + EOM parent of this object + + + + + + Secondary color of the screen item's line color + + + + + + Clock-wise angle + + + + + + Specifies the type of the cap like square, round, flat + + + + + + Specifies the dash type like solid, dash, dot etc + + + + + + Specifies end type like line, empty arrow, arrow etc + + + + + + Specifies line color + + + + + + Specifies line width + + + + + + A start angle of 0° corresponds with 3 o'clock + + + + + + Specifies start type like line, empty arrow, arrow etc + + + + + + This screen item represents a specific shape that can be filled + + + + + Base class for all elliptical shapes + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the primary axis + + + + + + Specifies secondary axis + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiEllipse + + + + + + EOM parent of this object + + + + + + Secondary color of the screen item's background to be used in FillPattern + + + + + + Secondary color of the screen item's border to be used in FillPattern + + + + + + Primary color of the screen item's background + + + + + + Pattern applied to the screen item's background + + + + + + Specifies border color + + + + + + Specifies the border width + + + + + + Specifies the line dash type like solid, dash, dot etc + + + + + + Specifies fill direction + + + + + + Percental value indicating some fill level + + + + + + Specifies whether to show fill level + + + + + + This screen item represents a specific shape that can be filled + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiEllipseSegment + + + + + + EOM parent of this object + + + + + + Clock-wise angle + + + + + + A start angle of 0° corresponds with 3 o'clock + + + + + + This screen item represents a specific shape based on a line + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiEllipticalArc + + + + + + EOM parent of this object + + + + + + Specifies secondary line color + + + + + + Clock-wise angle + + + + + + Specifies the type of the line cap like square, round, flat + + + + + + Specifies the line dash type like solid, dash, dot etc + + + + + + Specifies line end type like line, empty arrow, arrow etc + + + + + + Specifies the color of the line + + + + + + Specifies the width of the line + + + + + + A start angle of 0° corresponds with 3 o'clock + + + + + + Specifies line start type like line, empty arrow, arrow etc + + + + + + This screen item is a shape that can display graphics + + + + + Base class for all shapes having properties associated with surface + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies height in device independent units + + + + + + Specifies X coordinates in device independent units + + + + + + Specifies Y coordinates in device independent units + + + + + + Specifies width in device independent units + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiGraphicView + + + + + + EOM parent of this object + + + + + + Secondary color of the screen item's background to be used in FillPattern + + + + + + Primary color of the screen item's background to be used in FillPattern + + + + + + Pattern applied to the screen item's background + + + + + + Specifies the direction the fill level will be drawn, usually from bottom to top + + + + + + Percental value indicating some fill level + + + + + + Graphic to be shown + + + + + + Specifies graphic stretch mode like Fill, Uniform, UniformToFill + + + + + + Specifies the distance between the contained graphic and the border + + + + + + Some part of the screen item's area (usually the background) will be filled according to the FillLevel property + + + + + + This screen item represents a specific shape based on a line + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiLine + + + + + + EOM parent of this object + + + + + + Specifies line start type like line, empty arrow, arrow etc + + + + + + Specifies the type of the line cap like square, round, flat + + + + + + Specifies the line dash type like solid, dash, dot etc + + + + + + Specifies line end type like line, empty arrow, arrow etc + + + + + + Specifies the color of the line + + + + + + Specifies the width of the line + + + + + + Specifies line start type like line, empty arrow, arrow etc + + + + + + Relative to surface, not screen + + + + + + Relative to surface, not screen + + + + + + Relative to surface, not screen + + + + + + Relative to surface, not screen + + + + + + HmiPoint to hols X,Y coorinates + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + X coordinate + + + + + + Y coordinate + + + + + + Base class for screen items like polygon, polyline + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Points Collection + + + + + + Specifies the corner style of the polyline + + + + + + HMIPoint Composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create a HmiPoint for give X,Y coordinates + + X coordinate + Y coordinate + Siemens.Engineering.HmiUnified.UI.Shapes.HmiPoint + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + This screen item represents a specific shape that can be filled + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiPolygon + + + + + + EOM parent of this object + + + + + + Secondary color of the screen item's background to be used in FillPattern + + + + + + Secondary color of the screen item's border to be used in FillPattern + + + + + + Primary color of the screen item's background + + + + + + Pattern applied to the screen item's background + + + + + + Specifies the border color + + + + + + Specifies the border width + + + + + + Specifies the outer line dash type like solid, dash, dot etc + + + + + + Specifies the fill direction + + + + + + Percental value indicating some fill level + + + + + + Specifies whether to show fill level is shown + + + + + + This screen item represents a specific shape based on a line + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiPolyline + + + + + + EOM parent of this object + + + + + + Specifies secondary line color + + + + + + Specifies the type of the line cap like square, round, flat + + + + + + Specifies the line dash type like solid, dash, dot etc + + + + + + Specifies line end type like line, empty arrow, arrow etc + + + + + + Specifies the color of the line + + + + + + Specifies the width of the line + + + + + + Specifies line start type like line, empty arrow, arrow etc + + + + + + This screen item represents a specific shape that can be filled + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiRectangle + + + + + + EOM parent of this object + + + + + + Secondary color of the screen item's background to be used in FillPattern + + + + + + Secondary color of the screen item's border to be used in FillPattern + + + + + + Primary color of the screen item's background + + + + + + Pattern applied to the screen item's background + + + + + + Specifies border color + + + + + + Specifies border width + + + + + + Specifies if and to which degree the corners of the rectangle shall be round + + + + + + Specifies the line dash type like solid, dash, dot etc + + + + + + Specifies fill direction + + + + + + Percental value indicating some fill level + + + + + + Specifies whether to show fill level + + + + + + Text without any chrome like border and backcolors + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiText + + + + + + EOM parent of this object + + + + + + Specifies the font + + + + + + Specifies the forecolor + + + + + + Specifies the horizontal text alignment + + + + + + Specifies the text + + + + + + Specifies the vertical text alignment + + + + + + This screenitem represents HmiBar + + + + + This screen item represents a bar that can display a process value + + + + + Base class for all widgets + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Alternate color to be used for the background + + + + + + Specifies the second border color which is displayed for line styles such as Dash + + + + + + Specifies the background color + + + + + + Specifies the line color + + + + + + Specifies the line thickness + + + + + + Specifies the height + + + + + + Specifies the value of the X coordinate + + + + + + Specifies the rotation angle of the screen item in degree + + + + + + Specifies the RotationCenterPlacement works + + + + + + Specifies the X coordinate of the rotation point + + + + + + Specifies the Y coordinate of the rotation point + + + + + + Specifies the value of the Y coordinate + + + + + + Specifies whether the quality of the process value is displayed + + + + + + Specifies the width + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the font of the text + + + + + + Represents the Editable text box object + + + + + + Specifies the color of the normal range + + + + + + Specifies the start value that is visualized + + + + + + Specifies the format for displaying values + + + + + + Defines whether indicators for the highest/lowest value seen have to be shown + + + + + + Specifies the process value + + + + + + Specifies the background color for the process value + + + + + + Used for ProcessIndicator or for Bar in SegementedStatic + + + + + + Defines the visual representation of indicator for the current process value + + + + + + States whether the origin value is an absolute value or if the origin is calculated from a percental declaration between minimum and maximum value + + + + + + Specifies the background color of the scale + + + + + + Specifies the foreground color of the scale + + + + + + The trend Indicator itself is part of the rendering template (e + + + + + + Returns the Title object + + + + + + Specifies the color of the trend view + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiBar + + + + + + EOM parent of this object + + + + + + Specifies the color display of the bar graph + + + + + + Specifies the linear scale of the bar display + + + + + + This screen item represents a button that can be operated but has no state + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiButton + + + + + + EOM parent of this object + + + + + + Graphic shown while the button is pressed/down + + + + + + Text shown while the button is pressed/down + + + + + + Returns the context of a key performance indicator in performance management + + + + + + Specifies the font of the text + + + + + + Color of the button's text + + + + + + Graphic shown while the button is NOT pressed/down + + + + + + Hotkeys are unique within a screen + + + + + + Specifies the distance of the content from the border + + + + + + Text shown while the button is NOT pressed/down + + + + + + This screenitem represents CheckBox + + + + + This screen items represents a group of entries from which one or multiple can be selected + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + SelectionItems Collection + + + + + + Returns the Content object + + + + + + Specifies the font of the text + + + + + + Specifies the font color + + + + + + Specifies the distance of the content from the border + + + + + + Specifies the process value + + + + + + 0 means auto mode, Item height is caliculated automatically + + + + + + Specifies the horizontal alignment of the entries + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiCheckBoxGroup + + + + + + EOM parent of this object + + + + + + Output only, digital clock may ignore properties that apply for analog clock only + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiClock + + + + + + EOM parent of this object + + + + + + Specifies the color of the dial background + + + + + + Specifies the color of the text of the dial + + + + + + Specifies the character set for the dial + + + + + + Defines which details of a dial have to be drawn, e + + + + + + Specifies the color of the graduation of the dial + + + + + + Specifies whether to show the hour-needle or not + + + + + + Specifies whether to show the minutes-needle or not + + + + + + Specifies whether to show the seconds-needle or not + + + + + + Provides time to be displayed; if not configured client locale time is displayed + + + + + + Returns the Title object + + + + + + This screenitem represents HmiGauge + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiGauge + + + + + + EOM parent of this object + + + + + + Specifies the curved scale of the display + + + + + + A field for input and output that can be connected with the process value + + + + + Base class for all widgets that have to handle text among other aspects + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the font of the text + + + + + + Color of the text in the widget + + + + + + Specifies the distance of the content from the border + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiIOField + + + + + + EOM parent of this object + + + + + + Specifies the horizontal alignment of a text + + + + + + Specifies the input/output type + + + + + + Returns the InputBehavior object + + + + + + Describes how the IOField's value will be formatted for display + + + + + + Specifies the process value + + + + + + Specifies the type of trimming of a text if the space is not sufficient + + + + + + Specifies the vertical alignment of a text + + + + + + This screen item can display one or many lines of unformatted text + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Specifies the horizontal alignment of a text + + + + + + Specifies the labeling + + + + + + TextTrimming is only applied in case of TextWrapping=NoWrap + + + + + + Specifies whether lines shall be wrapped in case of not enough screen item width + + + + + + Specifies the vertical alignment of a text + + + + + + This screenitem represents listBox + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiListBox + + + + + + EOM parent of this object + + + + + + Indicates whether one or more entries can be selected in the selection list + + + + + + This screenitem represents RadioButton + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiRadioButtonGroup + + + + + + EOM parent of this object + + + + + + Migration hint: Former properties of HmiSlider in Classic (BackGraphic, ThumbGraphic) are moved into the Rendering Template + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiSlider + + + + + + EOM parent of this object + + + + + + Shows the current formatted value as text in addition to the bar + + + + + + Specifies the background color of the slider + + + + + + Specifies the foreground color of the slider + + + + + + Static position of the current value relative to scale and "bar" + + + + + + While manipulating the sliding control, the value will be written down to process immediately, not only when releasing the control + + + + + + This screen item is a combination of HmiSymbolicIOField and HmiGraphicIOField + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiSymbolicIOField + + + + + + EOM parent of this object + + + + + + Returns the "Content" object. + + + + + + Holds the graphic from the resource list entry valid for the current process value + + + + + + Migration hint: Was known in Classic as "Mode" + + + + + + Specifies the process value + + + + + + Specifies source of the Text or Graphic list to be displayed in the screen object + + + + + + Index of the resource list entry valid for the current process value + + + + + + Specifies the background color of the selected cells + + + + + + Specifies the foreground color of the selected cells + + + + + + Holds the text from the resource list entry valid for the current process value + + + + + + A text box can be used for unformatted input/output of text + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiTextBox + + + + + + EOM parent of this object + + + + + + Specifies whether the text box is write-protected + + + + + + Migration hint: Was known as "HmiSwitch" in Classic + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiToggleSwitch + + + + + + EOM parent of this object + + + + + + Specifies whether the selected object engages after it has been operated in runtime + + + + + + TODO: Description needs to updated + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Events for HmiTouchArea + + + + + + EOM parent of this object + + + + + + Specifies access control for the screen item + + + + + + Specifies the background color + + + + + + in DIU + + + + + + Coordinates in DIU + + + + + + If set to true, the screen item configured within the screen (or a parent screen if not configured locally) enables the screen item only when the release button while the button is pressed + + + + + + Coordinates in DIU + + + + + + in DIU + + + + + + A corporate global library. + + + + + Represents a global library + + + + + Base interface implemented by all libraries + + + + + Searches the global library for a type object using a type GUID as the search criteria + + Globally unique identifier of the type object to be searched for + Siemens.Engineering.Library.Types.LibraryType + + + + Searches the global library for a version object using a version GUID as the search criteria + + Globally unique identifier of the version object to be searched for + Siemens.Engineering.Library.Types.LibraryTypeVersion + + + + Harmonize names and paths from library to project based on the mode specified + + The types and/or folders to be used as 'Harmonize' sources + The devices to be used to harmonize types + This harmonize option controls whether to harmonize the paths and names in the project + + + + Identify all instances in a project that require updating based on the content of this library + + The project to be compared with this library + Used to control whether or not to log out of date instances + Siemens.Engineering.Library.Types.UpdateCheckResult + + + + Identify all instances in a project that require updating based on the content of this library + + The project to be compared with this library + Used to control whether or not to log out of date instances + Siemens.Engineering.Library.Types.UpdateCheckResult + + + + Updates the target library with the latest content from this library. Marking of default version in target is as per default forceUpdateMode parameter, i.e. SetOnlyHigherUpdatedVersionAsDefault. + + The types and/or folders to be used as 'update' sources + Target library to update + + + + Updates the target library with the latest content from this library. Marking of default version in target is as per forceUpdateMode parameter. + + The types and/or folders to be used as 'update' sources + Target library to update + This option controls whether force update should be done on the target library + This option controls whether unused versions should be deleted from updated types in the project library + Options used to select the 'Structure Conflict Resolution Mode ' for the user during the operation. + + + + Updates the project's instances with the latest content from this library. Marking of default version in target is as per default forceUpdateMode parameter, i.e. SetOnlyHigherUpdatedVersionAsDefault. + + The types and/or folders to be used as 'update' sources + Scopes within the project whose instances will be updated. These may be ControllerTargets, HmiTargets, etc. + + + + System folder containing master copies and master copy folders + + + + + + System folder containing library types and library type folders + + + + + + Access to the controller in a compare scenario + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Compare the Library to the other library + + The target library to be compared + Siemens.Engineering.Library.Compare.LibraryCompareResult + + + + Searches the global library for a type object using a type GUID as the search criteria + + Globally unique identifier of the type object to be searched for + Siemens.Engineering.Library.Types.LibraryType + + + + Searches the global library for a version object using a version GUID as the search criteria + + Globally unique identifier of the version object to be searched for + Siemens.Engineering.Library.Types.LibraryTypeVersion + + + + Harmonize names and paths from library to project based on the mode specified + + The types and/or folders to be used as 'Harmonize' sources + The devices to be used to harmonize types + This harmonize option controls whether to harmonize the paths and names in the project + + + + Identify all instances in a project that require updating based on the content of this library + + The project to be compared with this global library + Used to control whether or not to log out of date instances + Siemens.Engineering.Library.Types.UpdateCheckResult + + + + Identify all instances in a project that require updating based on the content of this library + + The project to be compared with this global library + Used to control whether or not to log out of date instances + Siemens.Engineering.Library.Types.UpdateCheckResult + + + + Updates the target library with the latest content from this library. Marking of default version in target is as per default forceUpdateMode parameter, i.e. SetOnlyHigherUpdatedVersionAsDefault. + + The types and/or folders to be used as 'update' sources + Target library to update + + + + Updates the target library with the latest content from this library. Marking of default version in target is as per forceUpdateMode parameter. + + The types and/or folders to be used as 'update' sources + Target library to update + This option controls whether force update should be done on the target library or project + This option controls whether unused versions should be deleted from updated types in the target library + This option used to provide how structural conflicts of a library objects are to be handled during update. + + + + Updates the project's instances with the latest content from this library. Marking of default version in target is as per default forceUpdateMode parameter, i.e. SetOnlyHigherUpdatedVersionAsDefault. + + The types and/or folders to be used as 'update' sources + Scopes within the project whose instances will be updated. These may be ControllerTargets, HmiTargets, etc. + + + + Updates the project's instances with the latest content from this library. Marking of default version in target is as per forceUpdateMode parameter. + + The types and/or folders to be used as 'update' sources + Scopes within the project whose instances will be updated. These may be ControllerTargets, HmiTargets, etc. + This option controls whether force update should be done on the project + This option controls whether unused versions should be deleted from updated types in the project library + Options used to select the 'Structure Conflict Resolution Mode ' for the user during the operation. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + The global libraries comment + + + + + + Global Library language settings + + + + + + Gets master copy system folder + + + + + + EOM parent of this object + + + + + + Gets the library type system folder + + + + + + Author of the Global Library + + + + + + True if the global library has been modified + + + + + + Is the global library open only for read + + + + + + The name of the global library. + + + + + + The path to this global library + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Composition of GlobalLibraries + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Returns a list of LibraryInfo's representing preview state Global Libraries + + System.Collections.Generic.IList<Siemens.Engineering.Library.GlobalLibraryInfo> + + + + Opens the specified global library + + The global library info associated with a global library to be opened + Siemens.Engineering.Library.GlobalLibrary + + + + Opens the specified global library + + Path to the global library + The open mode to open the global library with. + Siemens.Engineering.Library.UserGlobalLibrary + + + + Opens the specified global library and allows for upgrade of older versions if possible. + + Path to the global library + Siemens.Engineering.Library.UserGlobalLibrary + + + + Retrieves an archived library + + The path of the archived library file + The path to the folder where library would be retrieved. + The open mode to open the global library with. + Siemens.Engineering.Library.UserGlobalLibrary + + + + Retrieves a library from an archive and upgrades it to the current version + + The path of the archived library file + The path to the folder where library would be retrieved. + The open mode to open the global library with. + Siemens.Engineering.Library.UserGlobalLibrary + + + + Create a new global library with directory and name + + The directory to create the global library in + Name of the global library + Siemens.Engineering.Library.GlobalLibrary + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents information for a Global Library + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Returns a Boolean representing if the global library associated with this GlobalLibraryInfo is already open or not. + + + + + + True if the globa library is currently read only. + + + + + + The Global Library Type + + + + + + The name of the global library. + + + + + + The full library path. + + + + + + Represents the GlobalLibrary Types such as System, User, or Corporate + + + + + Indicates the System Library + + + + + Indicates the Corporate Library + + + + + Indicates the User Library + + + + + Library archivation modes + + + + + None - No special action are taken with the orginial files. Mode is similiar to a "save as" operation. + + + + + Compressed - Original Library files are archived in compressed format + + + + + DiscardRestorableData - It is similar to None mode and additionally discards the restorable data + + + + + In DiscardRestorableData and Compressed mode restorable data is discarded and compressed archive file is created. + + + + + Option to use for export (None , WithLibraryVersionInfoFile..etc.) + + + + + Export only domain documents + + + + + Export documents and library version info file + + + + + Export only library version info file,export format is ignored + + + + + Represents the project library + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Cleans up the library to delete unused versions of types based on the cleanUpMode specified. + + The types and/or folders to be used as 'CleanUp' sources + This cleanup option controls whether to preserve default version of unused type or delete the whole type in the project library + This exception is thrown when this action is invoked on a library which is read only. + + + + Compare the Library to the other library + + The target library to be compared + Siemens.Engineering.Library.Compare.LibraryCompareResult + + + + Searches the global library for a type object using a type GUID as the search criteria + + Globally unique identifier of the type object to be searched for + Siemens.Engineering.Library.Types.LibraryType + + + + Searches the global library for a version object using a version GUID as the search criteria + + Globally unique identifier of the version object to be searched for + Siemens.Engineering.Library.Types.LibraryTypeVersion + + + + Harmonize names and paths from library to project based on the mode specified + + The types and/or folders to be used as 'Harmonize' sources + The devices to be used to harmonize types + This harmonize option controls whether to harmonize the paths and names in the project + + + + Identify all instances in a project that require updating based on the content of this library + + The project to be compared with this global library + Used to control whether or not to log out of date instances + Siemens.Engineering.Library.Types.UpdateCheckResult + + + + Identify all instances in a project that require updating based on the content of this library + + The project to be compared with this global library + Used to control whether or not to log out of date instances + Siemens.Engineering.Library.Types.UpdateCheckResult + + + + Updates the target library with the latest content from this library. Marking of default version in target is as per default forceUpdateMode parameter, i.e. SetOnlyHigherUpdatedVersionAsDefault. + + The types and/or folders to be used as 'update' sources + Target library to update + + + + Updates the target library with the latest content from this library. Marking of default version in target is as per forceUpdateMode parameter. + + The types and/or folders to be used as 'update' sources + Target library to update + This option controls whether force update should be done on the target library + This option controls whether unused versions should be deleted from updated types in the project library + Options used to select the 'Structure Conflict Resolution Mode ' for the user during the operation. + + + + Updates the project's instances with the latest content from this library. + + The types and/or folders to be used as 'update' sources + Scopes within the project whose instances will be updated. These may be ControllerTargets, HmiTargets, etc. + + + + Updates the project's instances with the latest content from this library. + + The types and/or folders to be used as 'update' sources + Scopes within the project whose instances will be updated. These may be ControllerTargets, HmiTargets, etc. + This option controls whether unused versions should be deleted from updated types in the project library + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets master copy system folder + + + + + + EOM parent of this object + + + + + + Gets the library type system folder + + + + + + Represents a System Library + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents a User Global Library + + + + + Archives the User Global library. + + Directory where the library to be archived + File name for the archived file + Archivation mode + + + + Performs the cleanup on the GlobalLibrary, without deleting the complete types. + + The types and/or folders to be used as 'CleanUp' sources + This exception is thrown when this action is invoked on a library which is read only. + + + + Closes the User Library + + + + + Saves the User Library + + + + + Save a User Library to another location + + The target directory path to save the User Library + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The list of possible states of detail compare result + + + + + Objects are different + + + + + Objects are identical + + + + + When filters are applied, objects are not compared + + + + + Summary object that contains the result of comparing two library elements + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Composition of library element properties + + + + + + Result the Compare results on an element + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Detail compare property name + + + + + + The result of comparing the left and right property values + + + + + + Compare left property value + + + + + + Compare right property value + + + + + + Composition of DetailedCompareResultElements + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Summary object that contains the result of a library compare + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Browse to the element containing the result of a given library compare element + + + + + + Compare results on an element + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Browse to the collection of library compare result element + + + + + + EOM parent of this object + + + + + + The result of a comparison + + + + + + Detailed information on the result of a given library compare + + + + + + Left object + + + + + + Left node of a library compare on a single element + + + + + + Right object + + + + + + Right node of a library compare on a single element + + + + + + Composition of CompareResultElements + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The list of possible states of library compare result + + + + + Container contents has one or more differences + + + + + Container content is identical + + + + + Objects are different + + + + + Left object is missing + + + + + Right object is missing + + + + + Objects are identical + + + + + Represents a library master copy + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Compares two master copy objects. + + The target master copy object to be compared + Siemens.Engineering.Library.Compare.DetailedCompareResult + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Content descriptions + + + + + + EOM parent of this object + + + + + + Author of the master copy + + + + + + Creation date of this master copy + + + + + + The name of the MasterCopy + + + + + + Associated MasterCopies + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Composition of MasterCopies + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create from given Master Copy + + Source MasterCopy + Siemens.Engineering.Library.MasterCopies.MasterCopy + + + + Creates a MasterCopy + + Source object from which a MasterCopy is to be created + Siemens.Engineering.Library.MasterCopies.MasterCopy + + + + Finds a given MasterCopy + + Name to find + Siemens.Engineering.Library.MasterCopies.MasterCopy + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Master copy content description + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + name of master coy content + + + + + + Type of master copy content + + + + + + Composition of master copy contents + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Folder containing Master Copies & Master Copy folders + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of MasterCopy user folders + + + + + + Composition of MasterCopies + + + + + + EOM parent of this object + + + + + + The name of the MasterCopy folder + + + + + + The list of possible scenarios supported by master copy 'copy' action parameterization + + + + + Throw an exception if the copied object conflicts with an existing object + + + + + Rename the copied object if it conflicts with an existing object + + + + + Replace an existing object if the copied object conflicts the existing object + + + + + System folder containing Master Copies & Master Copy folders + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + User folder containing Master Copies & Master Copy folders + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the MasterCopy user folder + + + + + + Composition of MasterCopyUserFolders + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates a new master copy user folder. + + The name of the master copy user folder. + Siemens.Engineering.Library.MasterCopies.MasterCopyUserFolder + + + + Finds a given MasterCopy user folder + + Name to find + Siemens.Engineering.Library.MasterCopies.MasterCopyUserFolder + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Cleanup library options to control deletion of types. + + + + + The highest version or default version of type will be exempted from deletion. Types will not be deleted completely. + + + + + Deletes the type if the none of its versions are used in the project. + + + + + Consistency states of the Library types and folders + + + + + None + + + + + State name when the library type or folder is consistent + + + + + State name when the library type or folder is inconsistent, due to Type not using dependencies default version + + + + + State name when the library type or folder is inconsistent, due to Type has duplicate versions + + + + + State name when the library type or folder is inconsistent, due to the Type having non default version instantiation. + + + + + State name when the library type or folder is inconsistent, due to the Type having multiple versions instantiation in same device. + + + + + Options used to control whether or not the operation will proceed if it will affect dependencies + + + + + If dependencies must be created or released, abort the operation + + + + + Automatically create or release any dependencies if required + + + + + Options used to control whether or not the operation will delete unused versions + + + + + If there are any unused versions, delete them + + + + + Do not delete unused versions + + + + + Options used to control whether or not perform force update + + + + + Default version in source library is updated to target and the updated version is marked as default version in target only if source version number is higher than target version number. This option is equivalent to 'force update' checkbox 'Unchecked' in UI. + + + + + Default version in source library is updated to target as default/latest version, irrespective of version number.This option is equivalent to 'force update' checkbox 'Checked' in UI. + + + + + No default version change version change in the target. This enum value should be used during update from project library to project where force update option is not applicable. This option is equivalent to 'force update' checkbox not available in UI. + + + + + Harmonize project options to control harmonizing of paths in project. + + + + + Not supposed to be used. Throws exception if used. + + + + + Harmonize paths of types + + + + + Harmonize names of types + + + + + Composition of LibraryTypes + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a given library type + + Name to find + Siemens.Engineering.Library.Types.LibraryType + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Folder containing library types & library type folders + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of library type user folders + + + + + + EOM parent of this object + + + + + + Composition of library types + + + + + + The name of the library type folder + + + + + + The consistency state of the library type + + + + + + Library instance service + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Library type instance + + + + + + EOM parent of this object + + + + + + Connected version + + + + + + System folder containing library types & library type folders + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the library type system folder + + + + + + User folder containing library types & library type folders + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the library type user folder + + + + + + Composition of LibraryTypeUserFolders + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create + + The name of the library type user folder to be created + Siemens.Engineering.Library.Types.LibraryTypeUserFolder + + + + Finds a given library type user folder + + Name to find + Siemens.Engineering.Library.Types.LibraryTypeUserFolder + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Associated library type versions + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Composition of LibraryTypeVersions + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a given library type version + + VersionNumber to find + Siemens.Engineering.Library.Types.LibraryTypeVersion + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Defines the library version object state + + + + + Library version objects may be modified while in 'in-work' state + + + + + Library version objects are read-only while in 'committed' state + + + + + Options used to select the 'Structure Conflict Resolution Mode' for the user during the update operation + + + + + If UpdateStructure is selected, Source Library structure will be updated in the Target Library. + + + + + If RetainStructure is selected, Target Library retains the same structure. + + + + + If a structure conflict occurs, it throws the EngineeringTargetInvocationException and cancel the operation. + + + + + Used to control verbosity of logging output from the update check + + + + + Identifies only the out of date instances in the project + + + + + Identifies both the out of date instances and the up to date instances in the project + + + + + Result returned from the update check operation + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Log messages explaining the details of the update check + + + + + + EOM parent of this object + + + + + + Log message explaining the details of the update check + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Log messages explaining the details of the update check + + + + + + EOM parent of this object + + + + + + Gets the header for this result of the update check + + + + + + Gets the log messages specific to each description explaining the details of the update check. + + + + + + Composition of UpdateCheckResultMessages + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a Local Session + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Performs a close operation of Multiuser localSession. + + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Performs a commit of opened server project changes. + + The comment for changes being committed. + System.Int32 + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Gets the value that Session is Up-to-date or not. + + System.Boolean + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Performs a save of opened session. + + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Marking Service + + + + + + EOM parent of this object + + + + + + Gives access to the project information + + + + + + Composition of Local sessions + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Performs a open operation of Multiuser localSession. + + The path of local session. + Siemens.Engineering.Multiuser.LocalSession + This exception will be thrown when there is an error while executing Multiuser-Openness API call + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project + + + + Performs a open operation of Multiuser Server Project. + + The path of local session. + Siemens.Engineering.Multiuser.LocalSession + This exception will be thrown when there is an error while executing Multiuser-Openness API call + This exception can be thrown if TiaPortal has a missing mandatory Product, Optional Product or Support Packages of a Tia Project + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents information about a local session + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The location of the local session. + + + + + + The Unique identifier of a Local Session + + + + + + Provides information about Lock on a project. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets the information about lock owner. + + System.String + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Gets the value that Project is locked or not. + + System.Boolean + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Status of the marked engineering object + + + + + No markstate information available. + + + + + The engineering object is up to date. + + + + + The engineering object is marked by me. + + + + + The engineering object is marked by others. + + + + + Represents information about the markstate of an engineering object. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Is the engineering object a markable object.True for a whitelisted object, False for a blacklisted object. + + + + + + Represents the MarkSate types such as IsMarkedByMe, IsMarkedByOthers and IsUptoDate + + + + + + Represents a non deleted marking. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Gets the mark state of the marked non deleted engineering object. + + + + + + Gets the marked non deleted engineering object. + + + + + + Composition of markings. + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents the marking service navigator. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets the marking related information. + + The engineering object for which the marking information has to be fetched. + Siemens.Engineering.Multiuser.MarkStateInfo + + + + Gets the markings from the opened local session. + + Siemens.Engineering.Multiuser.Markings + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents non deleted markings. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets all the non deleted markings. + + + + + + Gets all the non deleted conflicted markings. + + + + + + EOM parent of this object + + + + + + This exception indicates that exception occured during execution of Multiuser-Openness API call + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Represents a multiuser project + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents Project Server + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Adds project to Multiuser server + + The FileInfo containing the path of the single user project. + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Perform creation of Multiuser Local Session. + + The information about the server project. + Name of the local session. + Path of the local session. + Mode of session creation. + Siemens.Engineering.Multiuser.LocalSessionInfo + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Delete project server connection + + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Perform deletion of Multiuser Local Session. + + The information about the server project. + The information about the local session. + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Performs a get operation of all available local session for the given ServerProjectInfo. + + The information about the server project. + System.Collections.Generic.IList<Siemens.Engineering.Multiuser.LocalSessionInfo> + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Performs a get operation of LockStateProvider. + + The information about the server project. + Siemens.Engineering.Multiuser.LockStateProvider + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Retrieves the available projects info from a specified server. + + System.Collections.Generic.IList<Siemens.Engineering.Multiuser.ServerProjectInfo> + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Set the host name. + + Host name of the server. + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Set the port value. + + Port number of the server. + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Set the protocal value. + + Protocol of the server. + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Host of the server. + + + + + + Port of the server. + + + + + + Alias name of the server. + + + + + + Composition of Project Server + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create project server connection + + Name of the server. + Protocol of the server. + Host name of the server. + Port no of the server + Siemens.Engineering.Multiuser.ProjectServer + This exception will be thrown when there is an error while executing Multiuser-Openness API call + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Protocol + + + + + Creates connection with Https. + + + + + Creates connection with Http. + + + + + Represents information about a server project + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the project. + + + + + + Alias name of the server where project exist. + + + + + + Local session creation mode + + + + + Creates multiuser local session. + + + + + Creates exclusive local session. + + + + + Delegate for OnlineConfiguration callbacks + + + + + + Service provider for online behaviors + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Command to go offline + + + + + Command to go online + + Siemens.Engineering.Online.OnlineState + + + + Delete the Plc Master Secret + + + + + Performs the reset of the plc master secure password + + The new master secret. If the password is NULL the master secret will be deleted. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the connection configuration + + + + + + EOM parent of this object + + + + + + Check the Online state. + + + + + + The list of possible online states + + + + + Online state is Offline + + + + + Online state is Connecting + + + + + Online state is Online + + + + + Online state is not compatible + + + + + Online state is not reachable + + + + + Online state is protected + + + + + Online state is Disconnecting + + + + + Service provides online functionality for R/H systems + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Command to go offline + + + + + Command to go online to the backup PLC + + Siemens.Engineering.Online.OnlineState + + + + Command to go online to the primary Primary + + Siemens.Engineering.Online.OnlineState + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the connection configuration + + + + + + EOM parent of this object + + + + + + Check the Online state of the Backup PLC. + + + + + + Check the Online state of the Primary PLC. + + + + + + Authentication type + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + User type + + + + + + Object that is used to authenticate user. + + + + + Online configuration that provide choices. + + + + + Online configuration base class + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + All current supported user types + + System.Collections.Generic.IList<Siemens.Engineering.Online.Configurations.AuthenticationType> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Is secure communication used. + + + + + + Credentials for online authentication. + + + + + + Credentials that is used to authenticate user. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Set password for legitimation + + The password for legitimation + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The user name to legitimate. + + + + + + The user type to legitimate + + + + + + Online configuration base class for password configurations + + + + + Set password for protected module + + Set password for legitimate the connection + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Passwordconfiguration for read access + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Online configuration for TlsCommunication. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Name of the Plc for this configuration + + + + + + Message to verify if the connection can be trusted. + + + + + + Selection if the connection can be trustable or not. + + + + + The connection is not verified and not trusted + + + + + The connection is verified and trusted + + + + + The connection is verified and not trusted + + + + + A list of all the user types supported by the Plc. + + + + + No legitimation is required + + + + + Legitimation as an anonymous user + + + + + Legitimation as a global user + + + + + Legitimation as a project user + + + + + Single sign-on user + + + + + Legacy legitimation with access level password only + + + + + fingerprint + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + ID of the fingerprint + + + + + + fingerprint data + + + + + + fingerprint id + + + + + Program Code (legacy) fingerprint + + + + + comments fingerprint + + + + + General fingerprint + + + + + LibraryType + + + + + Texts fingerprint + + + + + Alarm fingerprint + + + + + Supervisions + + + + + TechnologyObject fingerprint + + + + + Events fingerprint + + + + + TextualInterface + + + + + Properties + + + + + Program Code fingerprint + + + + + Provides fingerprints. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Read Fingerprint + + System.Collections.Generic.IList<Siemens.Engineering.SW.Fingerprint> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Provides checksums. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Software checksum + + + + + + Represents the software components of a Plc + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Compare the PLC software to the given target + + The target to compare to the PLC software + Siemens.Engineering.Compare.CompareResult + + + + Compare the PLC software to the online target + + Siemens.Engineering.Compare.CompareResult + + + + Update PLC program + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the Plc block system group + + + + + + Gets the Plc external source system group + + + + + + Description for published + + + + + + Gets the Plc tag table system group + + + + + + This system folder can contain technological objects + + + + + + Gets the Plc type system group + + + + + + Get the Plc watch table system group + + + + + + The name of the Plc software + + + + + + The list of possible sw importoptions for Import + + + + + None option. + + + + + Import is not aborted in case of referenced object changed structurally. + + + + + Import is not aborted in case of referenced object is missing. + + + + + Import is not aborted in case of unit related attributes are present. + + + + + Common alarm classes + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Exports common alarm classes to a file + + Path for alarm class export + Siemens.Engineering.SW.Alarm.AlarmClassExportImportResult + + + + Imports common alarm classes from file + + Path to import common alarm classes from + Siemens.Engineering.SW.Alarm.AlarmClassExportImportResult + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Result of an alarm class export or import + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Messages of the alarm class export/import + + + + + + EOM parent of this object + + + + + + Number of errors occured during the process + + + + + + Result state of the process + + + + + + Number of warnings created during the process + + + + + + Messages generated during alarm class export/import + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Description of an error or warning + + + + + + State of the message + + + + + + Collection of alarm class export/import messages + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Result state of common alarm class export or import + + + + + Succesful process + + + + + Succesful process with warnings + + + + + Failed process + + + + + Plc alarm text lists of the PLC or Unit. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Exports text lists to xlsx file. + + Path of the xlsx file to be exported. + Siemens.Engineering.SW.Alarm.TextListXlsxResult + This exception will e thorwn when there is not textlist on the current controller target. + + + + Exports text lists to excel file. + + Path of the xlsx file to be exported. + Optional list of the exportable text list IDs. This parameter can be null (or empty) meaning all text list will be exported. + Optional list of the exportable languages. This parameter can be null (or empty) meaning all languages will be exported. + Siemens.Engineering.SW.Alarm.TextListXlsxResult + + + + + Imports text lists from excel file. + + Path of the xlsx file to be imported. + Options for Import + Siemens.Engineering.SW.Alarm.TextListXlsxResult + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Parent of this object, can be Plc or Unit. + + + + + + Access to alarm text of the PLC or Unit. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Exports alarm instance texts to xlsx file. + + Path of the xlsx file to be exported. + Optional list of the exportable languages. This parameter can be null (or empty) meaning all languages will be exported. + Set export content options. + Siemens.Engineering.SW.Alarm.PlcAlarmTextXlsxResult + + + + Imports alarm instance texts from excel file. + + Path of the xlsx file to be imported. + Optional list of the exportable languages. This parameter can be null (or empty) meaning all languages will be exported. + Siemens.Engineering.SW.Alarm.PlcAlarmTextXlsxResult + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Parent of this object, can be Plc or Unit. + + + + + + Export content options. + + + + + No optional context needed. Only Alarm text will be exported. + + + + + Adds Info Text to exported xlsx file. + + + + + Adds Additional Texts to exported xlsx file. + + + + + Adds Alarm Class to exported xlsx file. + + + + + All optional content will be exported. + + + + + Represents an alarm text export or import result. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Path to the log file. + + + + + + Final state of the alarm texts export or import result. + + + + + + The state of text lists export or import result. + + + + + Import or export finished successfully. + + + + + Import or export finished partially with warnings. + + + + + Import or export process failed. + + + + + Represents a text lists export or import result. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Path to the log file. + + + + + + Final state of the text lists export or import result. + + + + + + The state of text lists export or import result. + + + + + Import or export finished successfully. + + + + + Import or export finished partially with warnings. + + + + + Import or export process failed. + + + + + If the given controller target does not contain any textlist this exception will be thrown. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Represents the system text lists + + + + + Base class for user and system text lists + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Comment of a text list + + + + + + EOM parent of this object + + + + + + ID of Text list + + + + + + Determines the range of values for an element + + + + + + Name of Text list + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition for system text lists + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Access to text lists of the PLC or Unit. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Navigator of system text list composition + + + + + + Navigator of user text list composition + + + + + + Determines the range of values for an element in a text list + + + + + Decimal value of a range type + + + + + Binary value of a range type + + + + + Bit value of a range type + + + + + None value + + + + + Represents the user text lists + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Determines the range of values for an element + + + + + + Name attribute + + + + + + Composition for user text lists + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create a Plc user textlist from a master copy + + The source master copy + Siemens.Engineering.SW.Alarm.TextLists.PlcAlarmUserTextlist + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Class representing array DBs + + + + + Class representing a data block + + + + + Represents a Plc block + + + + + Can generate source. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Simatic ML export of a Plc block + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + + Simatic ML export of a Plc block + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) + + + + + Show the indicated item in the Plc block editor + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Determines if the block gets the block number automatically or manually + + + + + + Last code modification date + + + + + + Last compilation date + + + + + + Creation date of this Plc block + + + + + + PLC header attribute author + + + + + + PLC header attribute family + + + + + + PLC header attribute name + + + + + + PLC header attribute version + + + + + + Last interface modification + + + + + + True if block and used data is consistent + + + + + + Gets the know-how protection status of the block + + + + + + Indicates if a block has been optimized + + + + + + Last modification date including e.g. comments + + + + + + The name of the Plc block + + + + + + The namespace of the given Plc block + + + + + + The number of this Plc block + + + + + + Date of the last parameter modification + + + + + + The language of this block + + + + + + Date of the last structure modification + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Interface to all members of a block + + Block Interface + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The list of possible IECPL block types + + + + + Undefined block type + + + + + Type of Function block + + + + + Type of system function block + + + + + User defined datatype + + + + + Function block template + + + + + System data type + + + + + Class representing a code block + + + + + Exports prodiag alarm information + + path where the file gets exported + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Class representing a code block library type + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Name + + + + + + Class representing a code block library type version + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Represents an FB + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Get supervisions + + + + + + Represents an FC + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents a global DB + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents an instance DB + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The block name of the father instance (FB/SFB/UDT/SDT) + + + + + + Provides Snapshot Value functionality. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Simatic ML export of snapshot values. + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Determines if a block access is optimized or not + + + + + The block access is not optimized + + + + + The block access is optimized + + + + + Represents an OB + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Additional information about the type + + + + + + Enum for OBDataExchangeMode + + + + + None + + + + + Cyclic + + + + + Synchronous + + + + + Enum for Execution + + + + + Never + + + + + Once + + + + + Every_minute + + + + + Hourly + + + + + Daily + + + + + Weekly + + + + + Monthly + + + + + Yearly + + + + + End_of_month + + + + + Enum for TimeMode + + + + + None + + + + + Local + + + + + System + + + + + Composition of PlcBlocks + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create PlcBlock from MasterCopy + + The source master copy + Siemens.Engineering.SW.Blocks.PlcBlock + + + + Create from version + + type version + Siemens.Engineering.SW.Blocks.PlcBlock + + + + Simatic ML import of a Plc block + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.SW.Blocks.PlcBlock> + + + + + Simatic ML import of a Plc block with ignore flags. + + Path to the Simatic ML file + Options to use for Import + Sw import options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.SW.Blocks.PlcBlock> + + + + + Creates a block. + + Name of the block. + Indicates if block is autonumbered. + Number of the block. + Language of the block. + Siemens.Engineering.SW.Blocks.FB + + + + + Creates an instance DB. + + Name of the block. + Indicates if block is autonumbered. + Number of the block. + Name of the block where db belongs to. + Siemens.Engineering.SW.Blocks.InstanceDB + This exception indicates that exception occured during creation of DataBlock. + + + + + Finds a given Plc block + + Name to find + Siemens.Engineering.SW.Blocks.PlcBlock + + + + Find the given Plc block + + Name to find + Namespace to find + Siemens.Engineering.SW.Blocks.PlcBlock + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Group containing Plc blocks & Plc block user groups + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of Plc blocks + + + + + + Composition of Plc block user groups + + + + + + EOM parent of this object + + + + + + The name of the Plc block group + + + + + + Provides protection services. + + + + + Sets protection for the underlying object + + the password to protect the object with + + + + + Removes protection for the underlying object + + the password the underlying object is currently protected with + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + System group containing Plc blocks & Plc block user groups + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Composition of Plc system block groups + + + + + + User group containing Plc blocks & Plc block user groups + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the Plc block user group + + + + + + Composition of PlcBlockUserGroups + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create PlcBlockUserGroup from MasterCopy + + The source master copy + Siemens.Engineering.SW.Blocks.PlcBlockUserGroup + + + + Create PlcBlockUserGroup + + Name of group to be created + Siemens.Engineering.SW.Blocks.PlcBlockUserGroup + + + + Finds a given Plc block user group + + Name to find + Siemens.Engineering.SW.Blocks.PlcBlockUserGroup + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Group containing Plc system blocks & Plc system block groups + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of Plc system blocks + + + + + + Composition of Plc system block groups + + + + + + EOM parent of this object + + + + + + The name of the Plc system block group + + + + + + Composition of PlcSystemBlockGroups + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a given Plc system block group + + Name to find + Siemens.Engineering.SW.Blocks.PlcSystemBlockGroup + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The list of possible creation languages of programming blocks + + + + + Block has no programming language + + + + + Base language STL + + + + + Base language LAD + + + + + Base language FBD + + + + + Optional language SCL + + + + + Base DB language DB + + + + + Optional language Graph7 + + + + + Base language CPU-DB + + + + + Optional language CFC + + + + + Optional language SFC + + + + + Base language IEC conform FBD + + + + + Base language IEC conformant LAD + + + + + Base system DB language SDB + + + + + Process diagnostic + + + + + Optional language RSE + + + + + F conform language STL + + + + + F conform language LAD + + + + + F conform language FBD + + + + + F conform language DB + + + + + F conform language LAD for library blocks + + + + + F conform language FBD for library blocks + + + + + Function Chart Plus language (CFC) + + + + + Optional language FLD + + + + + ProDiag + + + + + ProDiag_OB + + + + + Technological Object Motion_DB + + + + + Autogenerated codeblock for failsafe PLCs + + + + + Cause Effect Matrix + + + + + Supervision + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Supervisions of the block + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + This exception indicates that exception occured during creation of DataBlock. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + The exception. + + + + Initializes a new instance of the class. + + The text. + The detail texts. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + When overridden in a derived class, sets the B with information about the exception. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + + + + Represents an entry in a block + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents the name of the Member + + Name of the Member + + + + Gives all the members of a block + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a Block Member by name + + The name of the Block Member + Siemens.Engineering.SW.Blocks.Interface.Member + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Interface for all blocks + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Represents Members of a block + + Members of block + + + + EOM parent of this object + + + + + + Lists the possible options for block generation from source + + + + + Throws an exception and deletes the blocks if there is any generation error + + + + + All blocks will be kept regardless of any generation errors + + + + + Options for source generation + + + + + Generate source from block without dependent blocks + + + + + Generate source from block with dependent blocks + + + + + Represents a Plc external source + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Creates a block or blocks from the current source file object + + + + + + Creates a block or blocks from the current source file object + + Option to use for block generation from source + System.Collections.Generic.IList<Siemens.Engineering.IEngineeringObject> + + + + + Creates a block or blocks from the current source file object under block user group + + block user group information + Option to use for block generation from source + System.Collections.Generic.IList<Siemens.Engineering.IEngineeringObject> + + + + + Creates a type or types from the current source file object under type user groups + + type user group information + Option to use for type generation from source + System.Collections.Generic.IList<Siemens.Engineering.IEngineeringObject> + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the Plc external source + + + + + + Composition of PlcExternalSources + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create External Source from MasterCopy + + The source master copy + Siemens.Engineering.SW.ExternalSources.PlcExternalSource + + + + Create an external source from a specified file + + Name of Plc external source to be created + Path to the external source file + Siemens.Engineering.SW.ExternalSources.PlcExternalSource + + + + Finds a given Plc external source + + Name to find + Siemens.Engineering.SW.ExternalSources.PlcExternalSource + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Group containing Plc external sources & Plc external source user groups + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of Plc external sources + + + + + + Composition of Plc external source user groups + + + + + + EOM parent of this object + + + + + + The name of the Plc external source group + + + + + + System group containing Plc external sources & Plc external source user groups + + + + + Generates source file. + + Blocks to be exported. + File info of the source file which will be generated + + + + + Generates source file. + + Blocks to be exported. + File info of the source file which will be generated + Configures the source generation + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + User group containing Plc external sources & Plc external source user groups + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the Plc external source user group + + + + + + Composition of PlcExternalSourceUserGroups + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create ExternalSourceUserGroup from MasterCopy + + The source master copy + Siemens.Engineering.SW.ExternalSources.PlcExternalSourceUserGroup + + + + Creates a MasterCopy + + Name of group to be created + Siemens.Engineering.SW.ExternalSources.PlcExternalSourceUserGroup + + + + Finds a given Plc external source user group + + Name to find + Siemens.Engineering.SW.ExternalSources.PlcExternalSourceUserGroup + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Generates loadables files + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Generates a loadable file for blocks in the non unit program + + The path of the loadable file to be created + List of blocks to generate the loadable file + Download target of the loadable file + + + + Generates a loadable file for software units + + The path of the loadable file to be created + List of units to generate the loadable file + Download target of the loadable file + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Target option + + + + + Throws an exception + + + + + Loadable generation for Plc + + + + + Loadable generation for PlcSim + + + + + Top level OpcUa Communication folder + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + OPCUA Server Interface Folder + + + + + + OpcUa Provider + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Access the OpcUa Communication Folder + + + + + + EOM parent of this object + + + + + + OpcUa Reference Namespace + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Exports the original XML File + + Path to the location to save + + + + Import file + + Path to file + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Comment + + + + + + EOM parent of this object + + + + + + Author + + + + + + Creation time + + + + + + Enable reference namespace and download to PLC + + + + + + Last modified time + + + + + + Name + + + + + + Composition of Reference Namespaces + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create a new Reference Namespace + + Name of reference namespace to be created + XML to Import + Siemens.Engineering.SW.OpcUa.ReferenceNamespace + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + OpcUa Server Interface + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Exports the original XML File + + Path to the location to save + + + + Import file + + Path to file + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Comment + + + + + + EOM parent of this object + + + + + + Author + + + + + + Creation time + + + + + + Enable server interface and download to PLC + + + + + + Last modified time + + + + + + Name + + + + + + Composition of Server Interfaces + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create a new Server Interface + + Name of server interface to be created + Siemens.Engineering.SW.OpcUa.ServerInterface + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Contains Server Interfaces + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Returns a list of Server Interfaces + + + + + + Returns a list of Server Interfaces + + + + + + Returns a list of Server Interfaces + + + + + + OpcUa Simatic Interface + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Exports the original XML File + + Path to the location to save + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Comment + + + + + + EOM parent of this object + + + + + + Author + + + + + + Creation time + + + + + + Enable simatic interface and download to PLC + + + + + + Last modified time + + + + + + Name + + + + + + Composition of Simatic Interfaces + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create a new Simatic Interface + + Name of simatic interface to be created + Siemens.Engineering.SW.OpcUa.SimaticInterface + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + prodiag global supervision provider of proDiagFB + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Export of prodiag global supervisions to xlsx file + + path for exported prodiag global supervisions + Siemens.Engineering.SW.Supervision.SupervisionXlsxResult + + + + Import of prodiag settings from xlsx file + + path of xlsx file + option to select type of import + Siemens.Engineering.SW.Supervision.SupervisionXlsxResult + + + + Import of prodiag global supervisions from xlsx file + + path from where prodiag global supervisions gets imported + option to select type of import + Siemens.Engineering.SW.Supervision.SupervisionXlsxResult + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents supervision settings export/import final result. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + List of supervision settings export/import messages + + + + + + EOM parent of this object + + + + + + Error count after export/import of supervision settings + + + + + + Final state of the supervision settings export/import result. + + + + + + Warning count after import of supervision settings + + + + + + Represents supervision settings export/import final result message + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Final message text of supervision settings export/import result. + + + + + + Composition of SupervisionSettingsExportImportResultMessage + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The state of supervision settings export/import result + + + + + Supervision settings export/import finished successfully. + + + + + Rollback of supervision settings export/import process. + + + + + Provider for supervision settings + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Exports supervision settings in DAT file format + + File path where file having .dat extension is exported + Siemens.Engineering.SW.Supervision.SupervisionSettingsExportImportResult + + + + Imports supervision settings from DAT file + + File path where file having .dat extension is imported + Siemens.Engineering.SW.Supervision.SupervisionSettingsExportImportResult + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents a supervision export or import result. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Path to the log file. + + + + + + Final state of the supervision export or import result. + + + + + + Supervision import/export result state + + + + + import or export finished successfully + + + + + The failure import/export result + + + + + Represents a Plc constant + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Defines the data type of this constant + + + + + + The name of the Plc constant + + + + + + Defines the value of this constant. + + + + + + Represents a Plc system constant + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of PlcSystemConstants + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a given Plc system constant + + Name to find + Siemens.Engineering.SW.Tags.PlcSystemConstant + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a Plc tag + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Simatic ML export of a Plc tag + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Simatic ML export of a PlcTag with DocumentInfoOptions + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + The multilingual comment of the PlcTag + + + + + + EOM parent of this object + + + + + + Defines the data type of this tag + + + + + + Internal use only + + + + + + Indicates whether this tag should be shown when browsing for tags from an HMI editor + + + + + + Indicates whether this tag can be written to when browsing for tags from an HMI editor + + + + + + Indicates whether this tag has a failsafe address + + + + + + The address in the PLC's address space + + + + + + The name of the Plc tag + + + + + + Composition of PlcTags + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create PlcTag from MasterCopy + + The source master copy + Siemens.Engineering.SW.Tags.PlcTag + + + + Simatic ML import of a Plc tag + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.SW.Tags.PlcTag> + + + + Creates a PLC tag from the given parameters + + The name of the plc tag to be created + Siemens.Engineering.SW.Tags.PlcTag + + + + Creates a PLC tag from the given parameters + + The name of the plc tag to be created + The data type name of the plc tag to be created + The logical address of the plc tag to be created + Siemens.Engineering.SW.Tags.PlcTag + + + + Finds a given Plc tag + + Name to find + Siemens.Engineering.SW.Tags.PlcTag + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a Plc tag table + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Simatic ML export of a Plc tag table + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Simatic ML export of a PlcTagTable with DocumentInfoOptions + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) + + + + Show the indicated item in the Plc tag table editor + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Composition of Plc system constants + + + + + + Composition of Plc tags + + + + + + Composition of Plc user constants + + + + + + Indicates if this tag table is the default tag table + + + + + + Represents the last modified timestamp of this tag table + + + + + + The name of the Plc tag table + + + + + + Composition of PlcTagTables + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create PlcTagTable from MasterCopy + + The source master copy + Siemens.Engineering.SW.Tags.PlcTagTable + + + + Simatic ML import of a Plc tag table + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.SW.Tags.PlcTagTable> + + + + Creates a tag table from the given parameters + + Internal use only + Siemens.Engineering.SW.Tags.PlcTagTable + + + + Finds a given Plc tag table + + Name to find + Siemens.Engineering.SW.Tags.PlcTagTable + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Group containing Plc tag tables & Plc tag table user groups + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of Plc tag table user groups + + + + + + EOM parent of this object + + + + + + Composition of Plc tag tables + + + + + + The name of the Plc tag table group + + + + + + System group containing Plc tag tables & Plc tag table user groups + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + User group containing Plc tag tables & Plc tag table user groups + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the Plc tag table user group + + + + + + Composition of PlcTagTableUserGroups + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create PlcTagTableUserGroup from MasterCopy + + The source master copy + Siemens.Engineering.SW.Tags.PlcTagTableUserGroup + + + + Create user folder for PLC tag collection + + Name of group to be created + Siemens.Engineering.SW.Tags.PlcTagTableUserGroup + + + + Finds a given Plc tag table user group + + Name to find + Siemens.Engineering.SW.Tags.PlcTagTableUserGroup + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a Plc user constant + + + + + Simatic ML export of a Plc constant + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Simatic ML export of a PlcUserConstant with DocumentInfoOptions + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + The comment of the user constant + + + + + + Defines the data type of this constant + + + + + + The name of the Plc constant + + + + + + Defines the value of this constant. + + + + + + Composition of PlcUserConstants + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create PlcUserConstant from MasterCopy + + The source master copy + Siemens.Engineering.SW.Tags.PlcUserConstant + + + + Simatic ML import of a Plc constant + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.SW.Tags.PlcUserConstant> + + + + Creates a plc user constant from the given parameters + + The name of the user constant to be created + Siemens.Engineering.SW.Tags.PlcUserConstant + + + + Creates a plc user constant from the given parameters + + The name of the user constant to be created + The name of the data type of the user constant to be created + The value of the user constant to be created + Siemens.Engineering.SW.Tags.PlcUserConstant + + + + Finds a given Plc user constant + + Name to find + Siemens.Engineering.SW.Tags.PlcUserConstant + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Instance of a technological DB + + + + + Simatic ML export of a TechnlogicalInstanceDB + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Simatic ML export with configure document info of a TechnologicalInstanceDB + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Get all technological parameters + + + + + + Parent of this object + + + + + + Name of the Block + + + + + + Gets the name of the system library element associated with the DB + + + + + + Gets the version of the system library element associated with the DB + + + + + + TO Association + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Adds an . + + The item to be added. + + + + Removes an . + + The item to be removed. + true if the item was removed; otherwise false. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + TO composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create TechnologicalInstanceDB from MasterCopy + + The source master copy + Siemens.Engineering.SW.TechnologicalObjects.TechnologicalInstanceDB + + + + Simatic ML import of a Technological Object + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.SW.TechnologicalObjects.TechnologicalInstanceDB> + + + + Create a new TechnologicalInstanceDB + + Name of the newly created TechnologicalInstanceDB + Associated system library element + Associated system library version + Siemens.Engineering.SW.TechnologicalObjects.TechnologicalInstanceDB + + + + Find by its name + + Name of the TechnologicalInstanceDB + Siemens.Engineering.SW.TechnologicalObjects.TechnologicalInstanceDB + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Contains Technological Objects and groups of Technological Objects + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of Technological Object user groups + + + + + + Parent of this object + + + + + + Get all technological objects + + + + + + Name of external source group + + + + + + Contains Technological Objects and groups + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + User group containing Technological Objects & Technological Object user groups + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the Technological Object user group + + + + + + Composition of TechnologicalInstanceDBUserGroups + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create TechnologicalInstanceDBUserGroup from MasterCopy + + The source master copy + Siemens.Engineering.SW.TechnologicalObjects.TechnologicalInstanceDBUserGroup + + + + Create TechnologicalInstanceDBUserGroup + + Name of group to be created + Siemens.Engineering.SW.TechnologicalObjects.TechnologicalInstanceDBUserGroup + + + + Finds a given Technological Object user group + + Name to find + Siemens.Engineering.SW.TechnologicalObjects.TechnologicalInstanceDBUserGroup + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represenst a technological parameter + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents the name of a technological parameter + + + + + + Represents the value of a technological parameter + + + + + + Parameter composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds a TechnologicalParameter by name + + The name of the TechnologicalParameter + Siemens.Engineering.SW.TechnologicalObjects.TechnologicalParameter + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Handles connections to hardware objects for axis and encoder TechnologicalInstanceDBs + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Connect with a Channel (e.g. of a TechnologyModule) + + Channel to connect + + + + Connect with a mixed (sub) module that contains input and output addresses + + Module or submodule that contains input and output addresses + + + + Connect to an output PlcTag in order to establish an analog connection + + Output PlcTag to connect + + + + Connect to DB member + + Path to the DB member + + + + Connect with separate (sub) modules for inputs and outputs, specifying an additional ConnectOption + + Module or submodule that contains the input address + Module or submodule that contains the output address + + + + Connect with separate (sub) modules for inputs and outputs, specifying an additional ConnectOption + + Module or submodule that contains the input address + Module or submodule that contains the output address + Additional option for making the connection + + + + Connect specifying input and output bit addresses directly + + Input bit address to connect + Output bit address to connect + Additional option for making the connection + + + + Remove an existing connection + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Connected Channel + + + + + + ConnectOption that has been set when the connection was made + + + + + + Raw input bit address + + + + + + Connected input (sub) module + + + + + + Connected mixed (sub) module that contains input and output addresses + + + + + + Indicates whether the interface is connected + + + + + + Raw output bit address + + + + + + Connected output (sub) module + + + + + + Connected tag (analog connection) + + + + + + Path to connected DB member + + + + + + Connection to sensor part in actor telegram. + + + + + + AxisEncoderHardwareConnectionInterface Composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Handles connections to hardware objects for axis TechnologicalInstanceDBs + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Provides access to the connections for the actor interface of the axis + + + + + + EOM parent of this object + + + + + + Provides access to the connections for the sensor interfaces of the axis + + + + + + Provides access to the torque connection interface of the axis + + + + + + Describes the format in which a cam object should be Exportet/Imported + + + + + MCD File Format + + + + + Scout File Format + + + + + Export to a PointList with specified number of Points + + + + + Describes a Seperator with which the data should be seperated on Import/Export + + + + + Comma ',' Separator + + + + + Tabulator Separator + + + + + Handles import export commands for Cam + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Loads the cam data from the specified file + + Path to the file that will be loaded + Separator to use + + + + Loads the cam data from the specified binary file + + Path to the file that will be loaded + + + + Saves the cam data to the specified file in the given format + + Path to the destination file + format in which the data should be stored + Separator to use + + + + Saves the cam data to the specified file in binary format + + Path to the destination file + + + + Saves the cam data to the specified file as a point list + + Path to the destination file + Separator to use + Number of sample points + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Describes additional options for making a connection + + + + + Only modules that are recognized as valid connection partners can be selected + + + + + All modules can be connected, corresponds to selecting 'Show all modules' in the UI + + + + + Handles connections between Kinematics Technological Objects and their master values + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Master values that are coupled via actual values + + + + + + Master values that are coupled via actual values + + + + + + Master values that are coupled via set points + + + + + + Handles connections to hardware objects for encoder TechnologicalInstanceDBs + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Provides access to the connections for the sensor interface of the encoder + + + + + + Handles import export commands for interpreter programs + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Loads the interpreter program from the specified file + + Path to the file that will be loaded + + + + Saves the interpreter program to the specified file. + + Path to the destination file + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Handles connections to hardware objects for measuring input TechnologicalInstanceDBs + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Connect with a Channel (e.g. of a TechnologyModule) + + Channel to connect + + + + Connect specifying the input bit address directly + + Input bit address to connect + + + + Connect with a (sub) module, specifying an additional channel index + + Module or submodule to connect + Index of connected channel with respect to moduleIn + + + + Remove an existing connection + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Connected Channel + + + + + + Index of connected channel with respect to InputModule + + + + + + Raw input bit address + + + + + + Connected input (sub) module + + + + + + Indicates whether the interface is connected + + + + + + Handles connections to hardware objects for output cam and cam track TechnologicalInstanceDBs + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Connect with a Channel (e.g. of a TechnologyModule) + + Channel to connect + + + + Connect to an output PlcTag + + Output PlcTag to connect + + + + Connect specifying the output bit address directly + + Output bit address to connect + + + + Remove an existing connection + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Connected Channel + + + + + + Indicates whether the interface is connected + + + + + + Raw output bit address + + + + + + Connected tag + + + + + + Container for output cam, cam track and measuring input TOs + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Contains measuring input TOs + + + + + + Contains output cam and cam track TOs + + + + + + EOM parent of this object + + + + + + Handles connections between SynchronousAxis Technological Objects and their master values + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Master values that are coupled via actual values + + + + + + Master values that are coupled via actual values + + + + + + Master values that are coupled via set points + + + + + + Handles connections to Torque possible hardware objects for axis and encoder TechnologicalInstanceDBs + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Connect with a mixed (sub) module that contains input and output addresses + + Module or submodule that contains input and output addresses + + + + Connect to DB member + + Path to the DB member + + + + Connect with separate (sub) modules for inputs and outputs, specifying an additional ConnectOption + + Module or submodule that contains the input address + Module or submodule that contains the output address + + + + Connect with separate (sub) modules for inputs and outputs, specifying an additional ConnectOption + + Module or submodule that contains the input address + Module or submodule that contains the output address + Additional option for making the connection + + + + Connect specifying input and output bit addresses directly + + Input bit address to connect + Output bit address to connect + Additional option for making the connection + + + + Remove an existing connection + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + ConnectOption that has been set when the connection was made + + + + + + Raw input bit address + + + + + + Connected input (sub) module + + + + + + Connected mixed (sub) module that contains input and output addresses + + + + + + Indicates whether the interface is connected + + + + + + Raw output bit address + + + + + + Connected output (sub) module + + + + + + Path to connected DB member + + + + + + Represents a Plc struct + + + + + Represents a Plc type + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Simatic ML export of a Plc type + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Simatic ML export of a Plc type + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) + + + + Show the indicated item in the Plc type editor + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Creation date of this Plc type + + + + + + Get last breakable interface change of the PLC data type + + + + + + True if block and used data is consistent + + + + + + Gets the know-how protection status of the block + + + + + + Get the last non-breakable modification of the PLC data type + + + + + + The name of the Plc type + + + + + + The namespace of the given Plc type + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Group containing Plc system types + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Composition of Plc system types + + + + + + The name of the Plc system type group + + + + + + Composition of PlcSystemTypeGroups + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Composition of PlcTypes + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create PlcType from MasterCopy + + The source master copy + Siemens.Engineering.SW.Types.PlcType + + + + Create plc type from type version + + Library type version + Siemens.Engineering.SW.Types.PlcType + + + + Simatic ML import of a Plc type + + Path to the Simatic ML file + Options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.SW.Types.PlcType> + + + + Simatic ML import of a Plc type + + Path to the Simatic ML file + Options to use for Import + Sw import options to use for Import + System.Collections.Generic.IList<Siemens.Engineering.SW.Types.PlcType> + + + + Finds a given Plc type + + Name to find + Siemens.Engineering.SW.Types.PlcType + + + + Find the given Plc type + + Name to find + Namespace to find + Siemens.Engineering.SW.Types.PlcType + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Group containing Plc types & Plc type user groups + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of Plc type user groups + + + + + + EOM parent of this object + + + + + + Composition of Plc types + + + + + + The name of the Plc type group + + + + + + Represents a library type made from a Plc type + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Name + + + + + + Represents a library type version made from a Plc type + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + System group containing Plc types & Plc type user groups + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Composition of system data types + + + + + + User group containing Plc types & Plc type user groups + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The name of the Plc type user group + + + + + + Composition of PlcTypeUserGroups + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create PlcTypeUserGroup from MasterCopy + + The source master copy + Siemens.Engineering.SW.Types.PlcTypeUserGroup + + + + Create the user folder for the PLC data type collection + + Name of group to be created + Siemens.Engineering.SW.Types.PlcTypeUserGroup + + + + Finds a given Plc type user group + + Name to find + Siemens.Engineering.SW.Types.PlcTypeUserGroup + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a Plc safety unit + + + + + Base class for software unit + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the Plc block system group + + + + + + The comment of the software unit + + + + + + Gets software unit external source group + + + + + + EOM parent of this object + + + + + + Group for alarming related objects + + + + + + Gets the software unit relations + + + + + + Gets the Plc tag table system group + + + + + + Gets the Plc type system group + + + + + + The author of the Plc unit + + + + + + The name of the Plc unit + + + + + + The namespace of software unit + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Composition of safety unit + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Finds the Safety Unit By name + + Name of the safety unit + Siemens.Engineering.SW.Units.PlcSafetyUnit + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a Plc unit + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Composition of Plc units + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create a Plc unit from a master copy + + The source master copy + Siemens.Engineering.SW.Units.PlcUnit + + + + Creates a Plc unit + + Unit name + Siemens.Engineering.SW.Units.PlcUnit + + + + + Find a Plc unit by name + + Name of Plc unit + Siemens.Engineering.SW.Units.PlcUnit + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Provides Plc units + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Gets the Plc unit system group + + + + + + Represents a unit relation + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Related object of the relation + + + + + + Unit relation type which allowed to access + + + + + + Composition of Plc unit relations + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create an unit relation + + Related object + Relation type + Siemens.Engineering.SW.Units.PlcUnitRelation + + + + Find a Plc unit relation by the name of the related object + + Name of the related object + Siemens.Engineering.SW.Units.PlcUnitRelation + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + System group containing Plc units + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Composition of Safety Units + + + + + + Composition of Plc units + + + + + + Unit accessibility type + + + + + Published unit code element + + + + + Unpublished unit code element + + + + + Relation types in Unit relation editor + + + + + Relation type software unit + + + + + Relation tyoe non unit data block + + + + + Relation type technological data block + + + + + Represents a Plc force table + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Simatic ML export of a Plc force table + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Simatic ML export of a PlcForceTable + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) + + + + Show the indicated item in the Plc force table editor + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of ForceTable Entries + + + + + + EOM parent of this object + + + + + + Table is consistent or not + + + + + + Name of the ForceTable + + + + + + Composition of PlcForceTables + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Import Plc force table from Simatic ML + + Path of the Simatic ML which will be imported + Options to use for import from Simatic ML + System.Collections.Generic.IList<Siemens.Engineering.SW.WatchAndForceTables.PlcForceTable> + + + + Find force table by name + + Name of the force table + Siemens.Engineering.SW.WatchAndForceTables.PlcForceTable + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a Plc force table entry + + + + + Represents a Plc Force\Watch table comment entry + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Address information of the tag + + Address of force table entry + + + + DisplayFormat + + Display format of force table entry + + + + Force intention of the user + + Force intention of force table entry + + + + The value that shall be forced + + Force value of force table entry + + + + The trigger used for monitoring + + Monitor trigger of force table entry + + + + Name of the tag + + Tag name of force table entry + + + + Represents a Plc Force\Watch table comment entries + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates a TableCommentEntry + + Siemens.Engineering.SW.WatchAndForceTables.PlcTableCommentEntry + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Enum for DisplayFormat + + + + + Undef + + + + + Any_pointer + + + + + BCD + + + + + Bin + + + + + Bool + + + + + Character + + + + + Character + + + + + Date + + + + + DATE_AND_TIME + + + + + DEC_sequence + + + + + DEC+/- + + + + + DEC + + + + + Hex + + + + + Block number + + + + + Octal + + + + + Pointer + + + + + Floating-point number + + + + + Counter + + + + + SIMATIC Time + + + + + String + + + + + Time + + + + + TIME_OF_DAY + + + + + Unicode_character + + + + + Unicode_character + + + + + Unicode string + + + + + Group contatining Plc watch tables + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of PlcWatchTables + + + + + + Composition of User Groups + + + + + + EOM parent of this object + + + + + + Composition of PlcWatchTables + + + + + + The name of the Plc watch table group + + + + + + Enum for PreDefinedTrigger + + + + + Permanent + + + + + Permanently, at start of scan cycle + + + + + Once only, at start of scan cycle + + + + + Permanently, at end of scan cycle + + + + + Once only, at end of scan cycle + + + + + Permanently, at transition to STOP + + + + + Once only, at transition to STOP + + + + + Undef + + + + + System group containing Plc watch tables and Plc force tables and user group containing these + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + User group containing Plc watch tables + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Name of the User Group + + + + + + Composition of PlcWatchTableUserGroups + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create PlcBlockUserGroup from MasterCopy + + The source master copy + Siemens.Engineering.SW.WatchAndForceTables.PlcWatchAndForceTableUserGroup + + + + Creates user folder for Plc watch and forcetable collection + + Name of the group to be created + Siemens.Engineering.SW.WatchAndForceTables.PlcWatchAndForceTableUserGroup + + + + Finds given Plc watch table user group + + Name of the Plcwatchtable group to search for + Siemens.Engineering.SW.WatchAndForceTables.PlcWatchAndForceTableUserGroup + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a Plc watch table + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Simatic ML export of a Plc watch table + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + + + + Simatic ML export of a PlcWatchTable + + Path to the Simatic ML file + Option to use for export (default, readonly, etc.) + Possible ways to configure document info during export (None, ExportSetting, InstalledProducts, CreatedTimeStamp, All) + + + + Show the indicated item in the Plc watch table editor + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of WatchTable Entries + + + + + + EOM parent of this object + + + + + + Table is consistent or not + + + + + + Name of the WatchTable + + + + + + Composition of PlcWatchTables + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Import Plc watch table from Simatic ML + + Path of the Simatic ML which will be imported + Options to use for import from Simatic ML + System.Collections.Generic.IList<Siemens.Engineering.SW.WatchAndForceTables.PlcWatchTable> + + + + Creates a watch table from the given parameters + + Name of the Plc watch table + Siemens.Engineering.SW.WatchAndForceTables.PlcWatchTable + + + + Finds a given Plc watch table + + The name of the WatchTable + Siemens.Engineering.SW.WatchAndForceTables.PlcWatchTable + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a Plc watch table entry + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Address + + Address of watch table entry + + + + DisplayFormat + + Display format of watch table entry + + + + The user's modify intention + + Modify intention of watch table entry + + + + The trigger used for modify + + Modify trigger of watch table entry + + + + The value that shall be used for modify. + + Modify value of watch table entry + + + + The trigger used for monitoring. + + Monitor trigger of watch table entry + + + + Name + + Tag name of watch table entry + + + + Enables access to attributes for configuring block number ranges of system-generated safety blocks. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Gets or sets the "from DB" fixed range block number. + + + + + + Gets or sets the "from FB" fixed range block number. + + + + + + Gets or sets the "from FC" fixed range block number. + + + + + + Gets or sets indicating whether block numbers are system generated or manually assigned. + + + + + + Gets or sets the "to DB" fixed range block number. + + + + + + Gets or sets the "from FB" fixed range block number. + + + + + + Gets or sets the "to FC" fixed range block number. + + + + + + Defines modes for managing the number blocks of F-system blocks + + + + + The number ranges of the generated F-system blocks are managed by the F-system. + + + + + The number ranges of the generated F-system blocks are managed by fixed ranges defined by you. -- Ranges can be defined via the "(Db/Fb/Fc)Numbers(To/From)" properties. + + + + + GlobalSettings + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets the generation of default failsafe program + + System.Boolean + + + + Sets the generation of default failsafe program + + If true then default failsafe program will be generated + + + + Gets the management of failsafe in 'Software Units' environment + + System.Boolean + + + + Sets the management of failsafe in 'Software Units' environment + + If true then SafetyUnit is supported. + + + + Query whether SafetyModifications are possible. + + System.Boolean + + + + Specify wether changes to an F-Program are possible + + If true the Safety access protection is active otherwise changes to an F-program are not allowed + + + + Retrieves the username to be used for F-change history entries + + System.String + + + + Sets the username to be used for F-change history entries + + Username to be used for F-change history entries + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Enables access to information and methods regarding the Runtime Groups of the Safety program. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Creates a global F-I/O status block or overrides it if it already exists + + Siemens.Engineering.SW.Blocks.PlcBlock + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The Event class of the Fail-safe organization block + + + + + + The name of the Fail-safe organization block + + + + + + The name of the Runtime Groups Information DB Block + + + + + + The name of the main safety's IDb block + + + + + + The name of the main safety block + + + + + + The Maximum Cycle Time of the Runtime Group + + + + + + The name of the Runtime Group + + + + + + The Post processing Block of the Runtime Group + + + + + + The Pre processing Block of the Runtime Group + + + + + + The Warn Cycle Time of the Runtime Group + + + + + + Represents a Safety Runtime Group with its associated information and actions for working with them. + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates a new Runtime Group with the given name + + The name of the Runtime Group to create + Siemens.Engineering.Safety.RuntimeGroup + + + + Creates a new Runtime Group with the given name and MainSafety Function + + The name of the Runtime Group to create + The Function that should be used as MainSafety + Siemens.Engineering.Safety.RuntimeGroup + + + + Creates a new Runtime Group with the given name, MainSafety Function Block and Instance Data Block + + The name of the Runtime Group to create + The Function Block that should be used as MainSafety + The Instance Data Block that should be used for the MainSafety Function Block + Siemens.Engineering.Safety.RuntimeGroup + + + + Searches for a Runtime Group via the name. + + The name of the Runtime Group + Siemens.Engineering.Safety.RuntimeGroup + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Provides access to Safety-related information and configuration. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Logs into the safety program if correct password is given + + Current password to LoginToSafetyOfflineProgram + + + + Log off from the safety program + + + + + Removes the safety password if it matches the current password + + Current password to verify + + + + Sets the safety password if it isn't set + + New Password to set + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Provides access to the RuntimeGroups of the Safety program. + + + + + + Provides access to the Settings of the Safety program. + + + + + + Query whether the user is logged on + + + + + + Query whether a safety program password is set + + + + + + Service providing Safety Printout functionality for Plus PLCs. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Creates a Safety Printout for the current device item and prints it to a file. If the file already exists, it is overridden. - Returns true on success. + + Installed printer driver which supports printing to a file. + Valid output path to a file. + Document layout used for printing (eg. "DocuInfo_ISO_A4_Portrait") + Printing option for document format ("All", "Compact") + System.Boolean + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Defines the available built-in Windows printer drivers which support printing to file. + + + + + Represents the "Microsoft Print to PDF" printer driver. + + + + + Represents the "Microsoft XPS Document Writer" printer driver. + + + + + Defines the options for Safety Printout. + + + + + Select "All" to print all configuration data of the selected objects + + + + + Select "Compact" to print out an abbreviated version of the project data + + + + + Enables access to information and methods regarding the Settings of the Safety program. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Cleans up the result of the fail-safe compilation. + + + + + A List enumeration with the applicable Safety-System-Versions. + + System.Collections.Generic.IList<Siemens.Engineering.Safety.SafetySystemVersion> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Provides access to attributes for configuring block number ranges of system-generated safety blocks. + + + + + + EOM parent of this object + + + + + + Indicates whether logging of changes to the Safety program is activated (enabled). + + + + + + Gets or sets whether the names of the F-I/O DBs are created without prefix. + + + + + + Gets or sets indicating whether one can prevent the Safety mode for a Safety program from being disabled. + + + + + + Gets or sets the Safety system version (including version of the F-system blocks and automatically generated F-blocks). + + + + + + Provides the Safety Signature. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Defines the type of the SafetySignature + + + + + + Provides the safety signature value. + + + + + + Composition of SafetySignatures + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Searches for a SafetySignature by a given signature type + + The type of a SafetySignature + Siemens.Engineering.Safety.SafetySignature + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents the Safety Signature of an object. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Provides the SafetySignatures that belongs to the Parent object. + + + + + + Represents the SafetySignature Types + + + + + Indicates the offline signature of a block + + + + + Represents a Safety system version value. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The string value of Safety system version. + + + + + + Load safety program to device + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current Selection for this Configuration. + + + + + + Available Selections for Safety Program configuration. + + + + + Consistent Download + + + + + Certificate Item + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Export the certificate + + Path to exported certificate + + + + Export the certificate + + Path to exported certificate + Export format + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Indicates whether the certificate contains a private key or not. + + + + + + Identification of a Certificate + + + + + + The subject common name of the certificate. + + + + + + The valid until date of the certificate. + + + + + + Composition of certificates + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Imports a certificate + + Path to certificate file + Siemens.Engineering.Security.Certificate + + + + Imports a certificate + + Path to certificate file + The password of the certificate file + Siemens.Engineering.Security.Certificate + + + + Creates a certificate + + certificate template as default values + Siemens.Engineering.Security.Certificate + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Exported certificate format. + + + + + None + + + + + Certificate - DER coded (*.cer) + + + + + Certificate - DER coded (*.der) + + + + + Certificate Template + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + All subject alternative name entries. + + + + + + The signature algorithm + + + + + + The subject common name of the certificate. + + + + + + The usage for the certificate + + + + + + The valid from date of the certificate. + + + + + + The valid until date of the certificate. + + + + + + The key usage for a certificate + + + + + None + + + + + TLS certificate + + + + + OPC UA certificate + + + + + OPC UA Client Server certificate + + + + + OPC UA Server certificate + + + + + WebServer certificate + + + + + Represents the Security Settings for Password policy for Classic PLCs + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Sets/Gets the value of includes lower case and upper case characters in a password + + + + + + Sets/Gets the value of minimum length of password + + + + + + Sets/Gets the value for minimum numeric characters required in a password + + + + + + Sets/Gets the value for minimum special characters required in a password + + + + + + Sets/Gets the value of enable password policy for Classic Plc + + + + + + Device certificate manager operates on local and global certificates + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + The local certificate store + + + + + + EOM parent of this object + + + + + + Enables or disables the global certificate store + + + + + + The Local Store holds all not-public certificates + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Get default template values for specific + + This is a usage + Siemens.Engineering.Security.CertificateTemplate + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Collections of all self signed certificates + + + + + + EOM parent of this object + + + + + + Represents the Security Settings for Password policy for Plus PLCs + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Sets/Gets the value of enable password policy for Classic Plc + + + + + + The signature of a certificate, i.e. the algorithm + + + + + None + + + + + The sha1 hash algorithm with RSA encryption + + + + + The sha256 hash algorithm with RSA encryption + + + + + An entry of SubjectAlternativeNames + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The type of the entry + + + + + + The value of the entry + + + + + + The composition of all subject alternative name entries + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create a new subject alternative name entry + + The type of the entry + The value of the entry + Siemens.Engineering.Security.SubjectAlternativeName + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The subject alternative name type + + + + + None + + + + + The Dns description + + + + + The email description + + + + + The IP description + + + + + The Uri description + + + + + Represents a TiaPortal setting. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Represents the name of a TiaPortalSetting. + + + + + + Represents the value of a TiaPortalSetting. + + + + + + Represents a composition of TiaPortalSettings. + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Returns the TiaPortalSetting with the matching name. + + The name of the TiaPortalSetting to find. + Siemens.Engineering.Settings.TiaPortalSetting + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a TiaPortal settings folder + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Composition of TiaPortalSettingsFolders + + + + + + EOM parent of this object + + + + + + Composition of TiaPortalSettings + + + + + + Represents the name of a TiaPortalSettingsFolder. + + + + + + Composition of TiaPortalSettingsFolders + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Returns the TiaPortalSettingsFolder with the matching name. + + The name of the TiaPortalSettingsFolder to find. + Siemens.Engineering.Settings.TiaPortalSettingsFolder + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents the Authentication Type of a Project User + + + + + Indicates Password Authentication Type + + + + + Indicates Radius Authentication Type + + + + + Custom Device Function Right + + + + + Device function right + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Device function right group name + + + + + + Device function right OpennessId + + + + + + Device function right name + + + + + + Updates the name of custom device function right + + Updates the custom device function right name + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Device function right comment + + + + + + Custom device function right composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates the custom device function right. + + Custom device function right name + Custom device function right group name + Custom device function right comment + Siemens.Engineering.Umac.CustomDeviceFunctionRight + + + + Fetches custom device function right. + + Custom device function right name + Siemens.Engineering.Umac.CustomDeviceFunctionRight + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Provides User Defined Role with associated attributes + + + + + Represents an abstract UMAC Role object + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Role Openness Id + + + + + + Name on the user defined role + + + + + + Add a Device Function Rights to Custom Role + + Umac Device + Device function right + + + + Gets all the assigned device function rights on the present role object for the given device + + Umac Device + System.Collections.Generic.IList<Siemens.Engineering.Umac.DeviceFunctionRight> + + + + Updates the name of the custom role + + new name to be assigned to custom role + + + + UnAssign a Device Function Rights from Custom Role + + Umac Device + Device function right + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Fetches assigned engineering rights for custom role + + + + + + Project user comment + + + + + + Project user session timeout + + + + + + Custom Role Composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates the user defined role. + + Name of the user defined role + Comment of the user defined role + Siemens.Engineering.Umac.CustomRole + + + + Fetches custom role + + Custom role name to Find + Siemens.Engineering.Umac.CustomRole + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Device function right association + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Fetches corresponding device function right + + Identifier is the search key to get the corresponding right + Siemens.Engineering.Umac.DeviceFunctionRight + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents an abstract UMAC Engineering Function Right object + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Engineering Function Right Openness Identifier. This identifier will be used for find purpose + + + + + + Engineering function right name + + + + + + Associated Engineering function rights + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Adds an . + + The item to be added. + + + + Removes an . + + The item to be removed. + true if the item was removed; otherwise false. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Gets all UMAC Engineering Function Right + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Find UMAC Engineering Function Right corresponding to the name passed + + Engineering function right name + Siemens.Engineering.Umac.EngineeringFunctionRight + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents PasswordPolicyConfigurator object + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Sets/Gets the value of enable password aging + + + + + + Sets/Gets the value of includes lower case and upper case characters in a password + + + + + + Sets/Gets the value of minimum length of password + + + + + + Sets/Gets the value for minimum numeric characters required in a password + + + + + + Sets/Gets the value for minimum special characters required in a password + + + + + + Sets/Gets the value of minimum user passwords blocked for reuse + + + + + + Sets/Gets the value for password validity + + + + + + Sets/Gets the value for prewarning time + + + + + + Represents a UMAC Project User object + + + + + Represents an abstract User object + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Name of the user. + + + + + + Roles assigned to the user. + + + + + + Activate project user + + + + + Activate Runtime timeout session for Project User + + + + + Deactivate project user + + + + + Deactivate Runtime timeout session for Project User + + + + + Updates the alias name of the project user + + new alias name to be assigned to project user + This exception will be thrown when logged-in user is not assigned with the function right "TIAPortal.ManageUserAndRoles". + + + + Updates the name of the project user + + new name to be assigned to project user + + + + UnAssign role to project user + + new password for project user + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Project user alias name + + + + + + Project user comment + + + + + + Project user is active or not + + + + + + RuntimeSessionTimeout checkbox of Project user checked or not + + + + + + Project user authentication type + + + + + + Project user session timeout + + + + + + Project user composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates new project user + + Project user name + Project user password + Siemens.Engineering.Umac.ProjectUser + + + + Fetches project user + + Project user name to Find + Siemens.Engineering.Umac.ProjectUser + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Roles assigned to the Users and Umc user groups. + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Adds an . + + The item to be added. + + + + Removes an . + + The item to be removed. + true if the item was removed; otherwise false. + + + + Find Role corresponding to the Openness ID + + Identifier is the search key to get the corresponding Role + Siemens.Engineering.Umac.Role + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent.. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Custom Device Function Right + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + System device function right comment + + + + + + System device function right composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Fetches system device function right. + + System device function right name + Siemens.Engineering.Umac.SystemDeviceFunctionRight + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Represents a UMAC System Role object + + + + + Gets all the assigned system device function rights on the present role object for the given device + + Umac Device + System.Collections.Generic.IList<Siemens.Engineering.Umac.DeviceFunctionRight> + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Fetches assigned engineering rights + + + + + + Gets all System Roles + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Fetches system role + + System role name + Siemens.Engineering.Umac.SystemRole + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Provides UMAC entities like Users, Roles and Function Rights + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Activates anonymous user + + + + + Deactivates anonymous user + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets Project user + + + + + + Gets all the Custom Device Function Rights + + + + + + Get all the custom roles + + + + + + Get all the engineering function rights + + + + + + EOM parent of this object + + + + + + Get all project users + + + + + + Get all the system roles + + + + + + Get all Umc User Groups imported in TiaProject + + + + + + Get all Umc Users + + + + + + The class for getting Umac Device + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Fetches available device function rights for corresponding umac device. Returns count as zero, if device is not activated + + + + + + EventArgs for the UmcAuthentication. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Credentials for Umc Authentication. + + + + + + Object that is used to authenticate user. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Set password. + + Password + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + User name. + + + + + + Provides UMC entities like UmcUsers and UmcGroups etc. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Get umc user from Umc server for the specified name + + Name of Umc user to be retrieved from Umc server + Siemens.Engineering.Umac.UmcUserInfo + + + + Gets the Umc User group from UMC server + + The name of the umc user group to get + Siemens.Engineering.Umac.UmcUserGroupInfo + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Authentication event is used to provide Credentials to access UmcServer + + + + + EOM parent of this object + + + + + + Provides UMC Server Navigator. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Checks if the UMAC copy of UMC data is consistent UMC server data. + + System.Boolean + + + + Synchronize UMAC copy of UMC data with UMC server. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + A single navigator UmcServer representing a Umc Server + + + + + + UmcUser represents a imported UmcUser in Project + + + + + Activate umc user + + + + + Deactivate umc user + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Indicates whether the UmcUser is Active. + + + + + + Umc User Composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates the Umc User in Project + + Represents a umc user on a Umc Server + Siemens.Engineering.Umac.UmcUser + + + + Finds the Umc user in the project + + The name of the Umc user in the project + Siemens.Engineering.Umac.UmcUser + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + It represents a imported UmcUser group in Project + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Activate umc user group + + + + + Deactivate umc user group + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Description of the Umc User group + + + + + + Project user is active or not + + + + + + Name of the Umc Usergroup + + + + + + Roles assigned to the umc user group. + + + + + + Umc User Group Composition + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Creates a Umc UserGroup in Project from UmcUserGroupInfo from UmcServer + + Represents a umc user group on a Umc Server + Siemens.Engineering.Umac.UmcUserGroup + + + + Finds the Umc user group in the project + + The name of the Umc user group in the project + Siemens.Engineering.Umac.UmcUserGroup + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Umc user group on the Umc Server + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Description of umc user group + + + + + + Name of umc user group + + + + + + Represents a umc user on a Umc Server + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Name of umc user + + + + + + Service provides station upload + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Service provides station upload functionality + + Configuration address for station upload + Upload parameter + Siemens.Engineering.Upload.UploadResult + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Connection Configuration. + + + + + + EOM parent of this object + + + + + + + + + + + + The results of a Upload + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Collection of output messages for the result of a given Upload scenario. + + + + + + EOM parent of this object + + + + + + Number of errors in a given Upload scenario + + + + + + Final state of a given compile scenario + + + + + + The uploaded station if upload was successful. + + + + + + Number of warnings in a given Upload scenario + + + + + + Upload result message + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Access to the Upload messages for a given Upload scenario + + + + + + EOM parent of this object + + + + + + Date and time in a Upload message + + + + + + Number of errors in a Upload message + + + + + + Description or content of a Upload message + + + + + + Final state in a Upload message + + + + + + Number of warnings in a Upload message + + + + + + Composition of Upload result messages. + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The list of possible compiler result options + + + + + Upload finished successfully + + + + + Upload finished with information + + + + + Upload finished with warnings + + + + + Upload finished with errors + + + + + Enter a password to gain read access to the module + + + + + Upload password configuration. + + + + + Upload configuration base class. + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Descriptions of this onfiguration + + + + + + Sets password + + Required password. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Is secure communication used. + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Enter a password to gain write access to the module + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The PLC need a password for Readaccess. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + The PLC contains additional data of missing products. + + + + + Upload configuration that provides choices. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Current selection for this configuration. + + + + + + Available selections for UploadMissingProductsCategory configuration + + + + + No action + + + + + Attempt to upload from the device + + + + + Child objects synchronization status + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Get status of individual object + + Siemens.Engineering.VersionControl.SynchronizationResult + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Compare status + + + + + Left and right side is the same + + + + + Left and right side is different + + + + + Right missing + + + + + Unknown result + + + + + Individual object compare details + + + + + Nothing is changed + + + + + Project object is changed + + + + + Workspace file is changed + + + + + Individual Object Compare Result + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Compare state + + + + + + Individual object compare details + + + + + + Individual object synchronization status + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Get status of individual object + + Siemens.Engineering.VersionControl.IndividualObjectCompareResult + + + + Initialize mapping status + + + + + Sync differences + + Sync mode for sync action + + + + + Update mapping status + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Mapping status + + + + + Left and right side is the same + + + + + Left and right side is different + + + + + Activate or Donot Activate InActive Cultures during import of SimaticMl file + + + + + Not Activating the InActive Cultures during import of SimaticMl file + + + + + Activating the InActive Cultures during import of SimaticMl file + + + + + Describe the sync direction + + + + + Sync from project to workspace + + + + + Sync from workspace to project + + + + + Individual Object Compare Result + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Compare state + + + + + + Service to access the WorkspaceSystemGroup + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Service to provide WorkspaceSystemGroup folder + + + + + + Represents a VCI workspace + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + The comment of the Workspace + + + + + + Navigate to workspace entry + + + + + + EOM parent of this object + + + + + + The name of the Workspace + + + + + + The root path of the Workspace + + + + + + The export language of the Workspace + + + + + + Collection of workspaces + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create a workspace + + Workspace name + Siemens.Engineering.VersionControl.Workspace + + + + Create a workspace + + Workspace name + The root path of the Workspace + Siemens.Engineering.VersionControl.Workspace + + + + Create a workspace + + Workspace name + The root path of the Workspace + The export language of the Workspace + Siemens.Engineering.VersionControl.Workspace + + + + Find a workspace + + The name of the workspace + Siemens.Engineering.VersionControl.Workspace + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + Group containing Workspaces & Workspace user groups + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Navigate to user group + + + + + + EOM parent of this object + + + + + + Collection of workspaces + + + + + + Represents a VCI workspace entry + + + + + Gets an IEngineeringCompositionOrObject with the given . + + The name of the IEngineeringCompositionOrObject to get. + The IEngineeringCompositionOrObject with the given ; otherwise a null. + + + + Gets the list of composition infos available for the object. + + The list of composition infos available for the object. + + + + Gets an attribute with the given . + + The name of the attribute to get. + The attribute with the given . + Throws when attribute with given does not exist + + + + Gets a list of attributes for the given . + + The names of the attributes to get. + A list of the attributes for the given . + Throws when attribute for any of the does not exist + + + + Returns a collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + A collection of EngineeringAttributeInfo objects describing the different attributes on this object. + + + + Sets value of the attribute. + + The name of the attribute to set. + The value of the attribute to set. + Throws when attribute name given does not exist + + + + Sets a list of values for the given . + + A KeyValuePair list containing the names and values of attributes to be set. + Throws when any of the attribute name given in the list does not exist + + + + Sets the attributes with the given names to the given values as indicated in . Errors will be communicated through + + A KeyValuePair list containing the names and values of attributes to be set. + A callback handler to decide how to proceed in a case of error + Throws when any of the attribute name given in the list does not exist + + + + Returns a collection of EngineeringInvocationInfo objects describing the different actions on this object. + + A collection of EngineeringInvocationInfo objects describing the different actions on this object. + + + + Invokes the method represented by the current instance, using the specified parameters. + + The name of the method to invoke. + An argument list for the invoked method. This is an collection of objects with the same number, order, and type as the parameters of the method to be invoked. If there are no parameters, parameters should be null. + An object containing the return value of the invoked method, otherwise null. + + + + Creates an IEngineeringObject of indicated initialized with values as indicated in within the . + + The name of the Composition where the object is to be created. + The specific type of object to be created. + The initial value of the attribute for the object to be created. + An IEngineeringObject of initialized with values as indicated in within the ; otherwise an informative exception is thrown. + + + + + + + + + + + Gets an instance of type T. + + The service type. + The instance of type T; otherwise a null. + + + + %[GetServiceInfoSummary]% + + %[GetServiceInfoValue]% + + + + Deletes this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Linked object + + + + + + The relative file path of the Workspace entry + + + + + + Collection of Workspace entries + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create a workspace entry + + Relative path of workspace entry + Linked object + Siemens.Engineering.VersionControl.WorkspaceMapping + + + + Find a workspace entry + + Linked Object + Siemens.Engineering.VersionControl.WorkspaceMapping + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The top folder for workspaces + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Name of the system group + + + + + + User group for workspaces + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + EOM parent of this object + + + + + + Name of the user group + + + + + + Collection of user groups + + + + + Returns an enumerator that iterates through a collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Determines if is contained within. + + The item being sought. + true if is contained within; otherwise false. + + + + Searches for and returns the zero-based index of the first occurrence within. + + The item for which an index is sought. + The zero-based index of of the first occurrence within. + + + + Create a user group for workspaces + + The name of the user group + Siemens.Engineering.VersionControl.WorkspaceUserGroup + + + + Find a user group + + The name of the user group + Siemens.Engineering.VersionControl.WorkspaceUserGroup + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the parent. + + The parent. + + + + Gets the count. + + The count. + + + + Gets a value indicating whether this instance is read only. + + The value. + + + + Gets the element at the specified . + + The zero-based index of the item to get. + The element at the specified . + + + + The failure of several behaviors provided by 'System.Diagnostics.Process' motivated this class. + On OS's supporting UAC accessing a process running with elevated privileges from an application + running at lower privileges causes 'Process.MainModule' to fail. There are several issues using + 'Process.WaitForExit' and 'Thread.Abort' together. The 'Process.Exited' event doesn't work correctly, + ..., etc. This helper is meant to handle these error cases for the user. + + + + + Constructor that takes a process to be associated with this class. + + The process to be used in association with this class + + + + Constructor that takes a process to be associated with this class. + + The process to be used in association with this class + + + + Kills the process + + + + + Gets the file name used to start the process. The failure of Process.MainModule on OS's supporting UAC when + the process is running at elevated privileges (administrator) relative to our own is one of the motivations + for this class. We must revert to the Windows API function in these situations + + The file name used to start the process. + + + + Gets the exited state of the process. The failure of Process.HasExited on OS's supporting UAC when the process + is running at elevated privileges (administrator) relative to our own is one of the motivations for this class. + We must revert to the Windows API function in these situations + + Exited state of process. + + + + Override of Disposed provided by WaitHandle + + indication of whether disposing or finalizing + + + + Event fired when it is determined that the associated process has terminated. + + + + + Process Id + + + + + Session Id + + + + + File name used to start the process + + + + + Exited state of the process + + + + + Name of the process + + + + + The process + + + + + Summary description for ApplicationReturnCode. + + + + + The return Code indicates that the application ends without an error. + + + + + The startup of the application is terminated because it was startet in a DOS 8.3 version. + The application cannot run with a DOS 8.3 because of assembly loading issues. + + + + + The startup of the application is terminated because it was no bootstrapper found. + + + + + The startup of the application is terminated because the command line arguments are invalid. + + + + + The startup of the application is terminated because the user has requested the help via command line. + + + + + The startup of the application is termiated because .Net 4.5 is not installed. + + + + + The startup of the application is terminated because the PortalPackage installer is blocking it. + + + + + The startup of the application is terminated because FIPS compliance is required on the machine (https://technet.microsoft.com/en-us/library/cc750357.aspx). + + + + + The startup of the application is terminated because it was executed under a guest account. + + + + + The startup of the application is terminated because it was not executed in user interactive mode. + + + + + Represents composition information. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets composition name. + + The composition name. + + + + Flags enum that describes different access levels + + + + + No access allowed. + + + + + Read access. + + + + + Write access. + + + + + Full access. + + + + + + + + + + + + + + + + + + + + + + + + + Represents composition information. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the name of the attribute. + + The name of the attribute. + + + + Gets the level of access supported by the attribute. + + The level of access supported by the attribute. + + + + + + + + + + Gets the potentially supported types of the attribute. + + The potentially supported types of the attribute. + + + + Represents an action info. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the name of the action. + + The name of the action + + + + Represents an action info. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the name of the action. + + The name of the action + + + + Gets the parameter info list. + + The parameter info list + + + + The parameter info + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the type of the parameter. + + The type of the parameter + + + + Gets the name of the parameter. + + The name of the parameter + + + + Represents the necessary information required to create an object. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + The type of the object that will be created. + + The type + + + + The parameters needed to create the object. + + The parameters + + + + The parameter info + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the name of the parameter. + + The name of the parameter + + + + Gets if the parameter is mandatory. + + True if mandatory; False otherwise. + + + + Exception Message Data structure. + + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets the text. + + The text. + + + + Gets the detail text. + + The detail text. + + + + The delegate that will be called if there is an issue with a given attribute + + The attribute configuration with issues + + +