AVEVA OMI app limitations and restrictions
- Last UpdatedAug 21, 2026
- 1 minute read
- Events and scripting are not supported.
- Configuration of basic datatype properties only is supported.
- Apps cannot be imported from a network share location.
- Configuration of collection and array properties is not supported.
- Upgrading apps is not supported.
- Nested properties can be viewed and configured, but they cannot be configured with data binding.
- To host the .NET controls, use the WPF element WindowsFormHost to wrap the control into WPF.
Wrap Control
<UserControl x:Class="ArchestrA.Visualization.TrendApp.TrendControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<WindowsFormsHost x:Name="FormsHost" />
</Grid>
</UserControl>