Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions 16.0.1725480458

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions --version 16.0.1725480458
                    
NuGet\Install-Package Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions -Version 16.0.1725480458
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions" Version="16.0.1725480458" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions" Version="16.0.1725480458" />
                    
Directory.Packages.props
<PackageReference Include="Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions --version 16.0.1725480458
                    
#r "nuget: Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions, 16.0.1725480458"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions&version=16.0.1725480458
                    
Install Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions as a Cake Addin
#tool nuget:?package=Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions&version=16.0.1725480458
                    
Install Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions as a Cake Tool

TIA Add-In Extensions

Nuget Nuget
Nuget Nuget Nuget

Includes Nuget

Siemens Collaboration Add-In Extensions provide extensions for Siemens Engineering types to help you write cleaner and more efficient code.

Installation

  • install package Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions and select a matching version (17.* = TIA Portal V17, 18.* = TIA Portal V18)
  • reload and build the project

Dependencies

By installing this package, the following package is automatically installed and must not be installed individually.

TIA Add-In Openness References

All Siemens.Engineering.AddIn assemblies are referenced automatically. Please see README for further documentation.

Examples

Messages and Dialogs

Open message box in foreground

var result = AddInMessageBox.Show("Successfully imported all files", "Import done", MessageBoxButton.OK, MessageBoxImage.Information);

Open dialog in foreground

var result = myDialog.ShowDialogInForeground();

Context Menu Item

Catch an exception before an add-in is crashing and handle it in a handler

protected override void BuildContextMenuItems(ContextMenuAddInRoot addInRootSubmenu)
{
    addInRootSubmenu.Items.AddActionItem<IEngineeringObject>("Item 1", ClickDelegate, UpdateStatusDelegate, OnError);
}

/// <summary>
/// Handle errors
/// </summary>
/// <param name="exception">Unhandled exception when executing add-in</param>
private void OnError(Exception exception)
{
    // Show error message
    AddInMessageBox.Show(exception.ToString(), "Error", MessageBoxButton.OK, MessageBoxImage.Error);

    // Write error to file
    //File.WriteAllText("...", exception.ToString());
}

TIA Portal Openness Extensions

Most Nuget are available as well. Please see README for further documentation.

Product Compatible and additional computed target framework versions.
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
20.0.1744193617 137 4/11/2025
19.0.1725480561 233 9/6/2024
18.0.1725480533 158 9/6/2024
18.0.1685432504 450 5/30/2023
18.0.1685386091 184 5/29/2023
17.0.1725480504 148 9/6/2024
17.0.1685432472 245 5/30/2023
16.0.1725480458 129 9/6/2024
16.0.1685432419 177 5/30/2023
16.0.1685386014 169 5/29/2023