Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions 18.0.1685432504

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions --version 18.0.1685432504
NuGet\Install-Package Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions -Version 18.0.1685432504
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="18.0.1685432504" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions --version 18.0.1685432504
#r "nuget: Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions, 18.0.1685432504"
#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.
// Install Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions as a Cake Addin
#addin nuget:?package=Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions&version=18.0.1685432504

// Install Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions as a Cake Tool
#tool nuget:?package=Siemens.Collaboration.Net.TiaPortal.AddIn.Extensions&version=18.0.1685432504

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 net48 is compatible.  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
18.0.1685432504 316 5/30/2023
18.0.1685386091 128 5/29/2023
17.0.1685432472 157 5/30/2023
16.0.1685432419 126 5/30/2023
16.0.1685386014 118 5/29/2023