Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions 16.0.1685432419

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.1685432419
                    
NuGet\Install-Package Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions -Version 16.0.1685432419
                    
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.1685432419" />
                    
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.1685432419" />
                    
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.1685432419
                    
#r "nuget: Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions, 16.0.1685432419"
                    
#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.1685432419
                    
Install Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions as a Cake Addin
#tool nuget:?package=Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions&version=16.0.1685432419
                    
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
19.0.1725480561 203 9/6/2024
18.0.1725480533 151 9/6/2024
18.0.1685432504 447 5/30/2023
18.0.1685386091 181 5/29/2023
17.0.1725480504 139 9/6/2024
17.0.1685432472 241 5/30/2023
16.0.1725480458 120 9/6/2024
16.0.1685432419 174 5/30/2023
16.0.1685386014 166 5/29/2023