App source code #23
63
.gitattributes
vendored
Normal file
63
.gitattributes
vendored
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
###############################################################################
|
||||||
|
# Set default behavior to automatically normalize line endings.
|
||||||
|
###############################################################################
|
||||||
|
* text=auto
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Set default behavior for command prompt diff.
|
||||||
|
#
|
||||||
|
# This is need for earlier builds of msysgit that does not have it on by
|
||||||
|
# default for csharp files.
|
||||||
|
# Note: This is only used by command line
|
||||||
|
###############################################################################
|
||||||
|
#*.cs diff=csharp
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Set the merge driver for project and solution files
|
||||||
|
#
|
||||||
|
# Merging from the command prompt will add diff markers to the files if there
|
||||||
|
# are conflicts (Merging from VS is not affected by the settings below, in VS
|
||||||
|
# the diff markers are never inserted). Diff markers may cause the following
|
||||||
|
# file extensions to fail to load in VS. An alternative would be to treat
|
||||||
|
# these files as binary and thus will always conflict and require user
|
||||||
|
# intervention with every merge. To do so, just uncomment the entries below
|
||||||
|
###############################################################################
|
||||||
|
#*.sln merge=binary
|
||||||
|
#*.csproj merge=binary
|
||||||
|
#*.vbproj merge=binary
|
||||||
|
#*.vcxproj merge=binary
|
||||||
|
#*.vcproj merge=binary
|
||||||
|
#*.dbproj merge=binary
|
||||||
|
#*.fsproj merge=binary
|
||||||
|
#*.lsproj merge=binary
|
||||||
|
#*.wixproj merge=binary
|
||||||
|
#*.modelproj merge=binary
|
||||||
|
#*.sqlproj merge=binary
|
||||||
|
#*.wwaproj merge=binary
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# behavior for image files
|
||||||
|
#
|
||||||
|
# image files are treated as binary by default.
|
||||||
|
###############################################################################
|
||||||
|
#*.jpg binary
|
||||||
|
#*.png binary
|
||||||
|
#*.gif binary
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# diff behavior for common document formats
|
||||||
|
#
|
||||||
|
# Convert binary document formats to text before diffing them. This feature
|
||||||
|
# is only available from the command line. Turn it on by uncommenting the
|
||||||
|
# entries below.
|
||||||
|
###############################################################################
|
||||||
|
#*.doc diff=astextplain
|
||||||
|
#*.DOC diff=astextplain
|
||||||
|
#*.docx diff=astextplain
|
||||||
|
#*.DOCX diff=astextplain
|
||||||
|
#*.dot diff=astextplain
|
||||||
|
#*.DOT diff=astextplain
|
||||||
|
#*.pdf diff=astextplain
|
||||||
|
#*.PDF diff=astextplain
|
||||||
|
#*.rtf diff=astextplain
|
||||||
|
#*.RTF diff=astextplain
|
363
.gitignore
vendored
Normal file
363
.gitignore
vendored
Normal file
@ -0,0 +1,363 @@
|
|||||||
|
## Ignore Visual Studio temporary files, build results, and
|
||||||
|
## files generated by popular Visual Studio add-ons.
|
||||||
|
##
|
||||||
|
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
||||||
|
|
||||||
|
# User-specific files
|
||||||
|
*.rsuser
|
||||||
|
*.suo
|
||||||
|
*.user
|
||||||
|
*.userosscache
|
||||||
|
*.sln.docstates
|
||||||
|
|
||||||
|
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||||
|
*.userprefs
|
||||||
|
|
||||||
|
# Mono auto generated files
|
||||||
|
mono_crash.*
|
||||||
|
|
||||||
|
# Build results
|
||||||
|
[Dd]ebug/
|
||||||
|
[Dd]ebugPublic/
|
||||||
|
[Rr]elease/
|
||||||
|
[Rr]eleases/
|
||||||
|
x64/
|
||||||
|
x86/
|
||||||
|
[Ww][Ii][Nn]32/
|
||||||
|
[Aa][Rr][Mm]/
|
||||||
|
[Aa][Rr][Mm]64/
|
||||||
|
bld/
|
||||||
|
[Bb]in/
|
||||||
|
[Oo]bj/
|
||||||
|
[Oo]ut/
|
||||||
|
[Ll]og/
|
||||||
|
[Ll]ogs/
|
||||||
|
|
||||||
|
# Visual Studio 2015/2017 cache/options directory
|
||||||
|
.vs/
|
||||||
|
# Uncomment if you have tasks that create the project's static files in wwwroot
|
||||||
|
#wwwroot/
|
||||||
|
|
||||||
|
# Visual Studio 2017 auto generated files
|
||||||
|
Generated\ Files/
|
||||||
|
|
||||||
|
# MSTest test Results
|
||||||
|
[Tt]est[Rr]esult*/
|
||||||
|
[Bb]uild[Ll]og.*
|
||||||
|
|
||||||
|
# NUnit
|
||||||
|
*.VisualState.xml
|
||||||
|
TestResult.xml
|
||||||
|
nunit-*.xml
|
||||||
|
|
||||||
|
# Build Results of an ATL Project
|
||||||
|
[Dd]ebugPS/
|
||||||
|
[Rr]eleasePS/
|
||||||
|
dlldata.c
|
||||||
|
|
||||||
|
# Benchmark Results
|
||||||
|
BenchmarkDotNet.Artifacts/
|
||||||
|
|
||||||
|
# .NET Core
|
||||||
|
project.lock.json
|
||||||
|
project.fragment.lock.json
|
||||||
|
artifacts/
|
||||||
|
|
||||||
|
# ASP.NET Scaffolding
|
||||||
|
ScaffoldingReadMe.txt
|
||||||
|
|
||||||
|
# StyleCop
|
||||||
|
StyleCopReport.xml
|
||||||
|
|
||||||
|
# Files built by Visual Studio
|
||||||
|
*_i.c
|
||||||
|
*_p.c
|
||||||
|
*_h.h
|
||||||
|
*.ilk
|
||||||
|
*.meta
|
||||||
|
*.obj
|
||||||
|
*.iobj
|
||||||
|
*.pch
|
||||||
|
*.pdb
|
||||||
|
*.ipdb
|
||||||
|
*.pgc
|
||||||
|
*.pgd
|
||||||
|
*.rsp
|
||||||
|
*.sbr
|
||||||
|
*.tlb
|
||||||
|
*.tli
|
||||||
|
*.tlh
|
||||||
|
*.tmp
|
||||||
|
*.tmp_proj
|
||||||
|
*_wpftmp.csproj
|
||||||
|
*.log
|
||||||
|
*.vspscc
|
||||||
|
*.vssscc
|
||||||
|
.builds
|
||||||
|
*.pidb
|
||||||
|
*.svclog
|
||||||
|
*.scc
|
||||||
|
|
||||||
|
# Chutzpah Test files
|
||||||
|
_Chutzpah*
|
||||||
|
|
||||||
|
# Visual C++ cache files
|
||||||
|
ipch/
|
||||||
|
*.aps
|
||||||
|
*.ncb
|
||||||
|
*.opendb
|
||||||
|
*.opensdf
|
||||||
|
*.sdf
|
||||||
|
*.cachefile
|
||||||
|
*.VC.db
|
||||||
|
*.VC.VC.opendb
|
||||||
|
|
||||||
|
# Visual Studio profiler
|
||||||
|
*.psess
|
||||||
|
*.vsp
|
||||||
|
*.vspx
|
||||||
|
*.sap
|
||||||
|
|
||||||
|
# Visual Studio Trace Files
|
||||||
|
*.e2e
|
||||||
|
|
||||||
|
# TFS 2012 Local Workspace
|
||||||
|
$tf/
|
||||||
|
|
||||||
|
# Guidance Automation Toolkit
|
||||||
|
*.gpState
|
||||||
|
|
||||||
|
# ReSharper is a .NET coding add-in
|
||||||
|
_ReSharper*/
|
||||||
|
*.[Rr]e[Ss]harper
|
||||||
|
*.DotSettings.user
|
||||||
|
|
||||||
|
# TeamCity is a build add-in
|
||||||
|
_TeamCity*
|
||||||
|
|
||||||
|
# DotCover is a Code Coverage Tool
|
||||||
|
*.dotCover
|
||||||
|
|
||||||
|
# AxoCover is a Code Coverage Tool
|
||||||
|
.axoCover/*
|
||||||
|
!.axoCover/settings.json
|
||||||
|
|
||||||
|
# Coverlet is a free, cross platform Code Coverage Tool
|
||||||
|
coverage*.json
|
||||||
|
coverage*.xml
|
||||||
|
coverage*.info
|
||||||
|
|
||||||
|
# Visual Studio code coverage results
|
||||||
|
*.coverage
|
||||||
|
*.coveragexml
|
||||||
|
|
||||||
|
# NCrunch
|
||||||
|
_NCrunch_*
|
||||||
|
.*crunch*.local.xml
|
||||||
|
nCrunchTemp_*
|
||||||
|
|
||||||
|
# MightyMoose
|
||||||
|
*.mm.*
|
||||||
|
AutoTest.Net/
|
||||||
|
|
||||||
|
# Web workbench (sass)
|
||||||
|
.sass-cache/
|
||||||
|
|
||||||
|
# Installshield output folder
|
||||||
|
[Ee]xpress/
|
||||||
|
|
||||||
|
# DocProject is a documentation generator add-in
|
||||||
|
DocProject/buildhelp/
|
||||||
|
DocProject/Help/*.HxT
|
||||||
|
DocProject/Help/*.HxC
|
||||||
|
DocProject/Help/*.hhc
|
||||||
|
DocProject/Help/*.hhk
|
||||||
|
DocProject/Help/*.hhp
|
||||||
|
DocProject/Help/Html2
|
||||||
|
DocProject/Help/html
|
||||||
|
|
||||||
|
# Click-Once directory
|
||||||
|
publish/
|
||||||
|
|
||||||
|
# Publish Web Output
|
||||||
|
*.[Pp]ublish.xml
|
||||||
|
*.azurePubxml
|
||||||
|
# Note: Comment the next line if you want to checkin your web deploy settings,
|
||||||
|
# but database connection strings (with potential passwords) will be unencrypted
|
||||||
|
*.pubxml
|
||||||
|
*.publishproj
|
||||||
|
|
||||||
|
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
||||||
|
# checkin your Azure Web App publish settings, but sensitive information contained
|
||||||
|
# in these scripts will be unencrypted
|
||||||
|
PublishScripts/
|
||||||
|
|
||||||
|
# NuGet Packages
|
||||||
|
*.nupkg
|
||||||
|
# NuGet Symbol Packages
|
||||||
|
*.snupkg
|
||||||
|
# The packages folder can be ignored because of Package Restore
|
||||||
|
**/[Pp]ackages/*
|
||||||
|
# except build/, which is used as an MSBuild target.
|
||||||
|
!**/[Pp]ackages/build/
|
||||||
|
# Uncomment if necessary however generally it will be regenerated when needed
|
||||||
|
#!**/[Pp]ackages/repositories.config
|
||||||
|
# NuGet v3's project.json files produces more ignorable files
|
||||||
|
*.nuget.props
|
||||||
|
*.nuget.targets
|
||||||
|
|
||||||
|
# Microsoft Azure Build Output
|
||||||
|
csx/
|
||||||
|
*.build.csdef
|
||||||
|
|
||||||
|
# Microsoft Azure Emulator
|
||||||
|
ecf/
|
||||||
|
rcf/
|
||||||
|
|
||||||
|
# Windows Store app package directories and files
|
||||||
|
AppPackages/
|
||||||
|
BundleArtifacts/
|
||||||
|
Package.StoreAssociation.xml
|
||||||
|
_pkginfo.txt
|
||||||
|
*.appx
|
||||||
|
*.appxbundle
|
||||||
|
*.appxupload
|
||||||
|
|
||||||
|
# Visual Studio cache files
|
||||||
|
# files ending in .cache can be ignored
|
||||||
|
*.[Cc]ache
|
||||||
|
# but keep track of directories ending in .cache
|
||||||
|
!?*.[Cc]ache/
|
||||||
|
|
||||||
|
# Others
|
||||||
|
ClientBin/
|
||||||
|
~$*
|
||||||
|
*~
|
||||||
|
*.dbmdl
|
||||||
|
*.dbproj.schemaview
|
||||||
|
*.jfm
|
||||||
|
*.pfx
|
||||||
|
*.publishsettings
|
||||||
|
orleans.codegen.cs
|
||||||
|
|
||||||
|
# Including strong name files can present a security risk
|
||||||
|
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
||||||
|
#*.snk
|
||||||
|
|
||||||
|
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
||||||
|
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
||||||
|
#bower_components/
|
||||||
|
|
||||||
|
# RIA/Silverlight projects
|
||||||
|
Generated_Code/
|
||||||
|
|
||||||
|
# Backup & report files from converting an old project file
|
||||||
|
# to a newer Visual Studio version. Backup files are not needed,
|
||||||
|
# because we have git ;-)
|
||||||
|
_UpgradeReport_Files/
|
||||||
|
Backup*/
|
||||||
|
UpgradeLog*.XML
|
||||||
|
UpgradeLog*.htm
|
||||||
|
ServiceFabricBackup/
|
||||||
|
*.rptproj.bak
|
||||||
|
|
||||||
|
# SQL Server files
|
||||||
|
*.mdf
|
||||||
|
*.ldf
|
||||||
|
*.ndf
|
||||||
|
|
||||||
|
# Business Intelligence projects
|
||||||
|
*.rdl.data
|
||||||
|
*.bim.layout
|
||||||
|
*.bim_*.settings
|
||||||
|
*.rptproj.rsuser
|
||||||
|
*- [Bb]ackup.rdl
|
||||||
|
*- [Bb]ackup ([0-9]).rdl
|
||||||
|
*- [Bb]ackup ([0-9][0-9]).rdl
|
||||||
|
|
||||||
|
# Microsoft Fakes
|
||||||
|
FakesAssemblies/
|
||||||
|
|
||||||
|
# GhostDoc plugin setting file
|
||||||
|
*.GhostDoc.xml
|
||||||
|
|
||||||
|
# Node.js Tools for Visual Studio
|
||||||
|
.ntvs_analysis.dat
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Visual Studio 6 build log
|
||||||
|
*.plg
|
||||||
|
|
||||||
|
# Visual Studio 6 workspace options file
|
||||||
|
*.opt
|
||||||
|
|
||||||
|
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
||||||
|
*.vbw
|
||||||
|
|
||||||
|
# Visual Studio LightSwitch build output
|
||||||
|
**/*.HTMLClient/GeneratedArtifacts
|
||||||
|
**/*.DesktopClient/GeneratedArtifacts
|
||||||
|
**/*.DesktopClient/ModelManifest.xml
|
||||||
|
**/*.Server/GeneratedArtifacts
|
||||||
|
**/*.Server/ModelManifest.xml
|
||||||
|
_Pvt_Extensions
|
||||||
|
|
||||||
|
# Paket dependency manager
|
||||||
|
.paket/paket.exe
|
||||||
|
paket-files/
|
||||||
|
|
||||||
|
# FAKE - F# Make
|
||||||
|
.fake/
|
||||||
|
|
||||||
|
# CodeRush personal settings
|
||||||
|
.cr/personal
|
||||||
|
|
||||||
|
# Python Tools for Visual Studio (PTVS)
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
|
||||||
|
# Cake - Uncomment if you are using it
|
||||||
|
# tools/**
|
||||||
|
# !tools/packages.config
|
||||||
|
|
||||||
|
# Tabs Studio
|
||||||
|
*.tss
|
||||||
|
|
||||||
|
# Telerik's JustMock configuration file
|
||||||
|
*.jmconfig
|
||||||
|
|
||||||
|
# BizTalk build output
|
||||||
|
*.btp.cs
|
||||||
|
*.btm.cs
|
||||||
|
*.odx.cs
|
||||||
|
*.xsd.cs
|
||||||
|
|
||||||
|
# OpenCover UI analysis results
|
||||||
|
OpenCover/
|
||||||
|
|
||||||
|
# Azure Stream Analytics local run output
|
||||||
|
ASALocalRun/
|
||||||
|
|
||||||
|
# MSBuild Binary and Structured Log
|
||||||
|
*.binlog
|
||||||
|
|
||||||
|
# NVidia Nsight GPU debugger configuration file
|
||||||
|
*.nvuser
|
||||||
|
|
||||||
|
# MFractors (Xamarin productivity tool) working folder
|
||||||
|
.mfractor/
|
||||||
|
|
||||||
|
# Local History for Visual Studio
|
||||||
|
.localhistory/
|
||||||
|
|
||||||
|
# BeatPulse healthcheck temp database
|
||||||
|
healthchecksdb
|
||||||
|
|
||||||
|
# Backup folder for Package Reference Convert tool in Visual Studio 2017
|
||||||
|
MigrationBackup/
|
||||||
|
|
||||||
|
# Ionide (cross platform F# VS Code tools) working folder
|
||||||
|
.ionide/
|
||||||
|
|
||||||
|
# Fody - auto-generated XML schema
|
||||||
|
FodyWeavers.xsd
|
6
SOURCE/Application/App.config
Normal file
6
SOURCE/Application/App.config
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
95
SOURCE/Application/Application.csproj
Normal file
95
SOURCE/Application/Application.csproj
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{165D011D-D27B-48F5-995D-BAC062F41986}</ProjectGuid>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<RootNamespace>Application</RootNamespace>
|
||||||
|
<AssemblyName>Application</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
|
<Deterministic>true</Deterministic>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="PresentationCore" />
|
||||||
|
<Reference Include="PresentationFramework" />
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xaml" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Deployment" />
|
||||||
|
<Reference Include="System.Drawing" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Windows.Forms" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
<Reference Include="UIAutomationProvider" />
|
||||||
|
<Reference Include="WindowsBase" />
|
||||||
|
<Reference Include="WindowsFormsIntegration" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Form1.cs">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form1.Designer.cs">
|
||||||
|
<DependentUpon>Form1.cs</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Program.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
<EmbeddedResource Include="Form1.resx">
|
||||||
|
<DependentUpon>Form1.cs</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Properties\Resources.resx">
|
||||||
|
<Generator>ResXFileCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<Compile Include="Properties\Resources.Designer.cs">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>Resources.resx</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<None Include="Properties\Settings.settings">
|
||||||
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||||
|
</None>
|
||||||
|
<Compile Include="Properties\Settings.Designer.cs">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>Settings.settings</DependentUpon>
|
||||||
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||||
|
</Compile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="App.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Plugin\ModellingWizard.csproj">
|
||||||
|
<Project>{10E1A26F-1F33-478A-84A3-BF59710893C0}</Project>
|
||||||
|
<Name>ModellingWizard</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
</Project>
|
31
SOURCE/Application/Application.sln
Normal file
31
SOURCE/Application/Application.sln
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 16
|
||||||
|
VisualStudioVersion = 16.0.32228.343
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Application", "Application.csproj", "{165D011D-D27B-48F5-995D-BAC062F41986}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModellingWizard", "..\Plugin\ModellingWizard.csproj", "{10E1A26F-1F33-478A-84A3-BF59710893C0}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{165D011D-D27B-48F5-995D-BAC062F41986}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{165D011D-D27B-48F5-995D-BAC062F41986}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{165D011D-D27B-48F5-995D-BAC062F41986}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{165D011D-D27B-48F5-995D-BAC062F41986}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{10E1A26F-1F33-478A-84A3-BF59710893C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{10E1A26F-1F33-478A-84A3-BF59710893C0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{10E1A26F-1F33-478A-84A3-BF59710893C0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{10E1A26F-1F33-478A-84A3-BF59710893C0}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {C56F1D04-53B4-40D4-9B1C-6FECF9F987A3}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
70
SOURCE/Application/Form1.Designer.cs
generated
Normal file
70
SOURCE/Application/Form1.Designer.cs
generated
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
|
||||||
|
namespace App
|
||||||
|
{
|
||||||
|
partial class Form1
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Erforderliche Designervariable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Verwendete Ressourcen bereinigen.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Vom Windows Form-Designer generierter Code
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Erforderliche Methode für die Designerunterstützung.
|
||||||
|
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
|
||||||
|
/// </summary>
|
||||||
|
private void InitializeComponent()
|
||||||
|
{
|
||||||
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
||||||
|
this.deviceDescription1 = new Aml.Editor.Plugin.DeviceDescription(new Aml.Editor.Plugin.MWController());
|
||||||
|
this.SuspendLayout();
|
||||||
|
//
|
||||||
|
// deviceDescription1
|
||||||
|
//
|
||||||
|
this.deviceDescription1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
||||||
|
this.deviceDescription1.BackColor = System.Drawing.Color.Transparent;
|
||||||
|
this.deviceDescription1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
|
this.deviceDescription1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.deviceDescription1.Location = new System.Drawing.Point(0, 0);
|
||||||
|
this.deviceDescription1.Margin = new System.Windows.Forms.Padding(0);
|
||||||
|
this.deviceDescription1.Name = "deviceDescription1";
|
||||||
|
this.deviceDescription1.Size = new System.Drawing.Size(884, 461);
|
||||||
|
this.deviceDescription1.TabIndex = 0;
|
||||||
|
this.deviceDescription1.Load += new System.EventHandler(this.deviceDescription1_Load);
|
||||||
|
//
|
||||||
|
// Form1
|
||||||
|
//
|
||||||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
|
this.AutoSize = true;
|
||||||
|
this.ClientSize = new System.Drawing.Size(884, 461);
|
||||||
|
this.Controls.Add(this.deviceDescription1);
|
||||||
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||||
|
this.MinimumSize = new System.Drawing.Size(900, 500);
|
||||||
|
this.Name = "Form1";
|
||||||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||||
|
this.Text = "Modelling Wizard für Gerätemodelle";
|
||||||
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private Aml.Editor.Plugin.DeviceDescription deviceDescription1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
18
SOURCE/Application/Form1.cs
Normal file
18
SOURCE/Application/Form1.cs
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
using System;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
namespace App
|
||||||
|
{
|
||||||
|
public partial class Form1 : Form
|
||||||
|
{
|
||||||
|
public Form1()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void deviceDescription1_Load(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
1014
SOURCE/Application/Form1.resx
Normal file
1014
SOURCE/Application/Form1.resx
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
2762
SOURCE/Application/Plugins/ModellingWizard/AML.Engine.Services.xml
Normal file
2762
SOURCE/Application/Plugins/ModellingWizard/AML.Engine.Services.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
SOURCE/Application/Plugins/ModellingWizard/AML.Engine.dll
Normal file
BIN
SOURCE/Application/Plugins/ModellingWizard/AML.Engine.dll
Normal file
Binary file not shown.
18986
SOURCE/Application/Plugins/ModellingWizard/AML.Engine.xml
Normal file
18986
SOURCE/Application/Plugins/ModellingWizard/AML.Engine.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
SOURCE/Application/Plugins/ModellingWizard/Gsd2Aml.Lib.dll
Normal file
BIN
SOURCE/Application/Plugins/ModellingWizard/Gsd2Aml.Lib.dll
Normal file
Binary file not shown.
3717
SOURCE/Application/Plugins/ModellingWizard/Gsd2Aml.Lib.xml
Normal file
3717
SOURCE/Application/Plugins/ModellingWizard/Gsd2Aml.Lib.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
SOURCE/Application/Plugins/ModellingWizard/Microsoft.CSharp.dll
Normal file
BIN
SOURCE/Application/Plugins/ModellingWizard/Microsoft.CSharp.dll
Normal file
Binary file not shown.
BIN
SOURCE/Application/Plugins/ModellingWizard/ModellingWizard.dll
Normal file
BIN
SOURCE/Application/Plugins/ModellingWizard/ModellingWizard.dll
Normal file
Binary file not shown.
@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<runtime>
|
||||||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="AML.Engine" publicKeyToken="449e3551ddfecd2b" culture="neutral" />
|
||||||
|
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-1.5.8.0" newVersion="1.5.8.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</assemblyBinding>
|
||||||
|
</runtime>
|
||||||
|
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /></startup></configuration>
|
BIN
SOURCE/Application/Plugins/ModellingWizard/PresentationCore.dll
Normal file
BIN
SOURCE/Application/Plugins/ModellingWizard/PresentationCore.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
SOURCE/Application/Plugins/ModellingWizard/System.Data.dll
Normal file
BIN
SOURCE/Application/Plugins/ModellingWizard/System.Data.dll
Normal file
Binary file not shown.
BIN
SOURCE/Application/Plugins/ModellingWizard/System.Drawing.dll
Normal file
BIN
SOURCE/Application/Plugins/ModellingWizard/System.Drawing.dll
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1,590 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<doc>
|
||||||
|
<assembly>
|
||||||
|
<name>System.IO.FileSystem.AccessControl</name>
|
||||||
|
</assembly>
|
||||||
|
<members>
|
||||||
|
<member name="T:System.IO.FileSystemAclExtensions">
|
||||||
|
<summary>Provides Windows-specific static extension methods for manipulating Access Control List (ACL) security attributes for files and directories.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileSystemAclExtensions.Create(System.IO.DirectoryInfo,System.Security.AccessControl.DirectorySecurity)">
|
||||||
|
<summary>Creates a new directory, ensuring it is created with the specified directory security. If the directory already exists, nothing is done.</summary>
|
||||||
|
<param name="directoryInfo">A directory that does not exist yet that will be created by the method.</param>
|
||||||
|
<param name="directorySecurity">The access control and audit security for the directory.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="directoryInfo" /> or <paramref name="directorySecurity" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.IO.DirectoryNotFoundException">Could not find a part of the path.</exception>
|
||||||
|
<exception cref="T:System.UnauthorizedAccessException">Access to the path is denied.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileSystemAclExtensions.Create(System.IO.FileInfo,System.IO.FileMode,System.Security.AccessControl.FileSystemRights,System.IO.FileShare,System.Int32,System.IO.FileOptions,System.Security.AccessControl.FileSecurity)">
|
||||||
|
<summary>Creates a new file stream, ensuring it is created with the specified properties and security settings.</summary>
|
||||||
|
<param name="fileInfo">A file that does not exist yet that will be created by the method.</param>
|
||||||
|
<param name="mode">One of the enumeration values that specifies how the operating system should open a file.</param>
|
||||||
|
<param name="rights">One of the enumeration values that defines the access rights to use when creating access and audit rules.</param>
|
||||||
|
<param name="share">One of the enumeration values for controlling the kind of access other file stream objects can have to the same file.</param>
|
||||||
|
<param name="bufferSize">The number of bytes buffered for reads and writes to the file.</param>
|
||||||
|
<param name="options">One of the enumeration values that describes how to create or overwrite the file.</param>
|
||||||
|
<param name="fileSecurity">An object that determines the access control and audit security for the file.</param>
|
||||||
|
<exception cref="T:System.ArgumentException">The <paramref name="rights" /> and <paramref name="mode" /> combination is invalid.</exception>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="fileInfo" /> or <paramref name="fileSecurity" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">
|
||||||
|
<paramref name="mode" /> or <paramref name="share" /> are out of their legal enum range.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
<paramref name="bufferSize" /> is not a positive number.</exception>
|
||||||
|
<exception cref="T:System.IO.DirectoryNotFoundException">Could not find a part of the path.</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
|
||||||
|
<exception cref="T:System.UnauthorizedAccessException">Access to the path is denied.</exception>
|
||||||
|
<returns>A file stream for the newly created file.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileSystemAclExtensions.CreateDirectory(System.Security.AccessControl.DirectorySecurity,System.String)">
|
||||||
|
<summary>Creates a directory and returns it, ensuring it is created with the specified directory security. If the directory already exists, the existing directory is returned.</summary>
|
||||||
|
<param name="directorySecurity">An object that determines the access control and audit security for the directory.</param>
|
||||||
|
<param name="path">The path of the directory to create.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="directorySecurity" /> or <paramref name="path" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="path" /> is empty.</exception>
|
||||||
|
<exception cref="T:System.IO.DirectoryNotFoundException">Could not find a part of the path.</exception>
|
||||||
|
<exception cref="T:System.UnauthorizedAccessException">Access to the path is denied.</exception>
|
||||||
|
<returns>A directory information object representing either a created directory with the provided security properties, or the existing directory.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileSystemAclExtensions.GetAccessControl(System.IO.DirectoryInfo)">
|
||||||
|
<summary>Returns the security information of a directory.</summary>
|
||||||
|
<param name="directoryInfo">The existing directory from which to obtain the security information.</param>
|
||||||
|
<returns>The security descriptors of all the access control sections of the directory.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileSystemAclExtensions.GetAccessControl(System.IO.DirectoryInfo,System.Security.AccessControl.AccessControlSections)">
|
||||||
|
<summary>Returns the security information of a directory.</summary>
|
||||||
|
<param name="directoryInfo">An existing directory from which to obtain the security information.</param>
|
||||||
|
<param name="includeSections">The desired access control sections to retrieve.</param>
|
||||||
|
<returns>The security descriptors of the specified access control sections of the directory.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileSystemAclExtensions.GetAccessControl(System.IO.FileInfo)">
|
||||||
|
<summary>Returns the security information of a file.</summary>
|
||||||
|
<param name="fileInfo">The file from which to obtain the security information.</param>
|
||||||
|
<returns>The security descriptors of all the access control sections of the file.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileSystemAclExtensions.GetAccessControl(System.IO.FileInfo,System.Security.AccessControl.AccessControlSections)">
|
||||||
|
<summary>Returns the security information of a file.</summary>
|
||||||
|
<param name="fileInfo">An existing file from which to obtain the security information.</param>
|
||||||
|
<param name="includeSections">The desired access control sections to retrieve from the file.</param>
|
||||||
|
<returns>The security descriptors of the specified access control sections of the file.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileSystemAclExtensions.GetAccessControl(System.IO.FileStream)">
|
||||||
|
<summary>Returns the security information of a file.</summary>
|
||||||
|
<param name="fileStream">An existing file from which to obtain the security information.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="fileStream" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The file stream is closed.</exception>
|
||||||
|
<returns>The security descriptors of all the access control sections of the file.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileSystemAclExtensions.SetAccessControl(System.IO.DirectoryInfo,System.Security.AccessControl.DirectorySecurity)">
|
||||||
|
<summary>Changes the security attributes of an existing directory.</summary>
|
||||||
|
<param name="directoryInfo">An existing directory.</param>
|
||||||
|
<param name="directorySecurity">The security information to apply to the directory.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="directorySecurity" /> is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileSystemAclExtensions.SetAccessControl(System.IO.FileInfo,System.Security.AccessControl.FileSecurity)">
|
||||||
|
<summary>Changes the security attributes of an existing file.</summary>
|
||||||
|
<param name="fileInfo">An existing file.</param>
|
||||||
|
<param name="fileSecurity">The security information to apply to the file.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="fileSecurity" /> is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileSystemAclExtensions.SetAccessControl(System.IO.FileStream,System.Security.AccessControl.FileSecurity)">
|
||||||
|
<summary>Changes the security attributes of an existing file.</summary>
|
||||||
|
<param name="fileStream">An existing file.</param>
|
||||||
|
<param name="fileSecurity">The security information to apply to the file.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="fileStream" /> or <paramref name="fileSecurity" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The file stream is closed.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.Security.AccessControl.DirectoryObjectSecurity">
|
||||||
|
<summary>Provides the ability to control access to directory objects without direct manipulation of Access Control Lists (ACLs).</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.#ctor">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> class.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.#ctor(System.Security.AccessControl.CommonSecurityDescriptor)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> class with the specified security descriptor.</summary>
|
||||||
|
<param name="securityDescriptor">The security descriptor to be associated with the new <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType,System.Guid,System.Guid)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AccessRule" /> class with the specified values.</summary>
|
||||||
|
<param name="identityReference">The identity to which the access rule applies. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</param>
|
||||||
|
<param name="accessMask">The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators.</param>
|
||||||
|
<param name="isInherited">true if this rule is inherited from a parent container.</param>
|
||||||
|
<param name="inheritanceFlags">Specifies the inheritance properties of the access rule.</param>
|
||||||
|
<param name="propagationFlags">Specifies whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
|
||||||
|
<param name="type">Specifies the valid access control type.</param>
|
||||||
|
<param name="objectType">The identity of the class of objects to which the new access rule applies.</param>
|
||||||
|
<param name="inheritedObjectType">The identity of the class of child objects which can inherit the new access rule.</param>
|
||||||
|
<returns>The <see cref="T:System.Security.AccessControl.AccessRule" /> object that this method creates.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.AddAccessRule(System.Security.AccessControl.ObjectAccessRule)">
|
||||||
|
<summary>Adds the specified access rule to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object.</summary>
|
||||||
|
<param name="rule">The access rule to add.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.AddAuditRule(System.Security.AccessControl.ObjectAuditRule)">
|
||||||
|
<summary>Adds the specified audit rule to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object.</summary>
|
||||||
|
<param name="rule">The audit rule to add.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags,System.Guid,System.Guid)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule" /> class with the specified values.</summary>
|
||||||
|
<param name="identityReference">The identity to which the audit rule applies. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</param>
|
||||||
|
<param name="accessMask">The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators.</param>
|
||||||
|
<param name="isInherited">
|
||||||
|
<see langword="true" /> if this rule is inherited from a parent container.</param>
|
||||||
|
<param name="inheritanceFlags">Specifies the inheritance properties of the audit rule.</param>
|
||||||
|
<param name="propagationFlags">Specifies whether inherited audit rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
|
||||||
|
<param name="flags">Specifies the conditions for which the rule is audited.</param>
|
||||||
|
<param name="objectType">The identity of the class of objects to which the new audit rule applies.</param>
|
||||||
|
<param name="inheritedObjectType">The identity of the class of child objects which can inherit the new audit rule.</param>
|
||||||
|
<returns>The <see cref="T:System.Security.AccessControl.AuditRule" /> object that this method creates.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.GetAccessRules(System.Boolean,System.Boolean,System.Type)">
|
||||||
|
<summary>Gets a collection of the access rules associated with the specified security identifier.</summary>
|
||||||
|
<param name="includeExplicit">
|
||||||
|
<see langword="true" /> to include access rules explicitly set for the object.</param>
|
||||||
|
<param name="includeInherited">
|
||||||
|
<see langword="true" /> to include inherited access rules.</param>
|
||||||
|
<param name="targetType">The security identifier for which to retrieve access rules. This must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</param>
|
||||||
|
<returns>The collection of access rules associated with the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.GetAuditRules(System.Boolean,System.Boolean,System.Type)">
|
||||||
|
<summary>Gets a collection of the audit rules associated with the specified security identifier.</summary>
|
||||||
|
<param name="includeExplicit">
|
||||||
|
<see langword="true" /> to include audit rules explicitly set for the object.</param>
|
||||||
|
<param name="includeInherited">
|
||||||
|
<see langword="true" /> to include inherited audit rules.</param>
|
||||||
|
<param name="targetType">The security identifier for which to retrieve audit rules. This must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</param>
|
||||||
|
<returns>The collection of audit rules associated with the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.ModifyAccess(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AccessRule,System.Boolean@)">
|
||||||
|
<summary>Applies the specified modification to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object.</summary>
|
||||||
|
<param name="modification">The modification to apply to the DACL.</param>
|
||||||
|
<param name="rule">The access rule to modify.</param>
|
||||||
|
<param name="modified">
|
||||||
|
<see langword="true" /> if the DACL is successfully modified; otherwise, <see langword="false" />.</param>
|
||||||
|
<returns>
|
||||||
|
<see langword="true" /> if the DACL is successfully modified; otherwise, <see langword="false" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.ModifyAudit(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AuditRule,System.Boolean@)">
|
||||||
|
<summary>Applies the specified modification to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object.</summary>
|
||||||
|
<param name="modification">The modification to apply to the SACL.</param>
|
||||||
|
<param name="rule">The audit rule to modify.</param>
|
||||||
|
<param name="modified">
|
||||||
|
<see langword="true" /> if the SACL is successfully modified; otherwise, <see langword="false" />.</param>
|
||||||
|
<returns>
|
||||||
|
<see langword="true" /> if the SACL is successfully modified; otherwise, <see langword="false" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.RemoveAccessRule(System.Security.AccessControl.ObjectAccessRule)">
|
||||||
|
<summary>Removes access rules that contain the same security identifier and access mask as the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object.</summary>
|
||||||
|
<param name="rule">The access rule to remove.</param>
|
||||||
|
<returns>
|
||||||
|
<see langword="true" /> if the access rule was successfully removed; otherwise, <see langword="false" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.RemoveAccessRuleAll(System.Security.AccessControl.ObjectAccessRule)">
|
||||||
|
<summary>Removes all access rules that have the same security identifier as the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object.</summary>
|
||||||
|
<param name="rule">The access rule to remove.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.ObjectAccessRule)">
|
||||||
|
<summary>Removes all access rules that exactly match the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object.</summary>
|
||||||
|
<param name="rule">The access rule to remove.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.RemoveAuditRule(System.Security.AccessControl.ObjectAuditRule)">
|
||||||
|
<summary>Removes audit rules that contain the same security identifier and access mask as the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
|
||||||
|
<param name="rule">The audit rule to remove.</param>
|
||||||
|
<returns>
|
||||||
|
<see langword="true" /> if the audit rule was successfully removed; otherwise, <see langword="false" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.RemoveAuditRuleAll(System.Security.AccessControl.ObjectAuditRule)">
|
||||||
|
<summary>Removes all audit rules that have the same security identifier as the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object.</summary>
|
||||||
|
<param name="rule">The audit rule to remove.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.ObjectAuditRule)">
|
||||||
|
<summary>Removes all audit rules that exactly match the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object.</summary>
|
||||||
|
<param name="rule">The audit rule to remove.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.ResetAccessRule(System.Security.AccessControl.ObjectAccessRule)">
|
||||||
|
<summary>Removes all access rules in the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object and then adds the specified access rule.</summary>
|
||||||
|
<param name="rule">The access rule to reset.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.SetAccessRule(System.Security.AccessControl.ObjectAccessRule)">
|
||||||
|
<summary>Removes all access rules that contain the same security identifier and qualifier as the specified access rule in the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object and then adds the specified access rule.</summary>
|
||||||
|
<param name="rule">The access rule to set.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectoryObjectSecurity.SetAuditRule(System.Security.AccessControl.ObjectAuditRule)">
|
||||||
|
<summary>Removes all audit rules that contain the same security identifier and qualifier as the specified audit rule in the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> object and then adds the specified audit rule.</summary>
|
||||||
|
<param name="rule">The audit rule to set.</param>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.Security.AccessControl.DirectorySecurity">
|
||||||
|
<summary>Represents the access control and audit security for a directory. This class cannot be inherited.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectorySecurity.#ctor">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.DirectorySecurity" /> class.</summary>
|
||||||
|
<exception cref="T:System.PlatformNotSupportedException">The current operating system is not Microsoft Windows 2000 or later.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.DirectorySecurity.#ctor(System.String,System.Security.AccessControl.AccessControlSections)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.DirectorySecurity" /> class from a specified directory using the specified values of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration.</summary>
|
||||||
|
<param name="name">The location of a directory to create a <see cref="T:System.Security.AccessControl.DirectorySecurity" /> object from.</param>
|
||||||
|
<param name="includeSections">One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> values that specifies the type of access control list (ACL) information to retrieve.</param>
|
||||||
|
<exception cref="T:System.ArgumentException">The <paramref name="name" /> parameter is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="name" /> parameter is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, (for example, it is on an unmapped drive).</exception>
|
||||||
|
<exception cref="T:System.IO.FileNotFoundException">The file specified in the <paramref name="name" /> parameter was not found.</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">An I/O error occurred while opening the directory.</exception>
|
||||||
|
<exception cref="T:System.NotSupportedException">The <paramref name="name" /> parameter is in an invalid format.</exception>
|
||||||
|
<exception cref="T:System.PlatformNotSupportedException">The current operating system is not Microsoft Windows 2000 or later.</exception>
|
||||||
|
<exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
|
||||||
|
<exception cref="T:System.Security.AccessControl.PrivilegeNotHeldException">The current system account does not have administrative privileges.</exception>
|
||||||
|
<exception cref="T:System.SystemException">The directory could not be found.</exception>
|
||||||
|
<exception cref="T:System.UnauthorizedAccessException">The <paramref name="name" /> parameter specified a directory that is read-only.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
This operation is not supported on the current platform.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The caller does not have the required permission.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.Security.AccessControl.FileSecurity">
|
||||||
|
<summary>Represents the access control and audit security for a file. This class cannot be inherited.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSecurity.#ctor">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSecurity" /> class.</summary>
|
||||||
|
<exception cref="T:System.PlatformNotSupportedException">The current operating system is not Microsoft Windows 2000 or later.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSecurity.#ctor(System.String,System.Security.AccessControl.AccessControlSections)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSecurity" /> class from a specified file using the specified values of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> enumeration.</summary>
|
||||||
|
<param name="fileName">The location of a file to create a <see cref="T:System.Security.AccessControl.FileSecurity" /> object from.</param>
|
||||||
|
<param name="includeSections">One of the <see cref="T:System.Security.AccessControl.AccessControlSections" /> values that specifies the type of access control list (ACL) information to retrieve.</param>
|
||||||
|
<exception cref="T:System.ArgumentException">The <paramref name="fileName" /> parameter is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
|
||||||
|
<exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, (for example, it is on an unmapped drive).</exception>
|
||||||
|
<exception cref="T:System.IO.FileNotFoundException">The file specified in the <paramref name="fileName" /> parameter was not found.</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
|
||||||
|
<exception cref="T:System.NotSupportedException">
|
||||||
|
<paramref name="path" /> is in an invalid format.</exception>
|
||||||
|
<exception cref="T:System.Runtime.InteropServices.SEHException">The <paramref name="fileName" /> parameter is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.PlatformNotSupportedException">The current operating system is not Microsoft Windows 2000 or later.</exception>
|
||||||
|
<exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
|
||||||
|
<exception cref="T:System.Security.AccessControl.PrivilegeNotHeldException">The current system account does not have administrative privileges.</exception>
|
||||||
|
<exception cref="T:System.SystemException">The file could not be found.</exception>
|
||||||
|
<exception cref="T:System.UnauthorizedAccessException">The <paramref name="fileName" /> parameter specified a file that is read-only.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
This operation is not supported on the current platform.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <paramref name="fileName" /> parameter specified a directory.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The caller does not have the required permission.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.Security.AccessControl.FileSystemAccessRule">
|
||||||
|
<summary>Represents an abstraction of an access control entry (ACE) that defines an access rule for a file or directory. This class cannot be inherited.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.AccessControlType)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> class using a reference to a user account, a value that specifies the type of operation associated with the access rule, and a value that specifies whether to allow or deny the operation.</summary>
|
||||||
|
<param name="identity">An <see cref="T:System.Security.Principal.IdentityReference" /> object that encapsulates a reference to a user account.</param>
|
||||||
|
<param name="fileSystemRights">One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the access rule.</param>
|
||||||
|
<param name="type">One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values that specifies whether to allow or deny the operation.</param>
|
||||||
|
<exception cref="T:System.ArgumentException">The <paramref name="identity" /> parameter is not an <see cref="T:System.Security.Principal.IdentityReference" /> object.</exception>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="identity" /> parameter is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">An incorrect enumeration was passed to the <paramref name="type" /> parameter.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemAccessRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> class using a reference to a user account, a value that specifies the type of operation associated with the access rule, a value that determines how rights are inherited, a value that determines how rights are propagated, and a value that specifies whether to allow or deny the operation.</summary>
|
||||||
|
<param name="identity">An <see cref="T:System.Security.Principal.IdentityReference" /> object that encapsulates a reference to a user account.</param>
|
||||||
|
<param name="fileSystemRights">One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the access rule.</param>
|
||||||
|
<param name="inheritanceFlags">One of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values that specifies how access masks are propagated to child objects.</param>
|
||||||
|
<param name="propagationFlags">One of the <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that specifies how Access Control Entries (ACEs) are propagated to child objects.</param>
|
||||||
|
<param name="type">One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values that specifies whether to allow or deny the operation.</param>
|
||||||
|
<exception cref="T:System.ArgumentException">The <paramref name="identity" /> parameter is not an <see cref="T:System.Security.Principal.IdentityReference" /> object.</exception>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="identity" /> parameter is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">An incorrect enumeration was passed to the <paramref name="type" /> parameter.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
An incorrect enumeration was passed to the <paramref name="inheritanceFlags" /> parameter.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
An incorrect enumeration was passed to the <paramref name="propagationFlags" /> parameter.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemAccessRule.#ctor(System.String,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.AccessControlType)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> class using the name of a user account, a value that specifies the type of operation associated with the access rule, and a value that describes whether to allow or deny the operation.</summary>
|
||||||
|
<param name="identity">The name of a user account.</param>
|
||||||
|
<param name="fileSystemRights">One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the access rule.</param>
|
||||||
|
<param name="type">One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values that specifies whether to allow or deny the operation.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="identity" /> parameter is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">An incorrect enumeration was passed to the <paramref name="type" /> parameter.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemAccessRule.#ctor(System.String,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> class using the name of a user account, a value that specifies the type of operation associated with the access rule, a value that determines how rights are inherited, a value that determines how rights are propagated, and a value that specifies whether to allow or deny the operation.</summary>
|
||||||
|
<param name="identity">The name of a user account.</param>
|
||||||
|
<param name="fileSystemRights">One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the access rule.</param>
|
||||||
|
<param name="inheritanceFlags">One of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values that specifies how access masks are propagated to child objects.</param>
|
||||||
|
<param name="propagationFlags">One of the <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that specifies how Access Control Entries (ACEs) are propagated to child objects.</param>
|
||||||
|
<param name="type">One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values that specifies whether to allow or deny the operation.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="identity" /> parameter is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">An incorrect enumeration was passed to the <paramref name="type" /> parameter.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
An incorrect enumeration was passed to the <paramref name="inheritanceFlags" /> parameter.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
An incorrect enumeration was passed to the <paramref name="propagationFlags" /> parameter.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.Security.AccessControl.FileSystemAccessRule.FileSystemRights">
|
||||||
|
<summary>Gets the <see cref="T:System.Security.AccessControl.FileSystemRights" /> flags associated with the current <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object.</summary>
|
||||||
|
<returns>The <see cref="T:System.Security.AccessControl.FileSystemRights" /> flags associated with the current <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.Security.AccessControl.FileSystemAuditRule">
|
||||||
|
<summary>Represents an abstraction of an access control entry (ACE) that defines an audit rule for a file or directory. This class cannot be inherited.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.AuditFlags)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> class using a reference to a user account, a value that specifies the type of operation associated with the audit rule, and a value that specifies when to perform auditing.</summary>
|
||||||
|
<param name="identity">An <see cref="T:System.Security.Principal.IdentityReference" /> object that encapsulates a reference to a user account.</param>
|
||||||
|
<param name="fileSystemRights">One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the audit rule.</param>
|
||||||
|
<param name="flags">One of the <see cref="T:System.Security.AccessControl.AuditFlags" /> values that specifies when to perform auditing.</param>
|
||||||
|
<exception cref="T:System.ArgumentException">The <paramref name="identity" /> parameter is not an <see cref="T:System.Security.Principal.IdentityReference" /> object.</exception>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="identity" /> parameter is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">An incorrect enumeration was passed to the <paramref name="flags" /> parameter.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="F:System.Security.AccessControl.AuditFlags.None" /> value was passed to the <paramref name="flags" /> parameter.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemAuditRule.#ctor(System.Security.Principal.IdentityReference,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> class using the name of a reference to a user account, a value that specifies the type of operation associated with the audit rule, a value that determines how rights are inherited, a value that determines how rights are propagated, and a value that specifies when to perform auditing.</summary>
|
||||||
|
<param name="identity">An <see cref="T:System.Security.Principal.IdentityReference" /> object that encapsulates a reference to a user account.</param>
|
||||||
|
<param name="fileSystemRights">One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the audit rule.</param>
|
||||||
|
<param name="inheritanceFlags">One of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values that specifies how access masks are propagated to child objects.</param>
|
||||||
|
<param name="propagationFlags">One of the <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that specifies how Access Control Entries (ACEs) are propagated to child objects.</param>
|
||||||
|
<param name="flags">One of the <see cref="T:System.Security.AccessControl.AuditFlags" /> values that specifies when to perform auditing.</param>
|
||||||
|
<exception cref="T:System.ArgumentException">The <paramref name="identity" /> parameter is not an <see cref="T:System.Security.Principal.IdentityReference" /> object.</exception>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="identity" /> parameter is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">An incorrect enumeration was passed to the <paramref name="flags" /> parameter.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="F:System.Security.AccessControl.AuditFlags.None" /> value was passed to the <paramref name="flags" /> parameter.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemAuditRule.#ctor(System.String,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.AuditFlags)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> class using a user account name, a value that specifies the type of operation associated with the audit rule, and a value that specifies when to perform auditing.</summary>
|
||||||
|
<param name="identity">The name of a user account.</param>
|
||||||
|
<param name="fileSystemRights">One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the audit rule.</param>
|
||||||
|
<param name="flags">One of the <see cref="T:System.Security.AccessControl.AuditFlags" /> values that specifies when to perform auditing.</param>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">An incorrect enumeration was passed to the <paramref name="flags" /> parameter.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="F:System.Security.AccessControl.AuditFlags.None" /> value was passed to the <paramref name="flags" /> parameter.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemAuditRule.#ctor(System.String,System.Security.AccessControl.FileSystemRights,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> class using the name of a user account, a value that specifies the type of operation associated with the audit rule, a value that determines how rights are inherited, a value that determines how rights are propagated, and a value that specifies when to perform auditing.</summary>
|
||||||
|
<param name="identity">The name of a user account.</param>
|
||||||
|
<param name="fileSystemRights">One of the <see cref="T:System.Security.AccessControl.FileSystemRights" /> values that specifies the type of operation associated with the audit rule.</param>
|
||||||
|
<param name="inheritanceFlags">One of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values that specifies how access masks are propagated to child objects.</param>
|
||||||
|
<param name="propagationFlags">One of the <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that specifies how Access Control Entries (ACEs) are propagated to child objects.</param>
|
||||||
|
<param name="flags">One of the <see cref="T:System.Security.AccessControl.AuditFlags" /> values that specifies when to perform auditing.</param>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.Security.AccessControl.FileSystemAuditRule.FileSystemRights">
|
||||||
|
<summary>Gets the <see cref="T:System.Security.AccessControl.FileSystemRights" /> flags associated with the current <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object.</summary>
|
||||||
|
<returns>The <see cref="T:System.Security.AccessControl.FileSystemRights" /> flags associated with the current <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.Security.AccessControl.FileSystemRights">
|
||||||
|
<summary>Defines the access rights to use when creating access and audit rules.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.AppendData">
|
||||||
|
<summary>Specifies the right to append data to the end of a file.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.ChangePermissions">
|
||||||
|
<summary>Specifies the right to change the security and audit rules associated with a file or folder.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.CreateDirectories">
|
||||||
|
<summary>Specifies the right to create a folder This right requires the <c>Synchronize</c> value.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.CreateFiles">
|
||||||
|
<summary>Specifies the right to create a file. This right requires the <c>Synchronize</c> value.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.Delete">
|
||||||
|
<summary>Specifies the right to delete a folder or file.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.DeleteSubdirectoriesAndFiles">
|
||||||
|
<summary>Specifies the right to delete a folder and any files contained within that folder.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.ExecuteFile">
|
||||||
|
<summary>Specifies the right to run an application file.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.FullControl">
|
||||||
|
<summary>Specifies the right to exert full control over a folder or file, and to modify access control and audit rules. This value represents the right to do anything with a file and is the combination of all rights in this enumeration.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.ListDirectory">
|
||||||
|
<summary>Specifies the right to read the contents of a directory.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.Modify">
|
||||||
|
<summary>Specifies the right to read, write, list folder contents, delete folders and files, and run application files. This right includes the <see cref="F:System.Security.AccessControl.FileSystemRights.ReadAndExecute" /> right, the <see cref="F:System.Security.AccessControl.FileSystemRights.Write" /> right, and the <see cref="F:System.Security.AccessControl.FileSystemRights.Delete" /> right.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.Read">
|
||||||
|
<summary>Specifies the right to open and copy folders or files as read-only. This right includes the <see cref="F:System.Security.AccessControl.FileSystemRights.ReadData" /> right, <see cref="F:System.Security.AccessControl.FileSystemRights.ReadExtendedAttributes" /> right, <see cref="F:System.Security.AccessControl.FileSystemRights.ReadAttributes" /> right, and <see cref="F:System.Security.AccessControl.FileSystemRights.ReadPermissions" /> right.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.ReadAndExecute">
|
||||||
|
<summary>Specifies the right to open and copy folders or files as read-only, and to run application files. This right includes the <see cref="F:System.Security.AccessControl.FileSystemRights.Read" /> right and the <see cref="F:System.Security.AccessControl.FileSystemRights.ExecuteFile" /> right.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.ReadAttributes">
|
||||||
|
<summary>Specifies the right to open and copy file system attributes from a folder or file. For example, this value specifies the right to view the file creation or modified date. This does not include the right to read data, extended file system attributes, or access and audit rules.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.ReadData">
|
||||||
|
<summary>Specifies the right to open and copy a file or folder. This does not include the right to read file system attributes, extended file system attributes, or access and audit rules.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.ReadExtendedAttributes">
|
||||||
|
<summary>Specifies the right to open and copy extended file system attributes from a folder or file. For example, this value specifies the right to view author and content information. This does not include the right to read data, file system attributes, or access and audit rules.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.ReadPermissions">
|
||||||
|
<summary>Specifies the right to open and copy access and audit rules from a folder or file. This does not include the right to read data, file system attributes, and extended file system attributes.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.Synchronize">
|
||||||
|
<summary>Specifies whether the application can wait for a file handle to synchronize with the completion of an I/O operation. This value is automatically set when allowing access and automatically excluded when denying access.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.TakeOwnership">
|
||||||
|
<summary>Specifies the right to change the owner of a folder or file. Note that owners of a resource have full access to that resource.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.Traverse">
|
||||||
|
<summary>Specifies the right to list the contents of a folder and to run applications contained within that folder.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.Write">
|
||||||
|
<summary>Specifies the right to create folders and files, and to add or remove data from files. This right includes the <see cref="F:System.Security.AccessControl.FileSystemRights.WriteData" /> right, <see cref="F:System.Security.AccessControl.FileSystemRights.AppendData" /> right, <see cref="F:System.Security.AccessControl.FileSystemRights.WriteExtendedAttributes" /> right, and <see cref="F:System.Security.AccessControl.FileSystemRights.WriteAttributes" /> right.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.WriteAttributes">
|
||||||
|
<summary>Specifies the right to open and write file system attributes to a folder or file. This does not include the ability to write data, extended attributes, or access and audit rules.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.WriteData">
|
||||||
|
<summary>Specifies the right to open and write to a file or folder. This does not include the right to open and write file system attributes, extended file system attributes, or access and audit rules.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.Security.AccessControl.FileSystemRights.WriteExtendedAttributes">
|
||||||
|
<summary>Specifies the right to open and write extended file system attributes to a folder or file. This does not include the ability to write data, attributes, or access and audit rules.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.Security.AccessControl.FileSystemSecurity">
|
||||||
|
<summary>Represents the access control and audit security for a file or directory.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemSecurity.AccessRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> class that represents a new access control rule for the specified user, with the specified access rights, access control, and flags.</summary>
|
||||||
|
<param name="identityReference">An <see cref="T:System.Security.Principal.IdentityReference" /> object that represents a user account.</param>
|
||||||
|
<param name="accessMask">An integer that specifies an access type.</param>
|
||||||
|
<param name="isInherited">
|
||||||
|
<see langword="true" /> if the access rule is inherited; otherwise, <see langword="false" />.</param>
|
||||||
|
<param name="inheritanceFlags">One of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values that specifies how to propagate access masks to child objects.</param>
|
||||||
|
<param name="propagationFlags">One of the <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that specifies how to propagate Access Control Entries (ACEs) to child objects.</param>
|
||||||
|
<param name="type">One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values that specifies whether access is allowed or denied.</param>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="accessMask" />, <paramref name="inheritanceFlags" />, <paramref name="propagationFlags" />, or <paramref name="type" /> parameters specify an invalid value.</exception>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="identityReference" /> parameter is <see langword="null" />.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <paramref name="accessMask" /> parameter is zero.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">The <paramref name="identityReference" /> parameter is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" />, nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />.</exception>
|
||||||
|
<returns>A new <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object that represents a new access control rule for the specified user, with the specified access rights, access control, and flags.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemSecurity.AddAccessRule(System.Security.AccessControl.FileSystemAccessRule)">
|
||||||
|
<summary>Adds the specified access control list (ACL) permission to the current file or directory.</summary>
|
||||||
|
<param name="rule">A <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object that represents an access control list (ACL) permission to add to a file or directory.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemSecurity.AddAuditRule(System.Security.AccessControl.FileSystemAuditRule)">
|
||||||
|
<summary>Adds the specified audit rule to the current file or directory.</summary>
|
||||||
|
<param name="rule">A <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object that represents an audit rule to add to a file or directory.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemSecurity.AuditRuleFactory(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> class representing the specified audit rule for the specified user.</summary>
|
||||||
|
<param name="identityReference">An <see cref="T:System.Security.Principal.IdentityReference" /> object that represents a user account.</param>
|
||||||
|
<param name="accessMask">An integer that specifies an access type.</param>
|
||||||
|
<param name="isInherited">
|
||||||
|
<see langword="true" /> if the access rule is inherited; otherwise, <see langword="false" />.</param>
|
||||||
|
<param name="inheritanceFlags">One of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> values that specifies how to propagate access masks to child objects.</param>
|
||||||
|
<param name="propagationFlags">One of the <see cref="T:System.Security.AccessControl.PropagationFlags" /> values that specifies how to propagate Access Control Entries (ACEs) to child objects.</param>
|
||||||
|
<param name="flags">One of the <see cref="T:System.Security.AccessControl.AuditFlags" /> values that specifies the type of auditing to perform.</param>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="accessMask" />, <paramref name="inheritanceFlags" />, <paramref name="propagationFlags" />, or <paramref name="flags" /> properties specify an invalid value.</exception>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="identityReference" /> property is <see langword="null" />.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <paramref name="accessMask" /> property is zero.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">The <paramref name="identityReference" /> property is neither of type <see cref="T:System.Security.Principal.SecurityIdentifier" />, nor of a type such as <see cref="T:System.Security.Principal.NTAccount" /> that can be converted to type <see cref="T:System.Security.Principal.SecurityIdentifier" />.</exception>
|
||||||
|
<returns>A new <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object representing the specified audit rule for the specified user.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemSecurity.RemoveAccessRule(System.Security.AccessControl.FileSystemAccessRule)">
|
||||||
|
<summary>Removes all matching allow or deny access control list (ACL) permissions from the current file or directory.</summary>
|
||||||
|
<param name="rule">A <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object that represents an access control list (ACL) permission to remove from a file or directory.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
|
||||||
|
<returns>
|
||||||
|
<see langword="true" /> if the access rule was removed; otherwise, <see langword="false" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemSecurity.RemoveAccessRuleAll(System.Security.AccessControl.FileSystemAccessRule)">
|
||||||
|
<summary>Removes all access control list (ACL) permissions for the specified user from the current file or directory.</summary>
|
||||||
|
<param name="rule">A <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object that specifies a user whose access control list (ACL) permissions should be removed from a file or directory.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.FileSystemAccessRule)">
|
||||||
|
<summary>Removes a single matching allow or deny access control list (ACL) permission from the current file or directory.</summary>
|
||||||
|
<param name="rule">A <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object that specifies a user whose access control list (ACL) permissions should be removed from a file or directory.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemSecurity.RemoveAuditRule(System.Security.AccessControl.FileSystemAuditRule)">
|
||||||
|
<summary>Removes all matching allow or deny audit rules from the current file or directory.</summary>
|
||||||
|
<param name="rule">A <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object that represents an audit rule to remove from a file or directory.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
|
||||||
|
<returns>
|
||||||
|
<see langword="true" /> if the audit rule was removed; otherwise, <see langword="false" /></returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemSecurity.RemoveAuditRuleAll(System.Security.AccessControl.FileSystemAuditRule)">
|
||||||
|
<summary>Removes all audit rules for the specified user from the current file or directory.</summary>
|
||||||
|
<param name="rule">A <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object that specifies a user whose audit rules should be removed from a file or directory.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.FileSystemAuditRule)">
|
||||||
|
<summary>Removes a single matching allow or deny audit rule from the current file or directory.</summary>
|
||||||
|
<param name="rule">A <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object that represents an audit rule to remove from a file or directory.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemSecurity.ResetAccessRule(System.Security.AccessControl.FileSystemAccessRule)">
|
||||||
|
<summary>Adds the specified access control list (ACL) permission to the current file or directory and removes all matching ACL permissions.</summary>
|
||||||
|
<param name="rule">A <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object that represents an access control list (ACL) permission to add to a file or directory.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemSecurity.SetAccessRule(System.Security.AccessControl.FileSystemAccessRule)">
|
||||||
|
<summary>Sets the specified access control list (ACL) permission for the current file or directory.</summary>
|
||||||
|
<param name="rule">A <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> object that represents an access control list (ACL) permission to set for a file or directory.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.Security.AccessControl.FileSystemSecurity.SetAuditRule(System.Security.AccessControl.FileSystemAuditRule)">
|
||||||
|
<summary>Sets the specified audit rule for the current file or directory.</summary>
|
||||||
|
<param name="rule">A <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> object that represents an audit rule to set for a file or directory.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">The <paramref name="rule" /> parameter is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.Security.AccessControl.FileSystemSecurity.AccessRightType">
|
||||||
|
<summary>Gets the enumeration that the <see cref="T:System.Security.AccessControl.FileSystemSecurity" /> class uses to represent access rights.</summary>
|
||||||
|
<returns>A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.FileSystemRights" /> enumeration.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.Security.AccessControl.FileSystemSecurity.AccessRuleType">
|
||||||
|
<summary>Gets the enumeration that the <see cref="T:System.Security.AccessControl.FileSystemSecurity" /> class uses to represent access rules.</summary>
|
||||||
|
<returns>A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.FileSystemAccessRule" /> class.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.Security.AccessControl.FileSystemSecurity.AuditRuleType">
|
||||||
|
<summary>Gets the type that the <see cref="T:System.Security.AccessControl.FileSystemSecurity" /> class uses to represent audit rules.</summary>
|
||||||
|
<returns>A <see cref="T:System.Type" /> object representing the <see cref="T:System.Security.AccessControl.FileSystemAuditRule" /> class.</returns>
|
||||||
|
</member>
|
||||||
|
</members>
|
||||||
|
</doc>
|
Binary file not shown.
@ -0,0 +1,998 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<doc>
|
||||||
|
<assembly>
|
||||||
|
<name>System.IO.Packaging</name>
|
||||||
|
</assembly>
|
||||||
|
<members>
|
||||||
|
<member name="T:System.IO.FileFormatException">
|
||||||
|
<summary>The exception that is thrown when an input file or a data stream that is supposed to conform to a certain file format specification is malformed.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileFormatException.#ctor">
|
||||||
|
<summary>Creates a new instance of the <see cref="T:System.IO.FileFormatException" /> class.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileFormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
||||||
|
<summary>Creates a new instance of the <see cref="T:System.IO.FileFormatException" /> class and initializes it with serialized data. This constructor is called during deserialization to reconstitute the exception object transmitted over a stream.</summary>
|
||||||
|
<param name="info">The object that holds the serialized object data.</param>
|
||||||
|
<param name="context">The contextual information about the source or destination.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileFormatException.#ctor(System.String)">
|
||||||
|
<summary>Creates a new instance of the <see cref="T:System.IO.FileFormatException" /> class with a specified error message.</summary>
|
||||||
|
<param name="message">A <see cref="T:System.String" /> value that represents the error message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileFormatException.#ctor(System.String,System.Exception)">
|
||||||
|
<summary>Creates a new instance of the <see cref="T:System.IO.FileFormatException" /> class with a specified error message and exception type.</summary>
|
||||||
|
<param name="message">A <see cref="T:System.String" /> value that represents the error message.</param>
|
||||||
|
<param name="innerException">The value of the <see cref="P:System.Exception.InnerException" /> property, which represents the cause of the current exception.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileFormatException.#ctor(System.Uri)">
|
||||||
|
<summary>Creates a new instance of the <see cref="T:System.IO.FileFormatException" /> class with a source URI value.</summary>
|
||||||
|
<param name="sourceUri">The <see cref="T:System.Uri" /> value of the file that caused this error.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileFormatException.#ctor(System.Uri,System.Exception)">
|
||||||
|
<summary>Creates a new instance of the <see cref="T:System.IO.FileFormatException" /> class with a source URI value and an exception type.</summary>
|
||||||
|
<param name="sourceUri">The <see cref="T:System.Uri" /> value of the file that caused this error.</param>
|
||||||
|
<param name="innerException">The value of the <see cref="P:System.Exception.InnerException" /> property, which represents the cause of the current exception.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileFormatException.#ctor(System.Uri,System.String)">
|
||||||
|
<summary>Creates a new instance of the <see cref="T:System.IO.FileFormatException" /> class with a source URI value and a specified error message.</summary>
|
||||||
|
<param name="sourceUri">The <see cref="T:System.Uri" /> value of the file that caused this error.</param>
|
||||||
|
<param name="message">A <see cref="T:System.String" /> value that represents the error message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileFormatException.#ctor(System.Uri,System.String,System.Exception)">
|
||||||
|
<summary>Creates a new instance of the <see cref="T:System.IO.FileFormatException" /> class with a source URI value, a specified error message, and an exception type.</summary>
|
||||||
|
<param name="sourceUri">The <see cref="T:System.Uri" /> value of the file that caused this error.</param>
|
||||||
|
<param name="message">A <see cref="T:System.String" /> value that represents the error message.</param>
|
||||||
|
<param name="innerException">The value of the <see cref="P:System.Exception.InnerException" /> property, which represents the cause of the current exception.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.FileFormatException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
||||||
|
<summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the file name and additional exception information.</summary>
|
||||||
|
<param name="info">The object that holds the serialized object data.</param>
|
||||||
|
<param name="context">The contextual information about the source or destination.</param>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.FileFormatException.SourceUri">
|
||||||
|
<summary>Gets the name of a file that caused the <see cref="T:System.IO.FileFormatException" />.</summary>
|
||||||
|
<returns>A <see cref="T:System.Uri" /> that represents the name the file that caused the exception.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.IO.Packaging.CompressionOption">
|
||||||
|
<summary>Specifies the compression level for content that is stored in a <see cref="T:System.IO.Packaging.PackagePart" />.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.IO.Packaging.CompressionOption.Fast">
|
||||||
|
<summary>Compression is optimized for performance.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.IO.Packaging.CompressionOption.Maximum">
|
||||||
|
<summary>Compression is optimized for size.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.IO.Packaging.CompressionOption.Normal">
|
||||||
|
<summary>Compression is optimized for a balance between size and performance.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.IO.Packaging.CompressionOption.NotCompressed">
|
||||||
|
<summary>Compression is turned off.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.IO.Packaging.CompressionOption.SuperFast">
|
||||||
|
<summary>Compression is optimized for high performance.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.IO.Packaging.EncryptionOption">
|
||||||
|
<summary>Specifies the encryption option for parts in a <see cref="T:System.IO.Packaging.Package" />.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.IO.Packaging.EncryptionOption.None">
|
||||||
|
<summary>No encryption.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.IO.Packaging.EncryptionOption.RightsManagement">
|
||||||
|
<summary>Encryption supported through rights management.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.IO.Packaging.Package">
|
||||||
|
<summary>Represents a container that can store multiple data objects.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.#ctor(System.IO.FileAccess)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.IO.Packaging.Package" /> class that uses a given <see cref="T:System.IO.FileAccess" />.</summary>
|
||||||
|
<param name="openFileAccess">The file IO permissions for the package.</param>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">The value for <paramref name="openFileAccess" /> is not valid.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.Close">
|
||||||
|
<summary>Saves and closes the package plus all underlying part streams.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.CreatePart(System.Uri,System.String)">
|
||||||
|
<summary>Creates a new uncompressed part with a given URI and content type.</summary>
|
||||||
|
<param name="partUri">The uniform resource identifier (URI) of the new part.</param>
|
||||||
|
<param name="contentType">The content type of the data stream.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="partUri" /> or <paramref name="contentType" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="partUri" /> is not a valid <see cref="T:System.IO.Packaging.PackagePart" /> URI.</exception>
|
||||||
|
<exception cref="T:System.InvalidOperationException">A part with the specified <paramref name="partUri" /> is already present in the package.</exception>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is read-only (a new part cannot be added).</exception>
|
||||||
|
<returns>The new created part.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.CreatePart(System.Uri,System.String,System.IO.Packaging.CompressionOption)">
|
||||||
|
<summary>Creates a new part with a given URI, content type, and compression option.</summary>
|
||||||
|
<param name="partUri">The URI of the new part.</param>
|
||||||
|
<param name="contentType">The content type of the data stream.</param>
|
||||||
|
<param name="compressionOption">The compression option for the data stream, <see cref="F:System.IO.Packaging.CompressionOption.NotCompressed" /> or <see cref="F:System.IO.Packaging.CompressionOption.Normal" /> compression.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="partUri" /> or <paramref name="contentType" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="partUri" /> is not a valid <see cref="T:System.IO.Packaging.PackagePart" /> uniform resource identifier (URI).</exception>
|
||||||
|
<exception cref="T:System.InvalidOperationException">A part with the specified <paramref name="partUri" /> is already present in the package.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="compressionOption" /> value is not valid.</exception>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is read-only (a new part cannot be added).</exception>
|
||||||
|
<returns>The new created part.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.CreatePartCore(System.Uri,System.String,System.IO.Packaging.CompressionOption)">
|
||||||
|
<summary>When overridden in a derived class, creates a new part in the package.</summary>
|
||||||
|
<param name="partUri">The uniform resource identifier (URI) for the part being created.</param>
|
||||||
|
<param name="contentType">The content type of the data stream.</param>
|
||||||
|
<param name="compressionOption">The compression option for the data stream.</param>
|
||||||
|
<returns>The created part.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String)">
|
||||||
|
<summary>Creates a package-level relationship to a part with a given URI, target mode, and relationship type.</summary>
|
||||||
|
<param name="targetUri">The uniform resource identifier (URI) of the target part.</param>
|
||||||
|
<param name="targetMode">Indicates if the target part is <see cref="F:System.IO.Packaging.TargetMode.Internal" /> or <see cref="F:System.IO.Packaging.TargetMode.External" /> to the package.</param>
|
||||||
|
<param name="relationshipType">A URI that uniquely defines the role of the relationship.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="targetUri" /> or <paramref name="relationshipType" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">The <paramref name="targetUri" /> part is a <see cref="T:System.IO.Packaging.PackageRelationship" />, or <paramref name="targetMode" /> is <see cref="F:System.IO.Packaging.TargetMode.Internal" /> and <paramref name="targetUri" /> is an absolute URI.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">The value for <paramref name="targetMode" /> is not valid.</exception>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is read-only.</exception>
|
||||||
|
<returns>The package-level relationship to the specified part.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String,System.String)">
|
||||||
|
<summary>Creates a package-level relationship to a part with a given URI, target mode, relationship type, and identifier (ID).</summary>
|
||||||
|
<param name="targetUri">The uniform resource identifier (URI) of the target part.</param>
|
||||||
|
<param name="targetMode">Indicates if the target part is <see cref="F:System.IO.Packaging.TargetMode.Internal" /> or <see cref="F:System.IO.Packaging.TargetMode.External" /> to the package.</param>
|
||||||
|
<param name="relationshipType">A URI that uniquely defines the role of the relationship.</param>
|
||||||
|
<param name="id">A unique XML identifier.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="targetUri" /> or <paramref name="relationshipType" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">The <paramref name="targetUri" /> part is a <see cref="T:System.IO.Packaging.PackageRelationship" />, or <paramref name="targetMode" /> is <see cref="F:System.IO.Packaging.TargetMode.Internal" /> and <paramref name="targetUri" /> is an absolute URI.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">The value for <paramref name="targetMode" /> is not valid.</exception>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is read-only.</exception>
|
||||||
|
<exception cref="T:System.Xml.XmlException">
|
||||||
|
<paramref name="id" /> is not a valid XML identifier; or a part with the specified <paramref name="id" /> already occurs in the package.</exception>
|
||||||
|
<returns>The package-level relationship to the specified part.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.DeletePart(System.Uri)">
|
||||||
|
<summary>Deletes a part with a given URI from the package.</summary>
|
||||||
|
<param name="partUri">The URI of the part to delete.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="partUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="partUri" /> is not a valid <see cref="T:System.IO.Packaging.PackagePart" /> URI.</exception>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is read-only.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.DeletePartCore(System.Uri)">
|
||||||
|
<summary>When overridden in a derived class, deletes a part with a given URI.</summary>
|
||||||
|
<param name="partUri">The <see cref="P:System.IO.Packaging.PackagePart.Uri" /> of the <see cref="T:System.IO.Packaging.PackagePart" /> to delete.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.DeleteRelationship(System.String)">
|
||||||
|
<summary>Deletes a package-level relationship.</summary>
|
||||||
|
<param name="id">The <see cref="P:System.IO.Packaging.PackageRelationship.Id" /> of the <see cref="T:System.IO.Packaging.PackageRelationship" /> to delete.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="id" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is read-only.</exception>
|
||||||
|
<exception cref="T:System.Xml.XmlException">
|
||||||
|
<paramref name="id" /> is not a valid XML identifier.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.Dispose(System.Boolean)">
|
||||||
|
<summary>Flushes and saves the content of all parts and relationships, closes the package, and releases all resources.</summary>
|
||||||
|
<param name="disposing">
|
||||||
|
<see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.Flush">
|
||||||
|
<summary>Saves the contents of all parts and relationships that are contained in the package.</summary>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is read-only and cannot be modified.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.FlushCore">
|
||||||
|
<summary>When overridden in a derived class, saves the content of all parts and relationships to the derived class store.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.GetPart(System.Uri)">
|
||||||
|
<summary>Returns the part with a given URI.</summary>
|
||||||
|
<param name="partUri">The uniform resource identifier (URI) of the part to return.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="partUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="partUri" /> is not a valid <see cref="T:System.IO.Packaging.PackagePart" /> uniform resource identifier (URI).</exception>
|
||||||
|
<exception cref="T:System.InvalidOperationException">A part with the specified <paramref name="partUri" /> is not in the package.</exception>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is write-only.</exception>
|
||||||
|
<returns>The part with the specified <paramref name="partUri" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.GetPartCore(System.Uri)">
|
||||||
|
<summary>When overridden in a derived class, returns the part addressed by a given URI.</summary>
|
||||||
|
<param name="partUri">The uniform resource identifier (URI) of the part to retrieve.</param>
|
||||||
|
<returns>The requested part; or <see langword="null" />, if a part with the specified <paramref name="partUri" /> is not in the package.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.GetParts">
|
||||||
|
<summary>Returns a collection of all the parts in the package.</summary>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is write-only.</exception>
|
||||||
|
<returns>A collection of all the <see cref="T:System.IO.Packaging.PackagePart" /> elements that are contained in the package.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.GetPartsCore">
|
||||||
|
<summary>When overridden in a derived class, returns an array of all the parts in the package.</summary>
|
||||||
|
<returns>An array of all the parts that are contained in the package.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.GetRelationship(System.String)">
|
||||||
|
<summary>Returns the package-level relationship with a given identifier.</summary>
|
||||||
|
<param name="id">The <see cref="P:System.IO.Packaging.PackageRelationship.Id" /> of the relationship to return.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="id" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.Xml.XmlException">
|
||||||
|
<paramref name="id" /> is not a valid XML identifier.</exception>
|
||||||
|
<exception cref="T:System.InvalidOperationException">A relationship with the specified <paramref name="id" /> is not in the package.</exception>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is write-only.</exception>
|
||||||
|
<returns>The package-level relationship with the specified <paramref name="id" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.GetRelationships">
|
||||||
|
<summary>Returns a collection of all the package-level relationships.</summary>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is write-only.</exception>
|
||||||
|
<returns>A collection of all the package-level relationships that are contained in the package.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.GetRelationshipsByType(System.String)">
|
||||||
|
<summary>Returns a collection of all the package-level relationships that match a given <see cref="P:System.IO.Packaging.PackageRelationship.RelationshipType" />.</summary>
|
||||||
|
<param name="relationshipType">The <see cref="P:System.IO.Packaging.PackageRelationship.RelationshipType" /> to match and return in the collection.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="relationshipType" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="relationshipType" /> is an empty string.</exception>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is write-only.</exception>
|
||||||
|
<returns>A collection of package-level relationships that match the specified <paramref name="relationshipType" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.Open(System.IO.Stream)">
|
||||||
|
<summary>Opens a package on a given IO stream.</summary>
|
||||||
|
<param name="stream">The IO stream on which to open the package.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="stream" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package to open requires read or read/write permission and the specified <paramref name="stream" /> is write-only; or, the package to open requires write or read/write permission and the specified <paramref name="stream" /> is read-only.</exception>
|
||||||
|
<returns>The opened package.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.Open(System.IO.Stream,System.IO.FileMode)">
|
||||||
|
<summary>Opens a package with a given IO stream and file mode.</summary>
|
||||||
|
<param name="stream">The IO stream on which to open the package.</param>
|
||||||
|
<param name="packageMode">The file mode in which to open the package.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="stream" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">
|
||||||
|
<paramref name="packageMode" /> value is not valid.</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package to open requires read or read/write permission and the specified <paramref name="stream" /> is write-only; or, the package to open requires write or read/write permission and the specified <paramref name="stream" /> is read-only.</exception>
|
||||||
|
<returns>The opened package.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.Open(System.IO.Stream,System.IO.FileMode,System.IO.FileAccess)">
|
||||||
|
<summary>Opens a package with a given IO stream, file mode, and file access setting.</summary>
|
||||||
|
<param name="stream">The IO stream on which to open the package.</param>
|
||||||
|
<param name="packageMode">The file mode in which to open the package.</param>
|
||||||
|
<param name="packageAccess">The file access in which to open the package.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="stream" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">The value for <paramref name="packageMode" /> or <paramref name="packageAccess" /> is not valid.</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package to open requires read or read/write permission and the specified <paramref name="stream" /> is write-only; or the package to open requires write or read/write permission and the specified <paramref name="stream" /> is read-only.</exception>
|
||||||
|
<returns>The opened package.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.Open(System.String)">
|
||||||
|
<summary>Opens a package at a given path and file name.</summary>
|
||||||
|
<param name="path">The path and file name of the package.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="path" /> is <see langword="null" />.</exception>
|
||||||
|
<returns>The opened package.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.Open(System.String,System.IO.FileMode)">
|
||||||
|
<summary>Opens a package at a given path using a given file mode.</summary>
|
||||||
|
<param name="path">The path and file name of the package.</param>
|
||||||
|
<param name="packageMode">The file mode in which to open the package.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="path" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">Value for <paramref name="packageMode" /> is not valid.</exception>
|
||||||
|
<returns>The opened package.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.Open(System.String,System.IO.FileMode,System.IO.FileAccess)">
|
||||||
|
<summary>Opens a package at a given path using a given file mode and file access setting.</summary>
|
||||||
|
<param name="path">The path and file name of the package.</param>
|
||||||
|
<param name="packageMode">The file mode in which to open the package.</param>
|
||||||
|
<param name="packageAccess">The file access in which to open the package.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="path" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">Value for <paramref name="packageMode" /> or <paramref name="packageAccess" /> is not valid.</exception>
|
||||||
|
<returns>The opened package.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)">
|
||||||
|
<summary>Opens a package at a given path using a given file mode, file access, and file share setting.</summary>
|
||||||
|
<param name="path">The path and file name of the package.</param>
|
||||||
|
<param name="packageMode">The file mode in which to open the package.</param>
|
||||||
|
<param name="packageAccess">The file access in which to open the package.</param>
|
||||||
|
<param name="packageShare">The file sharing mode in which to open the package.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="path" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">The value for <paramref name="packageMode" />, <paramref name="packageAccess" />, or <paramref name="packageShare" /> is not valid.</exception>
|
||||||
|
<returns>The opened package.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.PartExists(System.Uri)">
|
||||||
|
<summary>Indicates whether a part with a given URI is in the package.</summary>
|
||||||
|
<param name="partUri">The <see cref="T:System.Uri" /> of the part to check for.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="partUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="partUri" /> is not a valid <see cref="T:System.IO.Packaging.PackagePart" /> uniform resource identifier (URI).</exception>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is write-only (information cannot be read).</exception>
|
||||||
|
<returns>
|
||||||
|
<see langword="true" /> if a part with the specified <paramref name="partUri" /> is in the package; otherwise, <see langword="false" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.RelationshipExists(System.String)">
|
||||||
|
<summary>Indicates whether a package-level relationship with a given ID is contained in the package.</summary>
|
||||||
|
<param name="id">The <see cref="P:System.IO.Packaging.PackageRelationship.Id" /> of the relationship to check for.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="id" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.Xml.XmlException">
|
||||||
|
<paramref name="id" /> is not a valid XML identifier.</exception>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is write-only.</exception>
|
||||||
|
<returns>
|
||||||
|
<see langword="true" /> if a package-level relationship with the specified <paramref name="id" /> is in the package; otherwise, <see langword="false" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.Package.System#IDisposable#Dispose">
|
||||||
|
<summary>This member supports the Windows Presentation Foundation (WPF) infrastructure and is not intended for application use. Use the type-safe <see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> method instead.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.Package.FileOpenAccess">
|
||||||
|
<summary>Gets the file access setting for the package.</summary>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<returns>One of the <see cref="T:System.IO.FileAccess" /> values: <see cref="F:System.IO.FileAccess.Read" />, <see cref="F:System.IO.FileAccess.Write" />, or <see cref="F:System.IO.FileAccess.ReadWrite" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.Package.PackageProperties">
|
||||||
|
<summary>Gets the core properties of the package.</summary>
|
||||||
|
<exception cref="T:System.ObjectDisposedException">The package is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<returns>The core properties of the package.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.IO.Packaging.PackagePart">
|
||||||
|
<summary>Provides a base class for parts stored in a <see cref="T:System.IO.Packaging.Package" />. This class is abstract.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.#ctor(System.IO.Packaging.Package,System.Uri)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.IO.Packaging.PackagePart" /> class with a specified parent <see cref="P:System.IO.Packaging.PackagePart.Package" /> and part URI.</summary>
|
||||||
|
<param name="package">The parent <see cref="T:System.IO.Packaging.Package" /> of the part.</param>
|
||||||
|
<param name="partUri">The URI of the part, relative to the parent <see cref="T:System.IO.Packaging.Package" /> root.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="package" /> or <paramref name="partUri" /> is <see langword="null" />.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.#ctor(System.IO.Packaging.Package,System.Uri,System.String)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.IO.Packaging.PackagePart" /> class with a specified parent <see cref="P:System.IO.Packaging.PackagePart.Package" />, part URI, and MIME content type.</summary>
|
||||||
|
<param name="package">The parent <see cref="T:System.IO.Packaging.Package" /> of the part.</param>
|
||||||
|
<param name="partUri">The URI of the part, relative to the parent <see cref="T:System.IO.Packaging.Package" /> root.</param>
|
||||||
|
<param name="contentType">The MIME content type of the part data stream.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="package" /> or <paramref name="partUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="partUri" /> is not a valid <see cref="T:System.IO.Packaging.PackagePart" /> URI.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.#ctor(System.IO.Packaging.Package,System.Uri,System.String,System.IO.Packaging.CompressionOption)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.IO.Packaging.PackagePart" /> class with a specified parent <see cref="P:System.IO.Packaging.PackagePart.Package" />, part URI, MIME content type, and <see cref="T:System.IO.Packaging.CompressionOption" />.</summary>
|
||||||
|
<param name="package">The parent <see cref="T:System.IO.Packaging.Package" /> of the part.</param>
|
||||||
|
<param name="partUri">The URI of the part, relative to the parent <see cref="T:System.IO.Packaging.Package" /> root.</param>
|
||||||
|
<param name="contentType">The MIME content type of the part's data stream.</param>
|
||||||
|
<param name="compressionOption">The compression option of the part data stream.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="package" /> or <paramref name="partUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="partUri" /> is not a valid <see cref="T:System.IO.Packaging.PackagePart" /> URI.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="compressionOption" /> value is not valid.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String)">
|
||||||
|
<summary>Creates a part-level relationship between this <see cref="T:System.IO.Packaging.PackagePart" /> to a specified target <see cref="T:System.IO.Packaging.PackagePart" /> or external resource.</summary>
|
||||||
|
<param name="targetUri">The URI of the target part.</param>
|
||||||
|
<param name="targetMode">One of the enumeration values. For example, <see cref="F:System.IO.Packaging.TargetMode.Internal" /> if the target part is inside the <see cref="T:System.IO.Packaging.Package" />; or <see cref="F:System.IO.Packaging.TargetMode.External" /> if the target is a resource outside the <see cref="T:System.IO.Packaging.Package" />.</param>
|
||||||
|
<param name="relationshipType">The role of the relationship.</param>
|
||||||
|
<exception cref="T:System.InvalidOperationException">The part has been deleted.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackagePart.Package" /> is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="targetUri" /> or <paramref name="relationshipType" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="targetMode" /> parameter is not a valid <see cref="T:System.IO.Packaging.TargetMode" /> enumeration value.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">The part identified by the <paramref name="targetUri" /> is a relationship (the target of a relationship cannot be another relationship).
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
<paramref name="targetMode" /> is specified as <see cref="F:System.IO.Packaging.TargetMode.Internal" /> but <paramref name="targetUri" /> is an absolute external URI.</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is read-only (a new relationship cannot be added).</exception>
|
||||||
|
<returns>The part-level relationship between this <see cref="T:System.IO.Packaging.PackagePart" /> to the target <see cref="T:System.IO.Packaging.PackagePart" /> or external resource.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.CreateRelationship(System.Uri,System.IO.Packaging.TargetMode,System.String,System.String)">
|
||||||
|
<summary>Creates a part-level relationship between this <see cref="T:System.IO.Packaging.PackagePart" /> to a specified target <see cref="T:System.IO.Packaging.PackagePart" /> or external resource.</summary>
|
||||||
|
<param name="targetUri">The URI of the target part.</param>
|
||||||
|
<param name="targetMode">One of the enumeration values. For example, <see cref="F:System.IO.Packaging.TargetMode.Internal" /> if the target part is inside the <see cref="T:System.IO.Packaging.Package" />; or <see cref="F:System.IO.Packaging.TargetMode.External" /> if the target is a resource outside the <see cref="T:System.IO.Packaging.Package" />.</param>
|
||||||
|
<param name="relationshipType">The role of the relationship.</param>
|
||||||
|
<param name="id">A unique ID for the relationship.</param>
|
||||||
|
<exception cref="T:System.InvalidOperationException">The part has been deleted.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackagePart.Package" /> is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="targetUri" /> or <paramref name="relationshipType" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="targetMode" /> parameter is not a valid <see cref="T:System.IO.Packaging.TargetMode" /> enumeration value.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">The part identified by the <paramref name="targetUri" /> is a relationship (the target of a relationship cannot be another relationship).
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
<paramref name="targetMode" /> is specified as <see cref="F:System.IO.Packaging.TargetMode.Internal" /> but <paramref name="targetUri" /> is an absolute external URI.</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is read-only (a new relationship cannot be added).</exception>
|
||||||
|
<exception cref="T:System.Xml.XmlException">
|
||||||
|
<paramref name="id" /> is not a valid XML identifier.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
A part with the specified <paramref name="id" /> already exists.</exception>
|
||||||
|
<returns>The part-level relationship between this <see cref="T:System.IO.Packaging.PackagePart" /> to the target <see cref="T:System.IO.Packaging.PackagePart" /> or external resource.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.DeleteRelationship(System.String)">
|
||||||
|
<summary>Deletes a specified part-level <see cref="T:System.IO.Packaging.PackageRelationship" />.</summary>
|
||||||
|
<param name="id">The <see cref="P:System.IO.Packaging.PackageRelationship.Id" /> of the relationship to delete.</param>
|
||||||
|
<exception cref="T:System.InvalidOperationException">The part has been deleted.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackagePart.Package" /> is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="id" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is read-only (relationships cannot be deleted).</exception>
|
||||||
|
<exception cref="T:System.Xml.XmlException">
|
||||||
|
<paramref name="id" /> is not a valid XML identifier.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.GetContentTypeCore">
|
||||||
|
<summary>When overridden in a derived class, returns the MIME type of the part content.</summary>
|
||||||
|
<exception cref="T:System.NotSupportedException">The derived class does not provide an override implementation required for the <see cref="M:System.IO.Packaging.PackagePart.GetContentTypeCore" /> method.</exception>
|
||||||
|
<returns>The MIME type of the part content.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.GetRelationship(System.String)">
|
||||||
|
<summary>Returns the relationship that has a specified <see cref="P:System.IO.Packaging.PackageRelationship.Id" />.</summary>
|
||||||
|
<param name="id">The <see cref="P:System.IO.Packaging.PackageRelationship.Id" /> of the relationship to return.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="id" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.Xml.XmlException">
|
||||||
|
<paramref name="id" /> is not a valid XML identifier.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="relationshipType" /> is an empty string.</exception>
|
||||||
|
<exception cref="T:System.InvalidOperationException">The part has been deleted.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackagePart.Package" /> is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
A relationship with the specified <paramref name="id" /> does not exist in the package.</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is write-only (relationship information cannot be read).</exception>
|
||||||
|
<returns>The relationship that matches the specified <paramref name="id" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.GetRelationships">
|
||||||
|
<summary>Returns a collection of all the relationships that are owned by this part.</summary>
|
||||||
|
<exception cref="T:System.InvalidOperationException">The part has been deleted.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackagePart.Package" /> is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is write-only (relationship information cannot be read).</exception>
|
||||||
|
<returns>A collection of all the relationships that are owned by the part.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.GetRelationshipsByType(System.String)">
|
||||||
|
<summary>Returns a collection of the relationships that match a specified <see cref="P:System.IO.Packaging.PackageRelationship.RelationshipType" />.</summary>
|
||||||
|
<param name="relationshipType">The <see cref="P:System.IO.Packaging.PackageRelationship.RelationshipType" /> of the relationships to locate and return in the collection.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="relationshipType" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="relationshipType" /> is an empty string.</exception>
|
||||||
|
<exception cref="T:System.InvalidOperationException">The part has been deleted.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackagePart.Package" /> is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is write-only (relationship information cannot be read).</exception>
|
||||||
|
<returns>A collection of the relationships that match the specified <paramref name="relationshipType" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.GetStream">
|
||||||
|
<summary>Returns the part content data stream.</summary>
|
||||||
|
<exception cref="T:System.InvalidOperationException">The part has been deleted.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackagePart.Package" /> is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The stream object returned by the <see cref="M:System.IO.Packaging.PackagePart.GetStreamCore(System.IO.FileMode,System.IO.FileAccess)" /> method of the derived subclass is <see langword="null" />.</exception>
|
||||||
|
<returns>The content data stream for the part.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.GetStream(System.IO.FileMode)">
|
||||||
|
<summary>Returns the content stream opened in a specified I/O <see cref="T:System.IO.FileMode" />.</summary>
|
||||||
|
<param name="mode">The I/O mode in which to open the content stream.</param>
|
||||||
|
<exception cref="T:System.InvalidOperationException">The part has been deleted.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackagePart.Package" /> is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="mode" /> parameter is not a valid <see cref="T:System.IO.FileMode" /> enumeration value.</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The <paramref name="mode" /> parameter is not compatible with the package and part stream.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The stream object returned by the <see cref="M:System.IO.Packaging.PackagePart.GetStreamCore(System.IO.FileMode,System.IO.FileAccess)" /> method of the derived subclass is <see langword="null" />.</exception>
|
||||||
|
<returns>The content stream of the part.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.GetStream(System.IO.FileMode,System.IO.FileAccess)">
|
||||||
|
<summary>Returns the part content stream opened with a specified <see cref="T:System.IO.FileMode" /> and <see cref="T:System.IO.FileAccess" />.</summary>
|
||||||
|
<param name="mode">The I/O mode in which to open the content stream.</param>
|
||||||
|
<param name="access">The access permissions to use in opening the content stream.</param>
|
||||||
|
<exception cref="T:System.InvalidOperationException">The part has been deleted.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackagePart.Package" /> is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="mode" /> parameter is not a valid <see cref="T:System.IO.FileMode" /> enumeration value.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <paramref name="access" /> parameter is not a valid <see cref="T:System.IO.FileAccess" /> enumeration value.</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">
|
||||||
|
<paramref name="mode" /> or <paramref name="access" /> is not compatible with the package and part stream.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <paramref name="access" /> parameter is specified as <see cref="F:System.IO.FileAccess.Read" /> but the <paramref name="mode" /> parameter requires write access. (<see cref="T:System.IO.FileMode" /> values of <see cref="F:System.IO.FileMode.Create" />, <see cref="F:System.IO.FileMode.CreateNew" />, <see cref="F:System.IO.FileMode.Truncate" />, and <see cref="F:System.IO.FileMode.Append" /> require <see cref="F:System.IO.FileAccess.Write" /> or <see cref="F:System.IO.FileAccess.ReadWrite" /> access.)
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The stream object returned by the <see cref="M:System.IO.Packaging.PackagePart.GetStreamCore(System.IO.FileMode,System.IO.FileAccess)" /> method of the derived subclass is <see langword="null" />.</exception>
|
||||||
|
<returns>The content stream for the part.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.GetStreamCore(System.IO.FileMode,System.IO.FileAccess)">
|
||||||
|
<summary>When overridden in a derived class, returns the part content stream opened with a specified <see cref="T:System.IO.FileMode" /> and <see cref="T:System.IO.FileAccess" />.</summary>
|
||||||
|
<param name="mode">The I/O mode in which to open the content stream.</param>
|
||||||
|
<param name="access">The access permissions to use in opening the content stream.</param>
|
||||||
|
<returns>The content data stream of the part.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePart.RelationshipExists(System.String)">
|
||||||
|
<summary>Returns a value that indicates whether this part owns a relationship with a specified <see cref="P:System.IO.Packaging.PackageRelationship.Id" />.</summary>
|
||||||
|
<param name="id">The <see cref="P:System.IO.Packaging.PackageRelationship.Id" /> of the relationship to check for.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="id" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.Xml.XmlException">
|
||||||
|
<paramref name="id" /> is not a valid XML identifier.</exception>
|
||||||
|
<exception cref="T:System.InvalidOperationException">The part has been deleted.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackagePart.Package" /> is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<exception cref="T:System.IO.IOException">The package is write-only (relationship information cannot be read).</exception>
|
||||||
|
<returns>
|
||||||
|
<see langword="true" /> if this part owns a relationship with the specified <paramref name="id" />; otherwise, <see langword="false" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackagePart.CompressionOption">
|
||||||
|
<summary>Gets the compression option of the part content stream.</summary>
|
||||||
|
<exception cref="T:System.InvalidOperationException">The part has been deleted.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackagePart.Package" /> is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<returns>The compression option of the part content stream.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackagePart.ContentType">
|
||||||
|
<summary>Gets the MIME type of the content stream.</summary>
|
||||||
|
<exception cref="T:System.InvalidOperationException">The part has been deleted.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackagePart.Package" /> is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The string returned by the derived class <see cref="M:System.IO.Packaging.PackagePart.GetContentTypeCore" /> method is empty.</exception>
|
||||||
|
<returns>The MIME type of the content data stream for the part.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackagePart.Package">
|
||||||
|
<summary>Gets the parent <see cref="T:System.IO.Packaging.Package" /> of the part.</summary>
|
||||||
|
<exception cref="T:System.InvalidOperationException">The part has been deleted.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackagePart.Package" /> is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<returns>The parent package of the part.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackagePart.Uri">
|
||||||
|
<summary>Gets the URI of the part.</summary>
|
||||||
|
<exception cref="T:System.InvalidOperationException">The part has been deleted.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackagePart.Package" /> is not open (<see cref="M:System.IO.Packaging.Package.Dispose(System.Boolean)" /> or <see cref="M:System.IO.Packaging.Package.Close" /> has been called).</exception>
|
||||||
|
<returns>The URI of the part relative to the package root.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.IO.Packaging.PackagePartCollection">
|
||||||
|
<summary>Represents a collection of <see cref="T:System.IO.Packaging.PackagePart" /> objects.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePartCollection.GetEnumerator">
|
||||||
|
<summary>Returns an enumerator for iterating through the parts in the collection.</summary>
|
||||||
|
<returns>An enumerator for iterating through the <see cref="T:System.IO.Packaging.PackagePart" /> elements in the collection.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePartCollection.System#Collections#Generic#IEnumerable{System#IO#Packaging#PackagePart}#GetEnumerator">
|
||||||
|
<summary>Returns an enumerator that iterates through the collection.</summary>
|
||||||
|
<returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> object that can be used to iterate through the collection.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackagePartCollection.System#Collections#IEnumerable#GetEnumerator">
|
||||||
|
<summary>For a description of this member, see <see cref="M:System.Collections.IEnumerable.GetEnumerator" />.</summary>
|
||||||
|
<returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.IO.Packaging.PackageProperties">
|
||||||
|
<summary>Represents the core properties of a <see cref="T:System.IO.Packaging.Package" />.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackageProperties.#ctor">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.IO.Packaging.PackageProperties" /> class.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackageProperties.Dispose">
|
||||||
|
<summary>Releases all resources used by the <see cref="T:System.IO.Packaging.PackageProperties" /> instance.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackageProperties.Dispose(System.Boolean)">
|
||||||
|
<summary>Releases the unmanaged resources used by the <see cref="T:System.IO.Packaging.PackageProperties" /> instance and optionally releases the managed resources.</summary>
|
||||||
|
<param name="disposing">
|
||||||
|
<see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.Category">
|
||||||
|
<summary>When overridden in a derived class, gets or sets the category of the <see cref="T:System.IO.Packaging.Package" />.</summary>
|
||||||
|
<returns>The category of the content that is contained in the <see cref="T:System.IO.Packaging.Package" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.ContentStatus">
|
||||||
|
<summary>When overridden in a derived class, gets or sets a value that represents the status of the <see cref="T:System.IO.Packaging.Package" />.</summary>
|
||||||
|
<returns>The status of the <see cref="T:System.IO.Packaging.Package" /> content.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.ContentType">
|
||||||
|
<summary>When overridden in a derived class, gets or sets a value that represents the type of content that is contained in the <see cref="T:System.IO.Packaging.Package" />.</summary>
|
||||||
|
<returns>The type of content that is contained in the <see cref="T:System.IO.Packaging.Package" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.Created">
|
||||||
|
<summary>When overridden in a derived class, gets or sets the date and time the <see cref="T:System.IO.Packaging.Package" /> was created.</summary>
|
||||||
|
<returns>The date and time the <see cref="T:System.IO.Packaging.Package" /> was initially created.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.Creator">
|
||||||
|
<summary>When overridden in a derived class, gets or sets a value that identifies the individual or entity that created the <see cref="T:System.IO.Packaging.Package" /> and its content.</summary>
|
||||||
|
<returns>The individual or entity that created the <see cref="T:System.IO.Packaging.Package" /> and its content.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.Description">
|
||||||
|
<summary>When overridden in a derived class, gets or sets a description of the content contained in the <see cref="T:System.IO.Packaging.Package" />.</summary>
|
||||||
|
<returns>A description of the content contained in the <see cref="T:System.IO.Packaging.Package" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.Identifier">
|
||||||
|
<summary>When overridden in a derived class, gets or sets a value that unambiguously identifies the <see cref="T:System.IO.Packaging.Package" /> and its content.</summary>
|
||||||
|
<returns>A value that unambiguously identifies the <see cref="T:System.IO.Packaging.Package" /> and its content.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.Keywords">
|
||||||
|
<summary>When overridden in a derived class, gets or sets a value that define a delimited set of keywords to support searching and indexing the <see cref="T:System.IO.Packaging.Package" /> and its content.</summary>
|
||||||
|
<returns>A delimited set of keywords to support searching and indexing the <see cref="T:System.IO.Packaging.Package" /> and content.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.Language">
|
||||||
|
<summary>When overridden in a derived class, gets or sets a value that identifies the language of the <see cref="T:System.IO.Packaging.Package" /> content.</summary>
|
||||||
|
<returns>A value that identifies the <see cref="T:System.IO.Packaging.Package" /> content language.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.LastModifiedBy">
|
||||||
|
<summary>When overridden in a derived class, gets or sets a value that identifies the user who last modified the <see cref="T:System.IO.Packaging.Package" /> content.</summary>
|
||||||
|
<returns>The user who last modified the <see cref="T:System.IO.Packaging.Package" /> content.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.LastPrinted">
|
||||||
|
<summary>When overridden in a derived class, gets or sets the date and time the <see cref="T:System.IO.Packaging.Package" /> content was last printed.</summary>
|
||||||
|
<returns>The date and time the <see cref="T:System.IO.Packaging.Package" /> content was last printed.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.Modified">
|
||||||
|
<summary>When overridden in a derived class, gets or sets the date and time the <see cref="T:System.IO.Packaging.Package" /> was last changed.</summary>
|
||||||
|
<returns>The date and time the <see cref="T:System.IO.Packaging.Package" /> was last changed.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.Revision">
|
||||||
|
<summary>When overridden in a derived class, gets or sets the revision number of the <see cref="T:System.IO.Packaging.Package" />.</summary>
|
||||||
|
<returns>The revision number of the <see cref="T:System.IO.Packaging.Package" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.Subject">
|
||||||
|
<summary>When overridden in a derived class, gets or sets the topic of the <see cref="T:System.IO.Packaging.Package" /> content.</summary>
|
||||||
|
<returns>The topic of the <see cref="T:System.IO.Packaging.Package" /> content.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.Title">
|
||||||
|
<summary>When overridden in a derived class, gets or sets the name given to the <see cref="T:System.IO.Packaging.Package" /> and its content.</summary>
|
||||||
|
<returns>The name given to the <see cref="T:System.IO.Packaging.Package" /> and its content.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageProperties.Version">
|
||||||
|
<summary>When overridden in a derived class, gets or sets the version number of the <see cref="T:System.IO.Packaging.Package" />.</summary>
|
||||||
|
<returns>The version number of the <see cref="T:System.IO.Packaging.Package" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.IO.Packaging.PackageRelationship">
|
||||||
|
<summary>Represents an association between a source <see cref="T:System.IO.Packaging.Package" /> or <see cref="T:System.IO.Packaging.PackagePart" />, and a target object which can be a <see cref="T:System.IO.Packaging.PackagePart" /> or external resource.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageRelationship.Id">
|
||||||
|
<summary>Gets a string that identifies the relationship.</summary>
|
||||||
|
<returns>A string that identifies the relationship.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageRelationship.Package">
|
||||||
|
<summary>Gets the <see cref="T:System.IO.Packaging.Package" /> that contains this relationship.</summary>
|
||||||
|
<returns>The package that contains this relationship.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageRelationship.RelationshipType">
|
||||||
|
<summary>Gets the qualified type name of the relationship.</summary>
|
||||||
|
<returns>The qualified type name of the relationship.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageRelationship.SourceUri">
|
||||||
|
<summary>Gets the URI of the package or part that owns the relationship.</summary>
|
||||||
|
<returns>The URI of the <see cref="T:System.IO.Packaging.Package" /> or <see cref="T:System.IO.Packaging.PackagePart" /> that owns the relationship.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageRelationship.TargetMode">
|
||||||
|
<summary>Gets a value that indicates whether the target of the relationship is <see cref="F:System.IO.Packaging.TargetMode.Internal" /> or <see cref="F:System.IO.Packaging.TargetMode.External" /> to the <see cref="T:System.IO.Packaging.Package" />.</summary>
|
||||||
|
<returns>An enumeration value that indicates whether <see cref="P:System.IO.Packaging.PackageRelationship.TargetUri" /> references a resource <see cref="F:System.IO.Packaging.TargetMode.Internal" /> or <see cref="F:System.IO.Packaging.TargetMode.External" /> to the <see cref="T:System.IO.Packaging.Package" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageRelationship.TargetUri">
|
||||||
|
<summary>Gets the URI of the target resource of the relationship.</summary>
|
||||||
|
<returns>The URI of the target resource.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.IO.Packaging.PackageRelationshipCollection">
|
||||||
|
<summary>Represents a collection of <see cref="T:System.IO.Packaging.PackageRelationship" /> elements that are owned by a given <see cref="T:System.IO.Packaging.PackagePart" /> or the <see cref="T:System.IO.Packaging.Package" />.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackageRelationshipCollection.GetEnumerator">
|
||||||
|
<summary>Returns an enumerator for iterating through the relationships in the collection.</summary>
|
||||||
|
<returns>An enumerator for iterating through the <see cref="T:System.IO.Packaging.PackageRelationship" /> elements in the collection.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackageRelationshipCollection.System#Collections#IEnumerable#GetEnumerator">
|
||||||
|
<summary>This type or member supports the Windows Presentation Foundation infrastructure and is not intended to be used directly from your code.</summary>
|
||||||
|
<returns>Do not use - use <see cref="M:System.IO.Packaging.PackageRelationshipCollection.GetEnumerator" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.IO.Packaging.PackageRelationshipSelector">
|
||||||
|
<summary>Defines <see cref="T:System.IO.Packaging.PackageRelationship" /> criteria to select part-level or package-level relationships.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackageRelationshipSelector.#ctor(System.Uri,System.IO.Packaging.PackageRelationshipSelectorType,System.String)">
|
||||||
|
<summary>Initializes a new instance of the <see cref="T:System.IO.Packaging.PackageRelationshipSelector" /> class.</summary>
|
||||||
|
<param name="sourceUri">The uniform resource identifier (URI) of the <see cref="T:System.IO.Packaging.PackagePart" /> or the <see cref="T:System.IO.Packaging.Package" /> (<c>SourceUri</c>="/") that owns the relationship.</param>
|
||||||
|
<param name="selectorType">The type of the <paramref name="selectionCriteria" />, either by relationship <see cref="F:System.IO.Packaging.PackageRelationshipSelectorType.Id" /> or relationship <see cref="F:System.IO.Packaging.PackageRelationshipSelectorType.Type" />.</param>
|
||||||
|
<param name="selectionCriteria">The qualification string that is used to select the relationships based on the <paramref name="selectorType" />.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="sourceUri" /> or <paramref name="selectionCriteria" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="selectorType" /> parameter is not valid.</exception>
|
||||||
|
<exception cref="T:System.Xml.XmlException">The <paramref name="selectorType" /> parameter is <see cref="F:System.IO.Packaging.PackageRelationshipSelectorType.Id" /> but <paramref name="selectionCriteria" /> is not a valid XML Schema Definition (XSD) identifier (ID).</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">The <paramref name="selectionCriteria" /> is not valid for the specified <paramref name="selectorType" />.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <paramref name="sourceUri" /> is not the <see cref="T:System.IO.Packaging.Package" /> root ("/") and is also not a valid <see cref="T:System.IO.Packaging.PackagePart" /> URI.</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackageRelationshipSelector.Select(System.IO.Packaging.Package)">
|
||||||
|
<summary>Returns a list of <see cref="T:System.IO.Packaging.PackageRelationship" /> objects that match the defined <see cref="P:System.IO.Packaging.PackageRelationshipSelector.SourceUri" />, <see cref="P:System.IO.Packaging.PackageRelationshipSelector.SelectorType" />, and <see cref="P:System.IO.Packaging.PackageRelationshipSelector.SelectionCriteria" />.</summary>
|
||||||
|
<param name="package">The package from which to select the relationships based on the selection criteria.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="package" /> is <see langword="null" />.</exception>
|
||||||
|
<returns>A list of relationships that match the selection parameters specified to the <see cref="M:System.IO.Packaging.PackageRelationshipSelector.#ctor(System.Uri,System.IO.Packaging.PackageRelationshipSelectorType,System.String)" /> constructor.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageRelationshipSelector.SelectionCriteria">
|
||||||
|
<summary>Gets the selection criteria specified to the <see cref="M:System.IO.Packaging.PackageRelationshipSelector.#ctor(System.Uri,System.IO.Packaging.PackageRelationshipSelectorType,System.String)" /> constructor.</summary>
|
||||||
|
<returns>The selection criteria based on the <see cref="P:System.IO.Packaging.PackageRelationshipSelector.SelectorType" /> of <see cref="F:System.IO.Packaging.PackageRelationshipSelectorType.Id" /> or <see cref="F:System.IO.Packaging.PackageRelationshipSelectorType.Type" /> specified to the <see cref="M:System.IO.Packaging.PackageRelationshipSelector.#ctor(System.Uri,System.IO.Packaging.PackageRelationshipSelectorType,System.String)" /> constructor.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageRelationshipSelector.SelectorType">
|
||||||
|
<summary>Gets the <see cref="T:System.IO.Packaging.PackageRelationshipSelectorType" /> specified to the <see cref="M:System.IO.Packaging.PackageRelationshipSelector.#ctor(System.Uri,System.IO.Packaging.PackageRelationshipSelectorType,System.String)" /> constructor.</summary>
|
||||||
|
<returns>The selector type of <see cref="F:System.IO.Packaging.PackageRelationshipSelectorType.Id" /> or <see cref="F:System.IO.Packaging.PackageRelationshipSelectorType.Type" /> specified to the <see cref="M:System.IO.Packaging.PackageRelationshipSelector.#ctor(System.Uri,System.IO.Packaging.PackageRelationshipSelectorType,System.String)" /> constructor.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="P:System.IO.Packaging.PackageRelationshipSelector.SourceUri">
|
||||||
|
<summary>Gets the root package URI ("/") or part <see cref="P:System.IO.Packaging.PackagePart.Uri" /> specified to the <see cref="M:System.IO.Packaging.PackageRelationshipSelector.#ctor(System.Uri,System.IO.Packaging.PackageRelationshipSelectorType,System.String)" /> constructor as the owner of the relationship.</summary>
|
||||||
|
<returns>The root package URI ("/") or part <see cref="P:System.IO.Packaging.PackagePart.Uri" /> specified to the <see cref="M:System.IO.Packaging.PackageRelationshipSelector.#ctor(System.Uri,System.IO.Packaging.PackageRelationshipSelectorType,System.String)" /> constructor as the owner of the relationship.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.IO.Packaging.PackageRelationshipSelectorType">
|
||||||
|
<summary>Specifies the type of selection criteria that is used to match and return <see cref="T:System.IO.Packaging.PackageRelationship" /> selections through a <see cref="T:System.IO.Packaging.PackageRelationshipSelector" />.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.IO.Packaging.PackageRelationshipSelectorType.Id">
|
||||||
|
<summary>
|
||||||
|
<see cref="T:System.IO.Packaging.PackageRelationship" /> selections are by <see cref="P:System.IO.Packaging.PackageRelationship.Id" />.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.IO.Packaging.PackageRelationshipSelectorType.Type">
|
||||||
|
<summary>
|
||||||
|
<see cref="T:System.IO.Packaging.PackageRelationship" /> selections are by <see cref="P:System.IO.Packaging.PackageRelationship.RelationshipType" />.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.IO.Packaging.PackUriHelper">
|
||||||
|
<summary>Provides utility methods to compose and parse pack URI objects.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.IO.Packaging.PackUriHelper.UriSchemePack">
|
||||||
|
<summary>Defines the pack URI scheme name "pack".</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackUriHelper.ComparePackUri(System.Uri,System.Uri)">
|
||||||
|
<summary>Returns a value that indicates whether two pack URIs are equivalent.</summary>
|
||||||
|
<param name="firstPackUri">The first pack URI.</param>
|
||||||
|
<param name="secondPackUri">The second pack URI.</param>
|
||||||
|
<exception cref="T:System.ArgumentException">Either <paramref name="firstPackUri" /> or <paramref name="secondPackUri" /> is not an absolute URI.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
Either <paramref name="firstPackUri" /> or <paramref name="secondPackUri" /> do not begin with a "pack://" scheme.</exception>
|
||||||
|
<returns>A signed integer indicating the relationship between <paramref name="firstPackUri" /> and <paramref name="secondPackUri" />.
|
||||||
|
|
||||||
|
<list type="table"><listheader><term> Value</term><description> Meaning</description></listheader><item><term> Less than 0</term><description><paramref name="firstPackUri" /> is less than <paramref name="secondPackUri" />.</description></item><item><term> 0</term><description><paramref name="firstPackUri" /> is equivalent to <paramref name="secondPackUri" />.</description></item><item><term> Greater than 0</term><description><paramref name="firstPackUri" /> is greater than <paramref name="secondPackUri" />.</description></item></list></returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackUriHelper.ComparePartUri(System.Uri,System.Uri)">
|
||||||
|
<summary>Returns a value that indicates whether two package part URIs are equivalent.</summary>
|
||||||
|
<param name="firstPartUri">The URI of the first <see cref="T:System.IO.Packaging.PackagePart" />.</param>
|
||||||
|
<param name="secondPartUri">The URI of the second <see cref="T:System.IO.Packaging.PackagePart" />.</param>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="firstPartUri" /> or <paramref name="secondPartUri" /> is not a valid part URI syntax.</exception>
|
||||||
|
<returns>A value that indicates the relationship between <paramref name="firstPartUri" /> and <paramref name="secondPartUri" />.
|
||||||
|
|
||||||
|
<list type="table"><listheader><term> Value</term><description> Meaning</description></listheader><item><term> Less than 0</term><description><paramref name="firstPartUri" /> is less than <paramref name="secondPartUri" />.</description></item><item><term> 0</term><description><paramref name="firstPartUri" /> is equivalent to <paramref name="secondPartUri" />.</description></item><item><term> Greater than 0</term><description><paramref name="firstPartUri" /> is greater than <paramref name="secondPartUri" />.</description></item></list></returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackUriHelper.Create(System.Uri)">
|
||||||
|
<summary>Creates a new pack URI that points to a package.</summary>
|
||||||
|
<param name="packageUri">The URI of the referenced <see cref="T:System.IO.Packaging.Package" />.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="packageUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="packageUri" /> is not an absolute URI.</exception>
|
||||||
|
<returns>The pack URI for the <see cref="T:System.IO.Packaging.Package" /> referenced by the given <paramref name="packageUri" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackUriHelper.Create(System.Uri,System.Uri)">
|
||||||
|
<summary>Creates a pack URI given a <see cref="T:System.IO.Packaging.Package" /> URI and the URI of a part in the package.</summary>
|
||||||
|
<param name="packageUri">The URI of the <see cref="T:System.IO.Packaging.Package" />.</param>
|
||||||
|
<param name="partUri">The URI of the <see cref="T:System.IO.Packaging.PackagePart" /> in the package.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="packageUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="packageUri" /> is not an absolute URI.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
<paramref name="partUri" /> is not a valid part URI syntax.</exception>
|
||||||
|
<returns>The pack URI of the given <see cref="T:System.IO.Packaging.PackagePart" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackUriHelper.Create(System.Uri,System.Uri,System.String)">
|
||||||
|
<summary>Creates a pack URI given a <see cref="T:System.IO.Packaging.Package" /> URI, the URI of a part in the package, and a "#" fragment to append.</summary>
|
||||||
|
<param name="packageUri">The URI of the <see cref="T:System.IO.Packaging.Package" />.</param>
|
||||||
|
<param name="partUri">The URI of the <see cref="T:System.IO.Packaging.PackagePart" /> in the package.</param>
|
||||||
|
<param name="fragment">A "#" reference identifying an element within the package part.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="packageUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="packageUri" /> is not an absolute URI.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
<paramref name="partUri" /> is not a valid part URI syntax.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
<paramref name="fragment" /> is empty or does begin with "#".</exception>
|
||||||
|
<returns>The pack URI that identifies the specified package, package part, and fragment.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackUriHelper.CreatePartUri(System.Uri)">
|
||||||
|
<summary>Creates a formatted <see cref="T:System.IO.Packaging.PackagePart" /> URI.</summary>
|
||||||
|
<param name="partUri">The URI of the <see cref="T:System.IO.Packaging.PackagePart" /> within the package.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="partUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="partUri" /> is not an absolute <see cref="T:System.Uri" />.</exception>
|
||||||
|
<returns>A formatted <see cref="T:System.IO.Packaging.PackagePart" /> URI.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackUriHelper.GetNormalizedPartUri(System.Uri)">
|
||||||
|
<summary>Returns the normalized form of a specified <see cref="T:System.IO.Packaging.PackagePart" /> URI.</summary>
|
||||||
|
<param name="partUri">The <see cref="T:System.IO.Packaging.PackagePart" /> URI to normalize.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="partUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="partUri" /> does not have a valid <see cref="T:System.Uri" /> syntax.</exception>
|
||||||
|
<returns>The normalized form of the given <paramref name="partUri" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackUriHelper.GetPackageUri(System.Uri)">
|
||||||
|
<summary>Returns the inner URI that points to the entire package of a specified pack URI.</summary>
|
||||||
|
<param name="packUri">The pack URI from which to return the URI of the <see cref="T:System.IO.Packaging.Package" />.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="packUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="packUri" /> is not an absolute <see cref="T:System.Uri" />.</exception>
|
||||||
|
<returns>The URI of the <see cref="T:System.IO.Packaging.Package" /> from the specified <paramref name="packUri" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackUriHelper.GetPartUri(System.Uri)">
|
||||||
|
<summary>Returns the URI of a <see cref="T:System.IO.Packaging.PackagePart" /> within a specified pack URI.</summary>
|
||||||
|
<param name="packUri">The pack URI from which to return the <see cref="T:System.IO.Packaging.PackagePart" /> URI.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">If the <paramref name="packUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">If the <paramref name="packUri" /> is not an absolute <see cref="T:System.Uri" />.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
<paramref name="packUri" /> does not have the "pack://" scheme.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The partUri extracted from <paramref name="packUri" /> does not conform to the valid partUri syntax.</exception>
|
||||||
|
<returns>The URI of the <see cref="T:System.IO.Packaging.PackagePart" /> in the given <paramref name="packUri" />, or <see langword="null" /> if <paramref name="packUri" /> points to a package instead of a <see cref="T:System.IO.Packaging.PackagePart" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackUriHelper.GetRelationshipPartUri(System.Uri)">
|
||||||
|
<summary>Returns the URI of the relationship part associated with a specified <see cref="T:System.IO.Packaging.PackagePart" />.</summary>
|
||||||
|
<param name="partUri">The <see cref="P:System.IO.Packaging.PackagePart.Uri" /> of the <see cref="T:System.IO.Packaging.PackagePart" /> to return the URI for the associated <see cref="T:System.IO.Packaging.PackageRelationship" />.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="partUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="partUri" /> syntax is not valid for a package part URI.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
<paramref name="partUri" /> is an absolute URI.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
<paramref name="partUri" /> references a relationship part.</exception>
|
||||||
|
<returns>The URI of the <see cref="T:System.IO.Packaging.PackageRelationship" /> part associated with the <see cref="T:System.IO.Packaging.PackagePart" /> identified by <paramref name="partUri" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackUriHelper.GetRelativeUri(System.Uri,System.Uri)">
|
||||||
|
<summary>Returns the relative URI between two specified <see cref="T:System.IO.Packaging.PackagePart" /> URIs.</summary>
|
||||||
|
<param name="sourcePartUri">The URI of the source part.</param>
|
||||||
|
<param name="targetPartUri">The URI of the target part.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="sourcePartUri" /> or <paramref name="targetPartUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">Either the <paramref name="sourcePartUri" /> or <paramref name="targetPartUri" /> does not have a valid <see cref="T:System.Uri" /> syntax.</exception>
|
||||||
|
<returns>The relative URI from <paramref name="sourcePartUri" /> to <paramref name="targetPartUri" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackUriHelper.GetSourcePartUriFromRelationshipPartUri(System.Uri)">
|
||||||
|
<summary>Returns the <see cref="P:System.IO.Packaging.PackageRelationship.SourceUri" /> from the <see cref="T:System.IO.Packaging.PackageRelationship" /> with a specified URI.</summary>
|
||||||
|
<param name="relationshipPartUri">The URI of the relationship part to return the <see cref="P:System.IO.Packaging.PackageRelationship.SourceUri" /> from.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="relationshipPartUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="relationshipPartUri" /> is an absolute URI.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
<paramref name="relationshipPartUri" /> syntax is not valid for a <see cref="T:System.IO.Packaging.PackagePart" />.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
<paramref name="relationshipPartUri" /> does not reference a relationship part.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
The <see cref="P:System.IO.Packaging.PackageRelationship.SourceUri" /> of the relationship part references another relationship part (not valid).</exception>
|
||||||
|
<returns>The <see cref="P:System.IO.Packaging.PackageRelationship.SourceUri" /> of the <see cref="T:System.IO.Packaging.PackagePart" /> from the relationship with the specified <paramref name="relationshipPartUri" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackUriHelper.IsRelationshipPartUri(System.Uri)">
|
||||||
|
<summary>Returns a value that indicates whether a specified URI is the URI of a <see cref="T:System.IO.Packaging.PackageRelationship" /> part.</summary>
|
||||||
|
<param name="partUri">The URI to check for a <see cref="T:System.IO.Packaging.PackageRelationship" /> part.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="partUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="partUri" /> is an absolute URI.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
<paramref name="partUri" /> is an invalid <see cref="T:System.IO.Packaging.PackagePart" /> syntax.</exception>
|
||||||
|
<returns>
|
||||||
|
<see langword="true" /> if <paramref name="partUri" /> identifies a <see cref="T:System.IO.Packaging.PackageRelationship" /> part; otherwise, <see langword="false" />.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="M:System.IO.Packaging.PackUriHelper.ResolvePartUri(System.Uri,System.Uri)">
|
||||||
|
<summary>Returns a part URI given a source part URI and a URI with a relative path to a target part.</summary>
|
||||||
|
<param name="sourcePartUri">The URI of the source part, or "/" to designate the <see cref="T:System.IO.Packaging.Package" /> root.</param>
|
||||||
|
<param name="targetUri">The relative URI to the target part.</param>
|
||||||
|
<exception cref="T:System.ArgumentNullException">
|
||||||
|
<paramref name="sourcePartUri" /> or <paramref name="targetUri" /> is <see langword="null" />.</exception>
|
||||||
|
<exception cref="T:System.ArgumentException">
|
||||||
|
<paramref name="sourcePartUri" /> is not a valid part URI.
|
||||||
|
|
||||||
|
-or-
|
||||||
|
|
||||||
|
<paramref name="targetUri" /> is not a valid relative URI.</exception>
|
||||||
|
<returns>The URI of the target part resolved between the specified <paramref name="SourcePartUri" /> and the <paramref name="targetUri" /> parameters.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.IO.Packaging.TargetMode">
|
||||||
|
<summary>Specifies whether the target of a <see cref="T:System.IO.Packaging.PackageRelationship" /> is inside or outside the <see cref="T:System.IO.Packaging.Package" />.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.IO.Packaging.TargetMode.External">
|
||||||
|
<summary>The relationship references a resource that is external to the package.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:System.IO.Packaging.TargetMode.Internal">
|
||||||
|
<summary>The relationship references a part that is inside the package.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.IO.Packaging.ZipPackage">
|
||||||
|
<summary>Implements a derived subclass of the abstract <see cref="T:System.IO.Packaging.Package" /> base class - the <see cref="T:System.IO.Packaging.ZipPackage" /> class uses a ZIP archive as the container store. This class cannot be inherited.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:System.IO.Packaging.ZipPackagePart">
|
||||||
|
<summary>Represents a part that is stored in a <see cref="T:System.IO.Packaging.ZipPackage" />.</summary>
|
||||||
|
</member>
|
||||||
|
</members>
|
||||||
|
</doc>
|
BIN
SOURCE/Application/Plugins/ModellingWizard/System.Net.Http.dll
Normal file
BIN
SOURCE/Application/Plugins/ModellingWizard/System.Net.Http.dll
Normal file
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
SOURCE/Application/Plugins/ModellingWizard/System.Xaml.dll
Normal file
BIN
SOURCE/Application/Plugins/ModellingWizard/System.Xaml.dll
Normal file
Binary file not shown.
BIN
SOURCE/Application/Plugins/ModellingWizard/System.Xml.Linq.dll
Normal file
BIN
SOURCE/Application/Plugins/ModellingWizard/System.Xml.Linq.dll
Normal file
Binary file not shown.
BIN
SOURCE/Application/Plugins/ModellingWizard/System.Xml.dll
Normal file
BIN
SOURCE/Application/Plugins/ModellingWizard/System.Xml.dll
Normal file
Binary file not shown.
BIN
SOURCE/Application/Plugins/ModellingWizard/System.dll
Normal file
BIN
SOURCE/Application/Plugins/ModellingWizard/System.dll
Normal file
Binary file not shown.
BIN
SOURCE/Application/Plugins/ModellingWizard/WindowsBase.dll
Normal file
BIN
SOURCE/Application/Plugins/ModellingWizard/WindowsBase.dll
Normal file
Binary file not shown.
Binary file not shown.
19
SOURCE/Application/Program.cs
Normal file
19
SOURCE/Application/Program.cs
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
using System;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
namespace App
|
||||||
|
{
|
||||||
|
static class Program
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Der Haupteinstiegspunkt für die Anwendung.
|
||||||
|
/// </summary>
|
||||||
|
[STAThread]
|
||||||
|
static void Main()
|
||||||
|
{
|
||||||
|
Application.EnableVisualStyles();
|
||||||
|
Application.SetCompatibleTextRenderingDefault(false);
|
||||||
|
Application.Run(new Form1());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
35
SOURCE/Application/Properties/AssemblyInfo.cs
Normal file
35
SOURCE/Application/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
using System.Reflection;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
// Allgemeine Informationen über eine Assembly werden über die folgenden
|
||||||
|
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
|
||||||
|
// die einer Assembly zugeordnet sind.
|
||||||
|
[assembly: AssemblyTitle("Application")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("Application")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2022")]
|
||||||
|
[assembly: AssemblyTrademark("")]
|
||||||
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly
|
||||||
|
// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von
|
||||||
|
// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen.
|
||||||
|
[assembly: ComVisible(false)]
|
||||||
|
|
||||||
|
// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
|
||||||
|
[assembly: Guid("165d011d-d27b-48f5-995d-bac062f41986")]
|
||||||
|
|
||||||
|
// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
|
||||||
|
//
|
||||||
|
// Hauptversion
|
||||||
|
// Nebenversion
|
||||||
|
// Buildnummer
|
||||||
|
// Revision
|
||||||
|
//
|
||||||
|
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
|
||||||
|
// indem Sie "*" wie unten gezeigt eingeben:
|
||||||
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
|
[assembly: AssemblyVersion("1.0.0.0")]
|
||||||
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|
70
SOURCE/Application/Properties/Resources.Designer.cs
generated
Normal file
70
SOURCE/Application/Properties/Resources.Designer.cs
generated
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion: 4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können fehlerhaftes Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code neu generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
namespace App.Properties
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||||||
|
/// </summary>
|
||||||
|
// Diese Klasse wurde von der StronglyTypedResourceBuilder-Klasse
|
||||||
|
// über ein Tool wie ResGen oder Visual Studio automatisch generiert.
|
||||||
|
// Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen
|
||||||
|
// mit der Option /str erneut aus, oder erstellen Sie Ihr VS-Projekt neu.
|
||||||
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
|
internal class Resources
|
||||||
|
{
|
||||||
|
|
||||||
|
private static global::System.Resources.ResourceManager resourceMan;
|
||||||
|
|
||||||
|
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||||
|
|
||||||
|
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||||
|
internal Resources()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||||||
|
/// </summary>
|
||||||
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
|
internal static global::System.Resources.ResourceManager ResourceManager
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if ((resourceMan == null))
|
||||||
|
{
|
||||||
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Application.Properties.Resources", typeof(Resources).Assembly);
|
||||||
|
resourceMan = temp;
|
||||||
|
}
|
||||||
|
return resourceMan;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||||||
|
/// Ressourcenlookups, die diese stark typisierte Ressourcenklasse verwenden.
|
||||||
|
/// </summary>
|
||||||
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
|
internal static global::System.Globalization.CultureInfo Culture
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return resourceCulture;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
resourceCulture = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
117
SOURCE/Application/Properties/Resources.resx
Normal file
117
SOURCE/Application/Properties/Resources.resx
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
29
SOURCE/Application/Properties/Settings.Designer.cs
generated
Normal file
29
SOURCE/Application/Properties/Settings.Designer.cs
generated
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
namespace App.Properties
|
||||||
|
{
|
||||||
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
|
||||||
|
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
|
||||||
|
{
|
||||||
|
|
||||||
|
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||||
|
|
||||||
|
public static Settings Default
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return defaultInstance;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
7
SOURCE/Application/Properties/Settings.settings
Normal file
7
SOURCE/Application/Properties/Settings.settings
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
|
||||||
|
<Profiles>
|
||||||
|
<Profile Name="(Default)" />
|
||||||
|
</Profiles>
|
||||||
|
<Settings />
|
||||||
|
</SettingsFile>
|
BIN
SOURCE/Application/logo.ico
Normal file
BIN
SOURCE/Application/logo.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
9
SOURCE/Application/packages.config
Normal file
9
SOURCE/Application/packages.config
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<packages>
|
||||||
|
<package id="Aml.Engine" version="1.5.8" targetFramework="net472" />
|
||||||
|
<package id="System.IO.FileSystem.AccessControl" version="5.0.0" targetFramework="net472" />
|
||||||
|
<package id="System.IO.FileSystem.Primitives" version="4.3.0" targetFramework="net472" />
|
||||||
|
<package id="System.IO.Packaging" version="5.0.0" targetFramework="net472" />
|
||||||
|
<package id="System.Security.AccessControl" version="5.0.0" targetFramework="net472" />
|
||||||
|
<package id="System.Security.Principal.Windows" version="5.0.0" targetFramework="net472" />
|
||||||
|
</packages>
|
5
SOURCE/Plugin/.gitignore
vendored
Normal file
5
SOURCE/Plugin/.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
.vs/
|
||||||
|
obj/
|
||||||
|
packages/
|
||||||
|
Plugins/
|
||||||
|
|
BIN
SOURCE/Plugin/AML.ico
Normal file
BIN
SOURCE/Plugin/AML.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 66 KiB |
169
SOURCE/Plugin/About.xaml
Normal file
169
SOURCE/Plugin/About.xaml
Normal file
@ -0,0 +1,169 @@
|
|||||||
|
<Window
|
||||||
|
x:Class="Aml.Editor.Plugin.About"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
Width="530"
|
||||||
|
SizeToContent="Height"
|
||||||
|
WindowStartupLocation="CenterScreen"
|
||||||
|
WindowStyle="ToolWindow"
|
||||||
|
mc:Ignorable="d">
|
||||||
|
<Grid>
|
||||||
|
|
||||||
|
<Grid.Resources>
|
||||||
|
<Style x:Key="Heading1" TargetType="TextBlock">
|
||||||
|
<Setter Property="FontFamily" Value="Segoe UI" />
|
||||||
|
<Setter Property="FontSize" Value="30" />
|
||||||
|
<Setter Property="TextOptions.TextFormattingMode" Value="Ideal" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style x:Key="Heading2" TargetType="TextBlock">
|
||||||
|
<Setter Property="FontFamily" Value="Segoe UI" />
|
||||||
|
<Setter Property="FontSize" Value="16" />
|
||||||
|
<Setter Property="FontWeight" Value="Bold" />
|
||||||
|
<Setter Property="TextOptions.TextFormattingMode" Value="Display" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style x:Key="Title" TargetType="TextBlock">
|
||||||
|
<Setter Property="FontFamily" Value="Segoe UI Light" />
|
||||||
|
<Setter Property="FontSize" Value="23" />
|
||||||
|
<Setter Property="TextOptions.TextFormattingMode" Value="Ideal" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style x:Key="Small" TargetType="TextBlock">
|
||||||
|
<Setter Property="FontFamily" Value="Segoe UI" />
|
||||||
|
<Setter Property="FontSize" Value="{DynamicResource SmallFontSize}" />
|
||||||
|
<Setter Property="TextOptions.TextFormattingMode" Value="Display" />
|
||||||
|
</Style>
|
||||||
|
</Grid.Resources>
|
||||||
|
|
||||||
|
<Border
|
||||||
|
BorderBrush="LightBlue"
|
||||||
|
BorderThickness="1"
|
||||||
|
CornerRadius="1">
|
||||||
|
<ScrollViewer>
|
||||||
|
<StackPanel MinWidth="200">
|
||||||
|
<TextBlock Margin="10,5" Style="{StaticResource Heading2}">
|
||||||
|
<Run Text="About the Modelling Wizard for Devices Application!" />
|
||||||
|
</TextBlock>
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<TextBlock
|
||||||
|
Width="400"
|
||||||
|
Margin="10,5"
|
||||||
|
Text="This Modelling Wizard for Devices standalone application can be used to create or modify Devices and Interfaces. It can also be used to import IODD and GSDML Files which will be converted to an AMLX Package."
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
<TextBlock FontWeight="Bold" Name="txtVersion" Margin="10,5,0,8" />
|
||||||
|
<Border Margin="0,2,0,2" BorderThickness="0,2,0,0">
|
||||||
|
<Border.BorderBrush>
|
||||||
|
<LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">
|
||||||
|
<GradientStop Offset="0" Color="Black" />
|
||||||
|
<GradientStop Offset="1" Color="#FFF6F3F3" />
|
||||||
|
</LinearGradientBrush>
|
||||||
|
</Border.BorderBrush>
|
||||||
|
</Border>
|
||||||
|
|
||||||
|
<StackPanel>
|
||||||
|
<TextBlock
|
||||||
|
Margin="10,10,0,2"
|
||||||
|
Text="Design and Software development by"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
<TextBlock FontWeight="Bold" Margin="15,5,0,0" Text="TINF17C" />
|
||||||
|
<TextBlock Margin="15,0,0,0">
|
||||||
|
<Run FontWeight="Bold" Text="DHBW Stuttgart" />
|
||||||
|
</TextBlock>
|
||||||
|
<TextBlock Margin="15,0,0,0">
|
||||||
|
<Run Text="and" />
|
||||||
|
</TextBlock>
|
||||||
|
<TextBlock Margin="15,0,0,0">
|
||||||
|
<Run FontWeight="Bold" Text="Master Student Raj Kumar Pulaparthi" />
|
||||||
|
</TextBlock>
|
||||||
|
<TextBlock Margin="15,0,0,0">
|
||||||
|
<Run FontWeight="Bold" Text="Otto-von-Guericke University Magdeburg" />
|
||||||
|
</TextBlock>
|
||||||
|
<TextBlock Margin="15,0,0,0">
|
||||||
|
<Run Text="and" />
|
||||||
|
</TextBlock>
|
||||||
|
<TextBlock FontWeight="Bold" Margin="15,5,0,0" Text="TINF19C" />
|
||||||
|
<TextBlock Margin="15,0,0,0">
|
||||||
|
<Run FontWeight="Bold" Text="DHBW Stuttgart" />
|
||||||
|
</TextBlock>
|
||||||
|
<TextBlock Margin="15,0,0,0">
|
||||||
|
<Run Text="and" />
|
||||||
|
</TextBlock>
|
||||||
|
<TextBlock FontWeight="Bold" Margin="15,5,0,0" Text="TINF20C" />
|
||||||
|
<TextBlock Margin="15,0,0,0">
|
||||||
|
<Run FontWeight="Bold" Text="DHBW Stuttgart" />
|
||||||
|
</TextBlock>
|
||||||
|
|
||||||
|
<TextBlock Margin="15,5,0,10" Text="This Plugin was created as a group project in the class "Software Engineering"" />
|
||||||
|
<TextBlock Margin="15,5,0,10" Text="Later this plugin was developed as a sample tool that create vendor independent 
automation component, and included as part of Master Thesis" />
|
||||||
|
|
||||||
|
|
||||||
|
<Border Margin="0,2,0,2" BorderThickness="0,2,0,0">
|
||||||
|
<Border.BorderBrush>
|
||||||
|
<LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">
|
||||||
|
<GradientStop Offset="0" Color="Black" />
|
||||||
|
<GradientStop Offset="1" Color="#FFF6F3F3" />
|
||||||
|
</LinearGradientBrush>
|
||||||
|
</Border.BorderBrush>
|
||||||
|
</Border>
|
||||||
|
|
||||||
|
<TextBlock Margin="10,5,0,0">
|
||||||
|
<Run FontWeight="Bold" Text="TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION" />
|
||||||
|
</TextBlock>
|
||||||
|
|
||||||
|
<TextBlock
|
||||||
|
Margin="10,5,0,8"
|
||||||
|
Text="This project is licensed under the GPL 3.0 license"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
<TextBlock
|
||||||
|
Margin="10,5,0,8"
|
||||||
|
TextWrapping="Wrap">
|
||||||
|
Visit our <Hyperlink NavigateUri="https://github.com/H4CK3R-01/TINF20C_ModellingWizard_Devices/blob/main/LICENSE" RequestNavigate="Hyperlink_RequestNavigate">GitHub-Repository</Hyperlink> to learn more about this.
|
||||||
|
</TextBlock>
|
||||||
|
|
||||||
|
|
||||||
|
<Border Margin="0,2,0,2" BorderThickness="0,2,0,0">
|
||||||
|
<Border.BorderBrush>
|
||||||
|
<LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">
|
||||||
|
<GradientStop Offset="0" Color="Black" />
|
||||||
|
<GradientStop Offset="1" Color="#FFF6F3F3" />
|
||||||
|
</LinearGradientBrush>
|
||||||
|
</Border.BorderBrush>
|
||||||
|
</Border>
|
||||||
|
|
||||||
|
<TextBlock Margin="10,5,0,0" FontWeight="Bold">
|
||||||
|
© TINF20C DHBW Stuttgart 2022
|
||||||
|
<!-- Copyright symbol -->
|
||||||
|
</TextBlock>
|
||||||
|
|
||||||
|
<TextBlock Name="TextBlock1WithHyperlink" Margin="10,5,0,0" TextWrapping="Wrap">
|
||||||
|
This Plugin uses third-party software for the convertions of IODD and GSDML. All Rights are reserved by the corresponding copyright owner.
|
||||||
|
</TextBlock>
|
||||||
|
|
||||||
|
<TextBlock
|
||||||
|
Name="TextBlock2WithHyperlink"
|
||||||
|
Margin="10,5,0,0"
|
||||||
|
TextWrapping="Wrap">
|
||||||
|
Visit <Hyperlink NavigateUri="https://github.com/H4CK3R-01/TINF20C_ModellingWizard_Devices" RequestNavigate="Hyperlink_RequestNavigate">ModellingWizard</Hyperlink>
|
||||||
|
on GitHub to get more informations about this project.</TextBlock>
|
||||||
|
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
<Border BorderBrush="Gray" BorderThickness="0,0,0,0" Width="491" Height="45">
|
||||||
|
<Button
|
||||||
|
x:Name="Close"
|
||||||
|
Margin="10"
|
||||||
|
HorizontalAlignment="Right"
|
||||||
|
Click="Close_Click">
|
||||||
|
Close
|
||||||
|
</Button>
|
||||||
|
</Border>
|
||||||
|
</StackPanel>
|
||||||
|
</ScrollViewer>
|
||||||
|
</Border>
|
||||||
|
</Grid>
|
||||||
|
</Window>
|
41
SOURCE/Plugin/About.xaml.cs
Normal file
41
SOURCE/Plugin/About.xaml.cs
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
|
||||||
|
using System.Reflection;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
|
||||||
|
namespace Aml.Editor.Plugin
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for About.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class About : Window
|
||||||
|
{
|
||||||
|
public About()
|
||||||
|
{
|
||||||
|
this.DataContext = this;
|
||||||
|
InitializeComponent();
|
||||||
|
|
||||||
|
var assembly = Assembly.GetCallingAssembly();
|
||||||
|
|
||||||
|
txtVersion.Text = "Version " + assembly.GetName().Version.ToString();
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Close_Click(object sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
this.Close();
|
||||||
|
}
|
||||||
|
|
||||||
|
public string Version
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
set;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
|
||||||
|
{
|
||||||
|
System.Diagnostics.Process.Start(e.Uri.ToString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
158
SOURCE/Plugin/AnimationClass.cs
Normal file
158
SOURCE/Plugin/AnimationClass.cs
Normal file
@ -0,0 +1,158 @@
|
|||||||
|
using Aml.Editor.Plugin.Properties;
|
||||||
|
using System;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.IO;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
namespace Aml.Editor.Plugin
|
||||||
|
{
|
||||||
|
class AnimationClass
|
||||||
|
{
|
||||||
|
public Panel PanelNumber { get; set; }
|
||||||
|
public Button ButtonNumber { get; set; }
|
||||||
|
public WebBrowser Webbrowser { get; set; }
|
||||||
|
public TextBox TextboxName { get; set; }
|
||||||
|
public PictureBox PictureboxNumber { get; set; }
|
||||||
|
public Button DisplayBtn { get; set; }
|
||||||
|
public DataGridView dataGridView { get; set; }
|
||||||
|
public string words { get; set; }
|
||||||
|
// public TreeNode Node { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
public AnimationClass()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// Method for window size maximum and minimum
|
||||||
|
public void WindowSizeChanger(Panel panelNumber, Button buttonNumber)
|
||||||
|
{
|
||||||
|
PanelNumber = panelNumber;
|
||||||
|
ButtonNumber = buttonNumber;
|
||||||
|
if (panelNumber.Size == panelNumber.MaximumSize)
|
||||||
|
{
|
||||||
|
panelNumber.Size = panelNumber.MinimumSize;
|
||||||
|
buttonNumber.Image = Resources.icons8_expand_arrow_24;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
panelNumber.Size = panelNumber.MaximumSize;
|
||||||
|
buttonNumber.Image = Resources.icons8_collapse_arrow_24;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void WindowSizeChanger(Panel panelNumber)
|
||||||
|
{
|
||||||
|
PanelNumber = panelNumber;
|
||||||
|
// Node = node;
|
||||||
|
if (panelNumber.Size == panelNumber.MaximumSize)
|
||||||
|
{
|
||||||
|
panelNumber.Size = panelNumber.MinimumSize;
|
||||||
|
//Node.Image = Resources.icons8_expand_arrow_24;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
panelNumber.Size = panelNumber.MaximumSize;
|
||||||
|
//Node.Image = Resources.icons8_collapse_arrow_24;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public string OpenFileDialog(TextBox textboxName)
|
||||||
|
{
|
||||||
|
TextboxName = textboxName;
|
||||||
|
|
||||||
|
OpenFileDialog open = new OpenFileDialog();
|
||||||
|
open.Filter = "Document Files(*.pdf; *.doc;*.jpg; *.jpeg; *.gif; *.bmp; *.png;)|*.pdf; *.doc;*.jpg; *.jpeg; *.gif; *.bmp; *.png;";
|
||||||
|
if (open.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
textboxName.Text = open.FileName;
|
||||||
|
|
||||||
|
}
|
||||||
|
string nameOfFile = Path.GetFileName(open.FileName);
|
||||||
|
return nameOfFile;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void OpenFileDialog(TextBox textboxName, Button pdfDisplayBtn)
|
||||||
|
{
|
||||||
|
TextboxName = textboxName;
|
||||||
|
DisplayBtn = pdfDisplayBtn;
|
||||||
|
WebBrowser webbrowser = new WebBrowser();
|
||||||
|
OpenFileDialog open = new OpenFileDialog();
|
||||||
|
open.Filter = "Files(*.pdf; *.doc;)|*.pdf; *.doc;";
|
||||||
|
if (open.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
textboxName.Text = open.FileName;
|
||||||
|
pdfDisplayBtn.Visible = true;
|
||||||
|
pdfDisplayBtn.Text = Path.GetFileName(open.FileName);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// method for opening IEC-CDD urls
|
||||||
|
public void ManualOpener(string btnText)
|
||||||
|
{
|
||||||
|
string mainUrl = "https://cdd.iec.ch/CDD/IEC62683/iec62683.nsf/PropertiesAllVersions/0112-2---62683%23";
|
||||||
|
string lastUrl = "?OpenDocument";
|
||||||
|
string midUrl = btnText.Substring(15);
|
||||||
|
string finalUrl = mainUrl + midUrl + lastUrl;
|
||||||
|
|
||||||
|
System.Diagnostics.Process.Start(finalUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Open Dialog Box related method that takes parmeters of textbox name and the picture box number.
|
||||||
|
public void OpenFileDialog(TextBox textboxName, PictureBox pictureBoxNumber)
|
||||||
|
{
|
||||||
|
TextboxName = textboxName;
|
||||||
|
PictureboxNumber = pictureBoxNumber;
|
||||||
|
OpenFileDialog open = new OpenFileDialog();
|
||||||
|
open.Filter = "Image Files(*.jpg; *.jpeg; *.gif; *.bmp; *.png;)|*.jpg; *.jpeg; *.gif; *.bmp; *.png;";
|
||||||
|
if (open.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
textboxName.Text = open.FileName;
|
||||||
|
pictureBoxNumber.Image = new Bitmap(open.FileName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void OpenFileDialog(TextBox textboxName, PictureBox pictureBoxNumber, Button displayButton)
|
||||||
|
{
|
||||||
|
TextboxName = textboxName;
|
||||||
|
PictureboxNumber = pictureBoxNumber;
|
||||||
|
DisplayBtn = displayButton;
|
||||||
|
OpenFileDialog open = new OpenFileDialog();
|
||||||
|
open.Filter = "Image Files(*.jpg; *.jpeg; *.gif; *.bmp; *.png;)|*.jpg; *.jpeg; *.gif; *.bmp; *.png;";
|
||||||
|
if (open.ShowDialog() == DialogResult.OK)
|
||||||
|
{
|
||||||
|
textboxName.Text = open.FileName;
|
||||||
|
pictureBoxNumber.Image = new Bitmap(open.FileName);
|
||||||
|
displayButton.Visible = true;
|
||||||
|
displayButton.Text = Path.GetFileName(open.FileName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// this method dispaly all hidden buttons with the Refsemantic Id in them.
|
||||||
|
public void DispalySemanticBtn(Button refSemanticBtn, DataGridView dataGrids, string word)
|
||||||
|
{
|
||||||
|
words = word;
|
||||||
|
DisplayBtn = refSemanticBtn;
|
||||||
|
dataGridView = dataGrids;
|
||||||
|
|
||||||
|
DisplayBtn.Visible = true;
|
||||||
|
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
foreach (DataGridViewRow attribute in dataGridView.Rows)
|
||||||
|
{
|
||||||
|
if (attribute.Cells[1].Value.ToString().Equals(words))
|
||||||
|
{
|
||||||
|
DisplayBtn.Text = attribute.Cells[0].Value.ToString();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception exc)
|
||||||
|
{
|
||||||
|
MessageBox.Show(exc.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
169
SOURCE/Plugin/AutomationMLDataTables.cs
Normal file
169
SOURCE/Plugin/AutomationMLDataTables.cs
Normal file
@ -0,0 +1,169 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Data;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
namespace Aml.Editor.Plugin
|
||||||
|
{
|
||||||
|
class AutomationMLDataTables
|
||||||
|
{
|
||||||
|
public DataTable AMLAttributeParameters()
|
||||||
|
{
|
||||||
|
DataTable AMLAttributeParameters = new DataTable();
|
||||||
|
|
||||||
|
AMLAttributeParameters.Columns.Add("AttributeName");
|
||||||
|
AMLAttributeParameters.Columns.Add("Value");
|
||||||
|
AMLAttributeParameters.Columns.Add("Default");
|
||||||
|
AMLAttributeParameters.Columns.Add("Unit");
|
||||||
|
AMLAttributeParameters.Columns.Add("DataType");
|
||||||
|
AMLAttributeParameters.Columns.Add("Semantic", typeof(ComboBox));
|
||||||
|
/*AMLAttributeParameters.Columns.Add("Reference");
|
||||||
|
AMLAttributeParameters.Columns.Add("Description");*/
|
||||||
|
|
||||||
|
return AMLAttributeParameters;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void CreateDataTableWithColumns(DataTable dataRowName, DataGridView dataGridViewName,
|
||||||
|
KeyValuePair<string, List<List<ClassOfListsFromReferencefile>>> pair)
|
||||||
|
{
|
||||||
|
KeyValuePair<string, List<List<ClassOfListsFromReferencefile>>> Pair = pair;
|
||||||
|
|
||||||
|
DataTable DataRowName = dataRowName;
|
||||||
|
DataGridView DataGridViewName = dataGridViewName;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
foreach (var valueList in Pair.Value)
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
foreach (var item in valueList)
|
||||||
|
{
|
||||||
|
List<string> listofRefsemantics = new List<string>();
|
||||||
|
DataRow row = DataRowName.NewRow();
|
||||||
|
|
||||||
|
/*row["AttributeName"] = item.Name;
|
||||||
|
row["Value"] = item.Value;
|
||||||
|
row["Default"] = item.Default;
|
||||||
|
row["Unit"] = item.Unit;
|
||||||
|
row["DataType"] = null;*/
|
||||||
|
int num = DataGridViewName.Rows.Add();
|
||||||
|
|
||||||
|
|
||||||
|
if (item.Name == "Manufacturer" || item.Name == "Model" || item.Name == "ManufacturerURI" || item.Name == "DeviceClass" || item.Name == "ProductCode")
|
||||||
|
{
|
||||||
|
DataGridViewName.Rows[num].Cells[0].Value = item.Name;
|
||||||
|
DataGridViewName.Rows[num].Cells[0].Style.ForeColor = Color.Red;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
DataGridViewName.Rows[num].Cells[0].Value = item.Name;
|
||||||
|
}
|
||||||
|
|
||||||
|
DataGridViewName.Rows[num].Cells[1].Value = item.Value;
|
||||||
|
DataGridViewName.Rows[num].Cells[2].Value = item.Default;
|
||||||
|
DataGridViewName.Rows[num].Cells[3].Value = item.Unit;
|
||||||
|
DataGridViewName.Rows[num].Cells[4].Value = item.DataType;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
foreach (var value in item.RefSemanticList.Elements)
|
||||||
|
{
|
||||||
|
listofRefsemantics.Add(value.FirstAttribute.Value.ToString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
DataGridViewComboBoxCell dgvcbc = (DataGridViewComboBoxCell)DataGridViewName.Rows[num].Cells[5];
|
||||||
|
dgvcbc.Items.Clear();
|
||||||
|
|
||||||
|
foreach (var items in listofRefsemantics)
|
||||||
|
{
|
||||||
|
dgvcbc.Items.Add(items);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
DataRowName.Rows.Add(row);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
public void CheckForSameNameTextOfInternalAttributes(DataTable dataRowName, DataGridView dataGridViewName, KeyValuePair<string, List<ClassOfListsFromReferencefile>> pair)
|
||||||
|
{
|
||||||
|
KeyValuePair<string, List<ClassOfListsFromReferencefile>> Pair = pair;
|
||||||
|
DataTable DataRowName = dataRowName;
|
||||||
|
DataGridView DataGridViewName = dataGridViewName;
|
||||||
|
foreach (DataGridViewRow eachrow in DataGridViewName.Rows)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
/* if (eachrow.Cells[0].Value.Equals(item.Name))
|
||||||
|
{
|
||||||
|
|
||||||
|
}*/
|
||||||
|
}
|
||||||
|
catch (Exception) { }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public void CreateDataTableWithColumns(DataTable dataRowName, DataGridView dataGridViewName, KeyValuePair<string, List<ElectricalInterfaceParameters>> pair)
|
||||||
|
{
|
||||||
|
KeyValuePair<string, List<ElectricalInterfaceParameters>> Pair = pair;
|
||||||
|
DataTable DataRowName = new DataTable();
|
||||||
|
DataRowName = dataRowName;
|
||||||
|
DataGridView DataGridViewName = dataGridViewName;
|
||||||
|
|
||||||
|
foreach (var item in Pair.Value)
|
||||||
|
{
|
||||||
|
|
||||||
|
DataRow row = DataRowName.NewRow();
|
||||||
|
|
||||||
|
|
||||||
|
row["AttributeName"] = item.AttributeName;
|
||||||
|
row["Value"] = item.Values;
|
||||||
|
row["Default"] = item.Default;
|
||||||
|
row["Unit"] = item.Units;
|
||||||
|
row["DataType"] = item.DataType;
|
||||||
|
row["Semantic"] = item.Semantic;
|
||||||
|
row["Reference"] = item.Reference;
|
||||||
|
row["Description"] = item.Description;
|
||||||
|
DataRowName.Rows.Add(row);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* break;*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
foreach (DataRow IDT in DataRowName.Rows)
|
||||||
|
{
|
||||||
|
|
||||||
|
int num = DataGridViewName.Rows.Add();
|
||||||
|
DataGridViewName.Rows[num].Cells[0].Value = IDT["AttributeName"].ToString();
|
||||||
|
DataGridViewName.Rows[num].Cells[1].Value = IDT["Value"].ToString();
|
||||||
|
DataGridViewName.Rows[num].Cells[2].Value = IDT["Default"].ToString();
|
||||||
|
DataGridViewName.Rows[num].Cells[3].Value = IDT["Unit"].ToString();
|
||||||
|
DataGridViewName.Rows[num].Cells[4].Value = IDT["DataType"].ToString();
|
||||||
|
DataGridViewName.Rows[num].Cells[5].Value = IDT["Semantic"].ToString();
|
||||||
|
DataGridViewName.Rows[num].Cells[6].Value = IDT["Reference"].ToString();
|
||||||
|
// DataGridViewName.Rows[num].Cells[7].Value = IDT["Description"].ToString();
|
||||||
|
|
||||||
|
}
|
||||||
|
// For each loop creating the rows in the data table
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
40
SOURCE/Plugin/ClassDiagram1.cd
Normal file
40
SOURCE/Plugin/ClassDiagram1.cd
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<ClassDiagram MajorVersion="1" MinorVersion="1" GroupingSetting="Alphabetical">
|
||||||
|
<Class Name="Aml.Editor.Plugin.SearchAMLLibraryFile">
|
||||||
|
<Position X="2.5" Y="4.5" Width="5.75" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>AEAAAAAAACCAAAwEAAAAgABEAASAAAGAAACEAAAEAEE=</HashCode>
|
||||||
|
<FileName>SearchAMLLibraryFile.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.SearchAMLComponentFile">
|
||||||
|
<Position X="9" Y="4.5" Width="4.75" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>AAAAAAgAAAAEAAAAAAABAQBAAgAAEAEBAAAAAEIBACA=</HashCode>
|
||||||
|
<FileName>SearchAMLComponentFile.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.DeviceDescription" Collapsed="true">
|
||||||
|
<Position X="10" Y="10.75" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>f+Lfxtcfg3/IeTb7yP335u3/aqvH3RPMf9bi+vq9ra4=</HashCode>
|
||||||
|
<FileName>DeviceDescription.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="System.Object">
|
||||||
|
<Position X="7" Y="1.25" Width="2" />
|
||||||
|
<TypeIdentifier />
|
||||||
|
</Class>
|
||||||
|
<Class Name="System.Windows.Forms.UserControl" Collapsed="true">
|
||||||
|
<Position X="10" Y="9.25" Width="1.5" />
|
||||||
|
<TypeIdentifier />
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.MWData" Collapsed="true">
|
||||||
|
<Position X="10" Y="12.25" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>SAAAAAAAgAgCAAAAAAAAEIAAAAABAACAJAAAAAAAAAA=</HashCode>
|
||||||
|
<FileName>MWData.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Font Name="Segoe UI" Size="9" />
|
||||||
|
</ClassDiagram>
|
141
SOURCE/Plugin/ClassDiagram2.cd
Normal file
141
SOURCE/Plugin/ClassDiagram2.cd
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<ClassDiagram MajorVersion="1" MinorVersion="1" GroupingSetting="Alphabetical" MembersFormat="FullSignature">
|
||||||
|
<Class Name="Aml.Editor.Plugin.About" Collapsed="true" BaseTypeListCollapsed="true">
|
||||||
|
<Position X="3" Y="0.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>IAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAQAAA=</HashCode>
|
||||||
|
<FileName>About.xaml.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
<Lollipop Position="0.2" Collapsed="true" />
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.AnimationClass" Collapsed="true">
|
||||||
|
<Position X="4.75" Y="0.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>AAAAAAAAGCAAAEAEAAAAAAAAAEAAAAAACCQJAAAAQAA=</HashCode>
|
||||||
|
<FileName>AnimationClass.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.AutomationMLDataTables" Collapsed="true">
|
||||||
|
<Position X="8.25" Y="0.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>AAAAIAAAIAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAA=</HashCode>
|
||||||
|
<FileName>AutomationMLDataTables.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.ClassOfListsFromDataGridViews" Collapsed="true">
|
||||||
|
<Position X="10" Y="0.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>EgAAAACABAEggAAEIAAAIAQAAAAAAAACAAAgAAAAAAA=</HashCode>
|
||||||
|
<FileName>ClassOfListsFromDataGridViews.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.ClassOfListsFromReferencefile" Collapsed="true">
|
||||||
|
<Position X="3" Y="1.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>EgAAAACABAMigAAEIAAAIAQAAAAAEAACAAAgAAAAAAA=</HashCode>
|
||||||
|
<FileName>ClassOfListsFromReferencefile.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.DeviceDescription" Collapsed="true">
|
||||||
|
<Position X="0.5" Y="0.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>f+Lfxtcfg3/IeTb7yP335u3/aqvH3RPMf9bi+vq9ra4=</HashCode>
|
||||||
|
<FileName>DeviceDescription.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.ModellingWizard" Collapsed="true" BaseTypeListCollapsed="true">
|
||||||
|
<Position X="3" Y="2.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>AIBAExAAAgQBAAIgEAEIUIRAEIASCgAgAAgAAEAAAEA=</HashCode>
|
||||||
|
<FileName>ModellingWizard.xaml.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
<Lollipop Position="0.2" Collapsed="true" />
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.MWController" Collapsed="true">
|
||||||
|
<Position X="4.75" Y="2.5" Width="1.5" />
|
||||||
|
<Compartments>
|
||||||
|
<Compartment Name="Members" Collapsed="true" />
|
||||||
|
</Compartments>
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>AgAAAAAAAACAAAAAAAAQAAAAQAAAgEAAAAggAAAAAAA=</HashCode>
|
||||||
|
<FileName>MWController.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.MWData" Collapsed="true">
|
||||||
|
<Position X="0.5" Y="2" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>SAAAAAAAgAgCAAAAAAAAEIAAAAABAACAJAAAAAAAAAA=</HashCode>
|
||||||
|
<FileName>MWData.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.MWDevice" Collapsed="true">
|
||||||
|
<Position X="6.5" Y="2.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>AQABEAAAAAAAAgAAQCAICACAAEAEAAAAAEACAAQEAAA=</HashCode>
|
||||||
|
<FileName>MWDevice.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.DataGridParameters" Collapsed="true">
|
||||||
|
<Position X="4.75" Y="1.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>ABAAAAAAAAAAAAAEAAAAAAAQAAAAAAAAAAAgAAAAAAA=</HashCode>
|
||||||
|
<FileName>MWDevice.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.ElectricalParameters" Collapsed="true">
|
||||||
|
<Position X="8.25" Y="1.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>AAAAEAAEAAACAAAEBAAAAAAAAAgQAAAAAAAAAAAAAAA=</HashCode>
|
||||||
|
<FileName>MWDevice.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.ElectricalParametersInElectricalDataDataGridView" Collapsed="true">
|
||||||
|
<Position X="10" Y="1.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>BAAAAAAAAAAAAAAEAAAAAAAQAAAAAAAAEAAgAAAAAAA=</HashCode>
|
||||||
|
<FileName>MWDevice.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.PinParametersInPinInfoDataGridView" Collapsed="true">
|
||||||
|
<Position X="8.25" Y="2.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>BAAAAAAAAAAAAAAEAAAAAAAQAAAAAAAAEAAgAAAAAAg=</HashCode>
|
||||||
|
<FileName>MWDevice.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.AttachablesDataGridViewParameters" Collapsed="true">
|
||||||
|
<Position X="6.5" Y="0.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>AAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAACAJAAAAAAAA=</HashCode>
|
||||||
|
<FileName>MWDevice.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.ElectricalInterfaceParameters" Collapsed="true">
|
||||||
|
<Position X="6.5" Y="1.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>EgAAAACAAAMgAIAEAAAAIAAAAAAAAAAAEAAgAAAAAAA=</HashCode>
|
||||||
|
<FileName>MWDevice.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.SearchAMLComponentFile" Collapsed="true">
|
||||||
|
<Position X="3" Y="3.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>AAAAAAgAAAAEAAAAAAABAQBAAgAAEAEBAAAAAEIBACA=</HashCode>
|
||||||
|
<FileName>SearchAMLComponentFile.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.SearchAMLLibraryFile" Collapsed="true">
|
||||||
|
<Position X="4.75" Y="3.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>AEAAAAAAACCAAAwEAAAAgABEAASAAAGAAACEAAAEAEE=</HashCode>
|
||||||
|
<FileName>SearchAMLLibraryFile.cs</FileName>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Class Name="Aml.Editor.Plugin.Properties.Resources" Collapsed="true">
|
||||||
|
<Position X="10" Y="2.5" Width="1.5" />
|
||||||
|
<TypeIdentifier>
|
||||||
|
<HashCode>IAAAAAAAAAABAAAAAAABEJAAQQkAAIAAgAAAAAAAAIE=</HashCode>
|
||||||
|
</TypeIdentifier>
|
||||||
|
</Class>
|
||||||
|
<Font Name="Segoe UI" Size="9" />
|
||||||
|
</ClassDiagram>
|
59
SOURCE/Plugin/ClassOfListsFromDataGridViews.cs
Normal file
59
SOURCE/Plugin/ClassOfListsFromDataGridViews.cs
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
namespace Aml.Editor.Plugin
|
||||||
|
{
|
||||||
|
class ClassOfListsFromDataGridViews
|
||||||
|
{
|
||||||
|
public string Name { get; set; }
|
||||||
|
public string Value { get; set; }
|
||||||
|
public string Default { get; set; }
|
||||||
|
public string Unit { get; set; }
|
||||||
|
public string Semantic { get; set; }
|
||||||
|
public string Reference { get; set; }
|
||||||
|
public string Description { get; set; }
|
||||||
|
public string CopyRight { get; set; }
|
||||||
|
public string AttributePath { get; set; }
|
||||||
|
public string RefBaseClassPath { get; set; }
|
||||||
|
public string ID { get; set; }
|
||||||
|
public string ReferencedClassName { get; set; }
|
||||||
|
//public CAEXSequence<RefSemanticType> RefSemanticList { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public ClassOfListsFromDataGridViews()
|
||||||
|
{
|
||||||
|
// RefSemanticList = new List<CAEXSequence<RefSemanticType>>();
|
||||||
|
}
|
||||||
|
|
||||||
|
public ClassOfListsFromDataGridViews(string name, string value,
|
||||||
|
string _default, string unit,
|
||||||
|
string reference, string description,
|
||||||
|
string copyRight, string semantic, string
|
||||||
|
attributePath, string refBaseClassPath,
|
||||||
|
string id, string referencedClassName /*CAEXSequence<RefSemanticType> refSemanticList*/)
|
||||||
|
: this()
|
||||||
|
{
|
||||||
|
this.Name = name;
|
||||||
|
this.Value = value;
|
||||||
|
this.Default = _default;
|
||||||
|
this.Unit = unit;
|
||||||
|
this.Reference = reference;
|
||||||
|
this.Description = description;
|
||||||
|
this.CopyRight = copyRight;
|
||||||
|
this.Semantic = semantic;
|
||||||
|
this.AttributePath = attributePath;
|
||||||
|
this.RefBaseClassPath = refBaseClassPath;
|
||||||
|
this.ID = id;
|
||||||
|
this.ReferencedClassName = referencedClassName;
|
||||||
|
//this.RefSemanticList = refSemanticList;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return "ClassOfListsFromReferencefile(" + Name + "=" + Value + "=" + Default + "=" + Unit + "=" + Reference + "="
|
||||||
|
+ Description + "=" + CopyRight + "=" + Semantic + "=" + AttributePath + "=" + RefBaseClassPath + "=" + ID
|
||||||
|
+ "=" + ReferencedClassName + ")";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
63
SOURCE/Plugin/ClassOfListsFromReferencefile.cs
Normal file
63
SOURCE/Plugin/ClassOfListsFromReferencefile.cs
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
using Aml.Engine.CAEX;
|
||||||
|
|
||||||
|
namespace Aml.Editor.Plugin
|
||||||
|
{
|
||||||
|
public class ClassOfListsFromReferencefile
|
||||||
|
{
|
||||||
|
public string Name { get; set; }
|
||||||
|
public string Value { get; set; }
|
||||||
|
public string Default { get; set; }
|
||||||
|
public string Unit { get; set; }
|
||||||
|
public string Semantic { get; set; }
|
||||||
|
public string Reference { get; set; }
|
||||||
|
public string Description { get; set; }
|
||||||
|
public string CopyRight { get; set; }
|
||||||
|
public string AttributePath { get; set; }
|
||||||
|
public string RefBaseClassPath { get; set; }
|
||||||
|
public string ID { get; set; }
|
||||||
|
public string ReferencedClassName { get; set; }
|
||||||
|
public CAEXSequence<RefSemanticType> RefSemanticList { get; set; }
|
||||||
|
public string SupportesRoleClassType { get; set; }
|
||||||
|
public string DataType { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
//public List<ClassOfListsFromReferencefile> listofparameters { get; set; }
|
||||||
|
|
||||||
|
public ClassOfListsFromReferencefile()
|
||||||
|
{
|
||||||
|
// RefSemanticList = new List<CAEXSequence<RefSemanticType>>();
|
||||||
|
}
|
||||||
|
|
||||||
|
public ClassOfListsFromReferencefile(string name, string value,
|
||||||
|
string _default, string unit,
|
||||||
|
string reference, string description,
|
||||||
|
string copyRight, string semantic, string
|
||||||
|
attributePath, string refBaseClassPath,
|
||||||
|
string id, string referencedClassName, CAEXSequence<RefSemanticType> refSemanticList, string supportesRoleClassType, string dataType)
|
||||||
|
: this()
|
||||||
|
{
|
||||||
|
this.Name = name;
|
||||||
|
this.Value = value;
|
||||||
|
this.Default = _default;
|
||||||
|
this.Unit = unit;
|
||||||
|
this.Reference = reference;
|
||||||
|
this.Description = description;
|
||||||
|
this.CopyRight = copyRight;
|
||||||
|
this.Semantic = semantic;
|
||||||
|
this.AttributePath = attributePath;
|
||||||
|
this.RefBaseClassPath = refBaseClassPath;
|
||||||
|
this.ID = id;
|
||||||
|
this.ReferencedClassName = referencedClassName;
|
||||||
|
this.RefSemanticList = refSemanticList;
|
||||||
|
this.SupportesRoleClassType = supportesRoleClassType;
|
||||||
|
this.DataType = dataType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return "ClassOfListsFromReferencefile(" + Name + "=" + Value + "=" + Default + "=" + Unit + "=" + Reference + "="
|
||||||
|
+ Description + "=" + CopyRight + "=" + Semantic + "=" + AttributePath + "=" + RefBaseClassPath + "=" + ID
|
||||||
|
+ "=" + ReferencedClassName + "=" + RefSemanticList + "=" + SupportesRoleClassType + "=" + DataType + ")";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
2577
SOURCE/Plugin/Code Documentation/Doxyfile
Normal file
2577
SOURCE/Plugin/Code Documentation/Doxyfile
Normal file
File diff suppressed because it is too large
Load Diff
131
SOURCE/Plugin/Code Documentation/html/_about_8xaml_8cs.html
Normal file
131
SOURCE/Plugin/Code Documentation/html/_about_8xaml_8cs.html
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: About.xaml.cs File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('_about_8xaml_8cs.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">About.xaml.cs File Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_about.html">Aml.Editor.Plugin.About</a></td></tr>
|
||||||
|
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Interaction logic for About.xaml <a href="class_aml_1_1_editor_1_1_plugin_1_1_about.html#details">More...</a><br /></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespace_aml"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml.html">Aml</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor.html">Aml.Editor</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor_1_1_plugin"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Aml.Editor.Plugin</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="_about_8xaml_8cs.html">About.xaml.cs</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
130
SOURCE/Plugin/Code Documentation/html/_animation_class_8cs.html
Normal file
130
SOURCE/Plugin/Code Documentation/html/_animation_class_8cs.html
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: AnimationClass.cs File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('_animation_class_8cs.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">AnimationClass.cs File Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespace_aml"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml.html">Aml</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor.html">Aml.Editor</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor_1_1_plugin"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Aml.Editor.Plugin</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="_animation_class_8cs.html">AnimationClass.cs</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: AutomationMLDataTables.cs File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('_automation_m_l_data_tables_8cs.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">AutomationMLDataTables.cs File Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html">Aml.Editor.Plugin.AutomationMLDataTables</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespace_aml"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml.html">Aml</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor.html">Aml.Editor</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor_1_1_plugin"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Aml.Editor.Plugin</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="_automation_m_l_data_tables_8cs.html">AutomationMLDataTables.cs</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: ClassOfListsFromDataGridViews.cs File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('_class_of_lists_from_data_grid_views_8cs.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">ClassOfListsFromDataGridViews.cs File Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespace_aml"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml.html">Aml</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor.html">Aml.Editor</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor_1_1_plugin"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Aml.Editor.Plugin</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="_class_of_lists_from_data_grid_views_8cs.html">ClassOfListsFromDataGridViews.cs</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: ClassOfListsFromReferencefile.cs File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('_class_of_lists_from_referencefile_8cs.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">ClassOfListsFromReferencefile.cs File Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespace_aml"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml.html">Aml</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor.html">Aml.Editor</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor_1_1_plugin"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Aml.Editor.Plugin</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="_class_of_lists_from_referencefile_8cs.html">ClassOfListsFromReferencefile.cs</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: DeviceDescription.Designer.cs File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('_device_description_8_designer_8cs.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">DeviceDescription.Designer.cs File Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_device_description.html">Aml.Editor.Plugin.DeviceDescription</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespace_aml"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml.html">Aml</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor.html">Aml.Editor</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor_1_1_plugin"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Aml.Editor.Plugin</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="_device_description_8_designer_8cs.html">DeviceDescription.Designer.cs</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: DeviceDescription.cs File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('_device_description_8cs.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">DeviceDescription.cs File Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_device_description.html">Aml.Editor.Plugin.DeviceDescription</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespace_aml"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml.html">Aml</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor.html">Aml.Editor</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor_1_1_plugin"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Aml.Editor.Plugin</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="_device_description_8cs.html">DeviceDescription.cs</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
131
SOURCE/Plugin/Code Documentation/html/_m_w_controller_8cs.html
Normal file
131
SOURCE/Plugin/Code Documentation/html/_m_w_controller_8cs.html
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: MWController.cs File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('_m_w_controller_8cs.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">MWController.cs File Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_m_w_controller.html">Aml.Editor.Plugin.MWController</a></td></tr>
|
||||||
|
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">This class passes the inputs of the GUIs to <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_m_w_data.html">MWData</a> where needed and it is in controll of what is displayed at the screen <a href="class_aml_1_1_editor_1_1_plugin_1_1_m_w_controller.html#details">More...</a><br /></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespace_aml"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml.html">Aml</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor.html">Aml.Editor</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor_1_1_plugin"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Aml.Editor.Plugin</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="_m_w_controller_8cs.html">MWController.cs</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
132
SOURCE/Plugin/Code Documentation/html/_m_w_data_8cs.html
Normal file
132
SOURCE/Plugin/Code Documentation/html/_m_w_data_8cs.html
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: MWData.cs File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('_m_w_data_8cs.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">MWData.cs File Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_m_w_data.html">Aml.Editor.Plugin.MWData</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_m_w_data_1_1_m_w_object.html">Aml.Editor.Plugin.MWData.MWObject</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespace_aml"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml.html">Aml</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor.html">Aml.Editor</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor_1_1_plugin"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Aml.Editor.Plugin</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="_m_w_data_8cs.html">MWData.cs</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
143
SOURCE/Plugin/Code Documentation/html/_m_w_device_8cs.html
Normal file
143
SOURCE/Plugin/Code Documentation/html/_m_w_device_8cs.html
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: MWDevice.cs File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('_m_w_device_8cs.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">MWDevice.cs File Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_m_w_device.html">Aml.Editor.Plugin.MWDevice</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html">Aml.Editor.Plugin.DataGridParameters</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_electrical_parameters.html">Aml.Editor.Plugin.ElectricalParameters</a></td></tr>
|
||||||
|
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">/The following classes are parameter holders for Electrical Interfaces <a href="class_aml_1_1_editor_1_1_plugin_1_1_electrical_parameters.html#details">More...</a><br /></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_electrical_parameters_in_electrical_data_data_grid_view.html">Aml.Editor.Plugin.ElectricalParametersInElectricalDataDataGridView</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_pin_parameters_in_pin_info_data_grid_view.html">Aml.Editor.Plugin.PinParametersInPinInfoDataGridView</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html">Aml.Editor.Plugin.AttachablesDataGridViewParameters</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_electrical_interface_parameters.html">Aml.Editor.Plugin.ElectricalInterfaceParameters</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespace_aml"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml.html">Aml</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor.html">Aml.Editor</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor_1_1_plugin"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Aml.Editor.Plugin</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="_m_w_device_8cs.html">MWDevice.cs</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,131 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: ModellingWizard.xaml.cs File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('_modelling_wizard_8xaml_8cs.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">ModellingWizard.xaml.cs File Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_modelling_wizard.html">Aml.Editor.Plugin.ModellingWizard</a></td></tr>
|
||||||
|
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_modelling_wizard.html" title="ModellingWizard is an PlugIn, which implements the IAMLEditorView Interface.">ModellingWizard</a> is an PlugIn, which implements the IAMLEditorView Interface. <a href="class_aml_1_1_editor_1_1_plugin_1_1_modelling_wizard.html#details">More...</a><br /></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespace_aml"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml.html">Aml</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor.html">Aml.Editor</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor_1_1_plugin"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Aml.Editor.Plugin</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="_modelling_wizard_8xaml_8cs.html">ModellingWizard.xaml.cs</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
112
SOURCE/Plugin/Code Documentation/html/_r_e_a_d_m_e_8md.html
Normal file
112
SOURCE/Plugin/Code Documentation/html/_r_e_a_d_m_e_8md.html
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: README.md File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('_r_e_a_d_m_e_8md.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">README.md File Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="_r_e_a_d_m_e_8md.html">README.md</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: SearchAMLComponentFile.cs File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('_search_a_m_l_component_file_8cs.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">SearchAMLComponentFile.cs File Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_search_a_m_l_component_file.html">Aml.Editor.Plugin.SearchAMLComponentFile</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespace_aml"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml.html">Aml</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor.html">Aml.Editor</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor_1_1_plugin"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Aml.Editor.Plugin</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="_search_a_m_l_component_file_8cs.html">SearchAMLComponentFile.cs</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,131 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: SearchAMLLibraryFile.cs File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('_search_a_m_l_library_file_8cs.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">SearchAMLLibraryFile.cs File Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_search_a_m_l_library_file.html">Aml.Editor.Plugin.SearchAMLLibraryFile</a></td></tr>
|
||||||
|
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">This class reads the library file loaded in to the plugin "Role Class Library TreeView" and "Interface Class Library TreeView" <a href="class_aml_1_1_editor_1_1_plugin_1_1_search_a_m_l_library_file.html#details">More...</a><br /></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespace_aml"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml.html">Aml</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor.html">Aml.Editor</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:namespace_aml_1_1_editor_1_1_plugin"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Aml.Editor.Plugin</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="_search_a_m_l_library_file_8cs.html">SearchAMLLibraryFile.cs</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
137
SOURCE/Plugin/Code Documentation/html/annotated.html
Normal file
137
SOURCE/Plugin/Code Documentation/html/annotated.html
Normal file
@ -0,0 +1,137 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Class List</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('annotated.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Class List</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<div class="textblock">Here are the classes, structs, unions and interfaces with brief descriptions:</div><div class="directory">
|
||||||
|
<div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span><span onclick="javascript:toggleLevel(3);">3</span><span onclick="javascript:toggleLevel(4);">4</span><span onclick="javascript:toggleLevel(5);">5</span>]</div><table class="directory">
|
||||||
|
<tr id="row_0_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_0_" class="arrow" onclick="toggleFolder('0_')">▼</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_aml.html" target="_self">Aml</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span id="arr_0_0_" class="arrow" onclick="toggleFolder('0_0_')">▼</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_aml_1_1_editor.html" target="_self">Editor</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span id="arr_0_0_0_" class="arrow" onclick="toggleFolder('0_0_0_')">▼</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html" target="_self">Plugin</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_0_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_about.html" target="_self">About</a></td><td class="desc">Interaction logic for About.xaml </td></tr>
|
||||||
|
<tr id="row_0_0_0_1_" class="even"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html" target="_self">AnimationClass</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_2_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html" target="_self">AttachablesDataGridViewParameters</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_3_" class="even"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html" target="_self">AutomationMLDataTables</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_4_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html" target="_self">ClassOfListsFromDataGridViews</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_5_" class="even"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html" target="_self">ClassOfListsFromReferencefile</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_6_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html" target="_self">DataGridParameters</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_7_" class="even"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_device_description.html" target="_self">DeviceDescription</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_8_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_electrical_interface_parameters.html" target="_self">ElectricalInterfaceParameters</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_9_" class="even"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_electrical_parameters.html" target="_self">ElectricalParameters</a></td><td class="desc">/The following classes are parameter holders for Electrical Interfaces </td></tr>
|
||||||
|
<tr id="row_0_0_0_10_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_electrical_parameters_in_electrical_data_data_grid_view.html" target="_self">ElectricalParametersInElectricalDataDataGridView</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_11_" class="even"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_modelling_wizard.html" target="_self">ModellingWizard</a></td><td class="desc"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_modelling_wizard.html" title="ModellingWizard is an PlugIn, which implements the IAMLEditorView Interface.">ModellingWizard</a> is an PlugIn, which implements the IAMLEditorView Interface </td></tr>
|
||||||
|
<tr id="row_0_0_0_12_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_m_w_controller.html" target="_self">MWController</a></td><td class="desc">This class passes the inputs of the GUIs to <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_m_w_data.html">MWData</a> where needed and it is in controll of what is displayed at the screen </td></tr>
|
||||||
|
<tr id="row_0_0_0_13_" class="even"><td class="entry"><span style="width:48px;display:inline-block;"> </span><span id="arr_0_0_0_13_" class="arrow" onclick="toggleFolder('0_0_0_13_')">▼</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_m_w_data.html" target="_self">MWData</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_13_0_"><td class="entry"><span style="width:80px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_m_w_data_1_1_m_w_object.html" target="_self">MWObject</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_14_" class="even"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_m_w_device.html" target="_self">MWDevice</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_15_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_pin_parameters_in_pin_info_data_grid_view.html" target="_self">PinParametersInPinInfoDataGridView</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_16_" class="even"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_search_a_m_l_component_file.html" target="_self">SearchAMLComponentFile</a></td><td class="desc"></td></tr>
|
||||||
|
<tr id="row_0_0_0_17_"><td class="entry"><span style="width:64px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_search_a_m_l_library_file.html" target="_self">SearchAMLLibraryFile</a></td><td class="desc">This class reads the library file loaded in to the plugin "Role Class Library TreeView" and "Interface Class Library TreeView" </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- directory -->
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
4
SOURCE/Plugin/Code Documentation/html/annotated_dup.js
Normal file
4
SOURCE/Plugin/Code Documentation/html/annotated_dup.js
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
var annotated_dup =
|
||||||
|
[
|
||||||
|
[ "Aml", "namespace_aml.html", "namespace_aml" ]
|
||||||
|
];
|
BIN
SOURCE/Plugin/Code Documentation/html/bc_s.png
Normal file
BIN
SOURCE/Plugin/Code Documentation/html/bc_s.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 676 B |
BIN
SOURCE/Plugin/Code Documentation/html/bdwn.png
Normal file
BIN
SOURCE/Plugin/Code Documentation/html/bdwn.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 147 B |
@ -0,0 +1,116 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Member List</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('class_aml_1_1_editor_1_1_plugin_1_1_about.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Aml.Editor.Plugin.About Member List</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
|
||||||
|
<p>This is the complete list of members for <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_about.html">Aml.Editor.Plugin.About</a>, including all inherited members.</p>
|
||||||
|
<table class="directory">
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_about.html#a0001137d5fb3972b81264ce5568cc4d8">About</a>()</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_about.html">Aml.Editor.Plugin.About</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_about.html#a542282bf537e261e5294e607f88dc9e6">Version</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_about.html">Aml.Editor.Plugin.About</a></td><td class="entry"></td></tr>
|
||||||
|
</table></div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,190 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Aml.Editor.Plugin.About Class Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('class_aml_1_1_editor_1_1_plugin_1_1_about.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#pub-methods">Public Member Functions</a> |
|
||||||
|
<a href="#properties">Properties</a> |
|
||||||
|
<a href="class_aml_1_1_editor_1_1_plugin_1_1_about-members.html">List of all members</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Aml.Editor.Plugin.About Class Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
|
||||||
|
<p>Interaction logic for About.xaml
|
||||||
|
<a href="class_aml_1_1_editor_1_1_plugin_1_1_about.html#details">More...</a></p>
|
||||||
|
<div class="dynheader">
|
||||||
|
Inheritance diagram for Aml.Editor.Plugin.About:</div>
|
||||||
|
<div class="dyncontent">
|
||||||
|
<div class="center">
|
||||||
|
<img src="class_aml_1_1_editor_1_1_plugin_1_1_about.png" alt=""/>
|
||||||
|
</div></div>
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
|
||||||
|
Public Member Functions</h2></td></tr>
|
||||||
|
<tr class="memitem:a0001137d5fb3972b81264ce5568cc4d8"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_about.html#a0001137d5fb3972b81264ce5568cc4d8">About</a> ()</td></tr>
|
||||||
|
<tr class="separator:a0001137d5fb3972b81264ce5568cc4d8"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a>
|
||||||
|
Properties</h2></td></tr>
|
||||||
|
<tr class="memitem:a542282bf537e261e5294e607f88dc9e6"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_about.html#a542282bf537e261e5294e607f88dc9e6">Version</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a542282bf537e261e5294e607f88dc9e6"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||||
|
<div class="textblock"><p>Interaction logic for About.xaml </p>
|
||||||
|
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
|
||||||
|
<a id="a0001137d5fb3972b81264ce5568cc4d8"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a0001137d5fb3972b81264ce5568cc4d8">◆ </a></span>About()</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">Aml.Editor.Plugin.About.About </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramname"></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="groupheader">Property Documentation</h2>
|
||||||
|
<a id="a542282bf537e261e5294e607f88dc9e6"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a542282bf537e261e5294e607f88dc9e6">◆ </a></span>Version</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.About.Version</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr/>The documentation for this class was generated from the following file:<ul>
|
||||||
|
<li><a class="el" href="_about_8xaml_8cs.html">About.xaml.cs</a></li>
|
||||||
|
</ul>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="namespace_aml.html">Aml</a></li><li class="navelem"><a class="el" href="namespace_aml_1_1_editor.html">Editor</a></li><li class="navelem"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Plugin</a></li><li class="navelem"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_about.html">About</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,5 @@
|
|||||||
|
var class_aml_1_1_editor_1_1_plugin_1_1_about =
|
||||||
|
[
|
||||||
|
[ "About", "class_aml_1_1_editor_1_1_plugin_1_1_about.html#a0001137d5fb3972b81264ce5568cc4d8", null ],
|
||||||
|
[ "Version", "class_aml_1_1_editor_1_1_plugin_1_1_about.html#a542282bf537e261e5294e607f88dc9e6", null ]
|
||||||
|
];
|
Binary file not shown.
After Width: | Height: | Size: 557 B |
@ -0,0 +1,131 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Member List</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Aml.Editor.Plugin.AnimationClass Member List</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
|
||||||
|
<p>This is the complete list of members for <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a>, including all inherited members.</p>
|
||||||
|
<table class="directory">
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a99e06693a64c2eecb54276b906d14822">AnimationClass</a>()</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a60f3bd7a53a308a0963b9d603757c289">ButtonNumber</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a30e0efbd0cfdcc718d2bb26f8dc3a0f8">dataGridView</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#aa7de242b566e80898c52fe89d19626b0">DispalySemanticBtn</a>(Button refSemanticBtn, DataGridView dataGrids, string word)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a9c5863b36d871cca1a96d53be4637c65">DisplayBtn</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a77d8bf72f7d54a50df736fee1006836d">ManualOpener</a>(string btnText)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a4fba2da1c2015740334e10dd50d1fb4a">OpenFileDialog</a>(TextBox textboxName)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#af622bb4ee8c59d14abad92dd8ceb976e">OpenFileDialog</a>(TextBox textboxName, Button pdfDisplayBtn)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#aac584071d94916c2df7d91bbe39e5c6c">OpenFileDialog</a>(TextBox textboxName, PictureBox pictureBoxNumber)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a9aecddc8211b6ef2cb45103ee8cee319">OpenFileDialog</a>(TextBox textboxName, PictureBox pictureBoxNumber, Button displayButton)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a978d71a487ceb1fab343b33afca66775">PanelNumber</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a07f73e83f366c180d868edb155629349">PictureboxNumber</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a19dcafe11285ec11f235d3c84e765151">TextboxName</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a3a43c6acd43cc44cd85ea42610db93e5">Webbrowser</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#ad95b75f8f5095b88ef3aa75d92e25263">WindowSizeChanger</a>(Panel panelNumber, Button buttonNumber)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#ae9de03fc8ff4839dff7873a64d5eaf8c">WindowSizeChanger</a>(Panel panelNumber)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#ae2dd3c44c8e8a9cc4ecb11cb7ad79682">words</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">Aml.Editor.Plugin.AnimationClass</a></td><td class="entry"></td></tr>
|
||||||
|
</table></div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,634 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Aml.Editor.Plugin.AnimationClass Class Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#pub-methods">Public Member Functions</a> |
|
||||||
|
<a href="#properties">Properties</a> |
|
||||||
|
<a href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class-members.html">List of all members</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Aml.Editor.Plugin.AnimationClass Class Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
|
||||||
|
Public Member Functions</h2></td></tr>
|
||||||
|
<tr class="memitem:a99e06693a64c2eecb54276b906d14822"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a99e06693a64c2eecb54276b906d14822">AnimationClass</a> ()</td></tr>
|
||||||
|
<tr class="separator:a99e06693a64c2eecb54276b906d14822"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:ad95b75f8f5095b88ef3aa75d92e25263"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#ad95b75f8f5095b88ef3aa75d92e25263">WindowSizeChanger</a> (Panel panelNumber, Button buttonNumber)</td></tr>
|
||||||
|
<tr class="separator:ad95b75f8f5095b88ef3aa75d92e25263"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:ae9de03fc8ff4839dff7873a64d5eaf8c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#ae9de03fc8ff4839dff7873a64d5eaf8c">WindowSizeChanger</a> (Panel panelNumber)</td></tr>
|
||||||
|
<tr class="separator:ae9de03fc8ff4839dff7873a64d5eaf8c"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a4fba2da1c2015740334e10dd50d1fb4a"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a4fba2da1c2015740334e10dd50d1fb4a">OpenFileDialog</a> (TextBox textboxName)</td></tr>
|
||||||
|
<tr class="separator:a4fba2da1c2015740334e10dd50d1fb4a"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:af622bb4ee8c59d14abad92dd8ceb976e"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#af622bb4ee8c59d14abad92dd8ceb976e">OpenFileDialog</a> (TextBox textboxName, Button pdfDisplayBtn)</td></tr>
|
||||||
|
<tr class="separator:af622bb4ee8c59d14abad92dd8ceb976e"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a77d8bf72f7d54a50df736fee1006836d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a77d8bf72f7d54a50df736fee1006836d">ManualOpener</a> (string btnText)</td></tr>
|
||||||
|
<tr class="separator:a77d8bf72f7d54a50df736fee1006836d"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:aac584071d94916c2df7d91bbe39e5c6c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#aac584071d94916c2df7d91bbe39e5c6c">OpenFileDialog</a> (TextBox textboxName, PictureBox pictureBoxNumber)</td></tr>
|
||||||
|
<tr class="separator:aac584071d94916c2df7d91bbe39e5c6c"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a9aecddc8211b6ef2cb45103ee8cee319"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a9aecddc8211b6ef2cb45103ee8cee319">OpenFileDialog</a> (TextBox textboxName, PictureBox pictureBoxNumber, Button displayButton)</td></tr>
|
||||||
|
<tr class="separator:a9aecddc8211b6ef2cb45103ee8cee319"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:aa7de242b566e80898c52fe89d19626b0"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#aa7de242b566e80898c52fe89d19626b0">DispalySemanticBtn</a> (Button refSemanticBtn, DataGridView dataGrids, string word)</td></tr>
|
||||||
|
<tr class="separator:aa7de242b566e80898c52fe89d19626b0"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a>
|
||||||
|
Properties</h2></td></tr>
|
||||||
|
<tr class="memitem:a978d71a487ceb1fab343b33afca66775"><td class="memItemLeft" align="right" valign="top">Panel </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a978d71a487ceb1fab343b33afca66775">PanelNumber</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a978d71a487ceb1fab343b33afca66775"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a60f3bd7a53a308a0963b9d603757c289"><td class="memItemLeft" align="right" valign="top">Button </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a60f3bd7a53a308a0963b9d603757c289">ButtonNumber</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a60f3bd7a53a308a0963b9d603757c289"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a3a43c6acd43cc44cd85ea42610db93e5"><td class="memItemLeft" align="right" valign="top">WebBrowser </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a3a43c6acd43cc44cd85ea42610db93e5">Webbrowser</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a3a43c6acd43cc44cd85ea42610db93e5"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a19dcafe11285ec11f235d3c84e765151"><td class="memItemLeft" align="right" valign="top">TextBox </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a19dcafe11285ec11f235d3c84e765151">TextboxName</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a19dcafe11285ec11f235d3c84e765151"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a07f73e83f366c180d868edb155629349"><td class="memItemLeft" align="right" valign="top">PictureBox </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a07f73e83f366c180d868edb155629349">PictureboxNumber</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a07f73e83f366c180d868edb155629349"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a9c5863b36d871cca1a96d53be4637c65"><td class="memItemLeft" align="right" valign="top">Button </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a9c5863b36d871cca1a96d53be4637c65">DisplayBtn</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a9c5863b36d871cca1a96d53be4637c65"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a30e0efbd0cfdcc718d2bb26f8dc3a0f8"><td class="memItemLeft" align="right" valign="top">DataGridView </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a30e0efbd0cfdcc718d2bb26f8dc3a0f8">dataGridView</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a30e0efbd0cfdcc718d2bb26f8dc3a0f8"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:ae2dd3c44c8e8a9cc4ecb11cb7ad79682"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#ae2dd3c44c8e8a9cc4ecb11cb7ad79682">words</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:ae2dd3c44c8e8a9cc4ecb11cb7ad79682"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
|
||||||
|
<a id="a99e06693a64c2eecb54276b906d14822"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a99e06693a64c2eecb54276b906d14822">◆ </a></span>AnimationClass()</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">Aml.Editor.Plugin.AnimationClass.AnimationClass </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramname"></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="groupheader">Member Function Documentation</h2>
|
||||||
|
<a id="aa7de242b566e80898c52fe89d19626b0"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#aa7de242b566e80898c52fe89d19626b0">◆ </a></span>DispalySemanticBtn()</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">void Aml.Editor.Plugin.AnimationClass.DispalySemanticBtn </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">Button </td>
|
||||||
|
<td class="paramname"><em>refSemanticBtn</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">DataGridView </td>
|
||||||
|
<td class="paramname"><em>dataGrids</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>word</em> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>)</td>
|
||||||
|
<td></td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a77d8bf72f7d54a50df736fee1006836d"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a77d8bf72f7d54a50df736fee1006836d">◆ </a></span>ManualOpener()</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">void Aml.Editor.Plugin.AnimationClass.ManualOpener </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>btnText</em></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a4fba2da1c2015740334e10dd50d1fb4a"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a4fba2da1c2015740334e10dd50d1fb4a">◆ </a></span>OpenFileDialog() <span class="overload">[1/4]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.AnimationClass.OpenFileDialog </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">TextBox </td>
|
||||||
|
<td class="paramname"><em>textboxName</em></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="af622bb4ee8c59d14abad92dd8ceb976e"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#af622bb4ee8c59d14abad92dd8ceb976e">◆ </a></span>OpenFileDialog() <span class="overload">[2/4]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">void Aml.Editor.Plugin.AnimationClass.OpenFileDialog </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">TextBox </td>
|
||||||
|
<td class="paramname"><em>textboxName</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">Button </td>
|
||||||
|
<td class="paramname"><em>pdfDisplayBtn</em> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>)</td>
|
||||||
|
<td></td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="aac584071d94916c2df7d91bbe39e5c6c"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#aac584071d94916c2df7d91bbe39e5c6c">◆ </a></span>OpenFileDialog() <span class="overload">[3/4]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">void Aml.Editor.Plugin.AnimationClass.OpenFileDialog </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">TextBox </td>
|
||||||
|
<td class="paramname"><em>textboxName</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">PictureBox </td>
|
||||||
|
<td class="paramname"><em>pictureBoxNumber</em> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>)</td>
|
||||||
|
<td></td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a9aecddc8211b6ef2cb45103ee8cee319"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a9aecddc8211b6ef2cb45103ee8cee319">◆ </a></span>OpenFileDialog() <span class="overload">[4/4]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">void Aml.Editor.Plugin.AnimationClass.OpenFileDialog </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">TextBox </td>
|
||||||
|
<td class="paramname"><em>textboxName</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">PictureBox </td>
|
||||||
|
<td class="paramname"><em>pictureBoxNumber</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">Button </td>
|
||||||
|
<td class="paramname"><em>displayButton</em> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>)</td>
|
||||||
|
<td></td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="ae9de03fc8ff4839dff7873a64d5eaf8c"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#ae9de03fc8ff4839dff7873a64d5eaf8c">◆ </a></span>WindowSizeChanger() <span class="overload">[1/2]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">void Aml.Editor.Plugin.AnimationClass.WindowSizeChanger </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">Panel </td>
|
||||||
|
<td class="paramname"><em>panelNumber</em></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="ad95b75f8f5095b88ef3aa75d92e25263"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#ad95b75f8f5095b88ef3aa75d92e25263">◆ </a></span>WindowSizeChanger() <span class="overload">[2/2]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">void Aml.Editor.Plugin.AnimationClass.WindowSizeChanger </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">Panel </td>
|
||||||
|
<td class="paramname"><em>panelNumber</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">Button </td>
|
||||||
|
<td class="paramname"><em>buttonNumber</em> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>)</td>
|
||||||
|
<td></td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="groupheader">Property Documentation</h2>
|
||||||
|
<a id="a60f3bd7a53a308a0963b9d603757c289"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a60f3bd7a53a308a0963b9d603757c289">◆ </a></span>ButtonNumber</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">Button Aml.Editor.Plugin.AnimationClass.ButtonNumber</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a30e0efbd0cfdcc718d2bb26f8dc3a0f8"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a30e0efbd0cfdcc718d2bb26f8dc3a0f8">◆ </a></span>dataGridView</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">DataGridView Aml.Editor.Plugin.AnimationClass.dataGridView</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a9c5863b36d871cca1a96d53be4637c65"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a9c5863b36d871cca1a96d53be4637c65">◆ </a></span>DisplayBtn</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">Button Aml.Editor.Plugin.AnimationClass.DisplayBtn</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a978d71a487ceb1fab343b33afca66775"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a978d71a487ceb1fab343b33afca66775">◆ </a></span>PanelNumber</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">Panel Aml.Editor.Plugin.AnimationClass.PanelNumber</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a07f73e83f366c180d868edb155629349"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a07f73e83f366c180d868edb155629349">◆ </a></span>PictureboxNumber</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">PictureBox Aml.Editor.Plugin.AnimationClass.PictureboxNumber</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a19dcafe11285ec11f235d3c84e765151"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a19dcafe11285ec11f235d3c84e765151">◆ </a></span>TextboxName</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">TextBox Aml.Editor.Plugin.AnimationClass.TextboxName</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a3a43c6acd43cc44cd85ea42610db93e5"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a3a43c6acd43cc44cd85ea42610db93e5">◆ </a></span>Webbrowser</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">WebBrowser Aml.Editor.Plugin.AnimationClass.Webbrowser</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="ae2dd3c44c8e8a9cc4ecb11cb7ad79682"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#ae2dd3c44c8e8a9cc4ecb11cb7ad79682">◆ </a></span>words</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.AnimationClass.words</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr/>The documentation for this class was generated from the following file:<ul>
|
||||||
|
<li><a class="el" href="_animation_class_8cs.html">AnimationClass.cs</a></li>
|
||||||
|
</ul>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="namespace_aml.html">Aml</a></li><li class="navelem"><a class="el" href="namespace_aml_1_1_editor.html">Editor</a></li><li class="navelem"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Plugin</a></li><li class="navelem"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html">AnimationClass</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,20 @@
|
|||||||
|
var class_aml_1_1_editor_1_1_plugin_1_1_animation_class =
|
||||||
|
[
|
||||||
|
[ "AnimationClass", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a99e06693a64c2eecb54276b906d14822", null ],
|
||||||
|
[ "DispalySemanticBtn", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#aa7de242b566e80898c52fe89d19626b0", null ],
|
||||||
|
[ "ManualOpener", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a77d8bf72f7d54a50df736fee1006836d", null ],
|
||||||
|
[ "OpenFileDialog", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a4fba2da1c2015740334e10dd50d1fb4a", null ],
|
||||||
|
[ "OpenFileDialog", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#af622bb4ee8c59d14abad92dd8ceb976e", null ],
|
||||||
|
[ "OpenFileDialog", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#aac584071d94916c2df7d91bbe39e5c6c", null ],
|
||||||
|
[ "OpenFileDialog", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a9aecddc8211b6ef2cb45103ee8cee319", null ],
|
||||||
|
[ "WindowSizeChanger", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#ae9de03fc8ff4839dff7873a64d5eaf8c", null ],
|
||||||
|
[ "WindowSizeChanger", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#ad95b75f8f5095b88ef3aa75d92e25263", null ],
|
||||||
|
[ "ButtonNumber", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a60f3bd7a53a308a0963b9d603757c289", null ],
|
||||||
|
[ "dataGridView", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a30e0efbd0cfdcc718d2bb26f8dc3a0f8", null ],
|
||||||
|
[ "DisplayBtn", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a9c5863b36d871cca1a96d53be4637c65", null ],
|
||||||
|
[ "PanelNumber", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a978d71a487ceb1fab343b33afca66775", null ],
|
||||||
|
[ "PictureboxNumber", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a07f73e83f366c180d868edb155629349", null ],
|
||||||
|
[ "TextboxName", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a19dcafe11285ec11f235d3c84e765151", null ],
|
||||||
|
[ "Webbrowser", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#a3a43c6acd43cc44cd85ea42610db93e5", null ],
|
||||||
|
[ "words", "class_aml_1_1_editor_1_1_plugin_1_1_animation_class.html#ae2dd3c44c8e8a9cc4ecb11cb7ad79682", null ]
|
||||||
|
];
|
@ -0,0 +1,120 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Member List</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Aml.Editor.Plugin.AttachablesDataGridViewParameters Member List</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
|
||||||
|
<p>This is the complete list of members for <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html">Aml.Editor.Plugin.AttachablesDataGridViewParameters</a>, including all inherited members.</p>
|
||||||
|
<table class="directory">
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#ac066151417d31343474366e089519f83">AddToFile</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html">Aml.Editor.Plugin.AttachablesDataGridViewParameters</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#a58df9ca5564d2e6002e7616793fa03d2">AttachablesDataGridViewParameters</a>()</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html">Aml.Editor.Plugin.AttachablesDataGridViewParameters</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#a169521da74d35dad5bf31aa7073fcc86">AttachablesDataGridViewParameters</a>(string elementName, string filePath, bool addToFile)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html">Aml.Editor.Plugin.AttachablesDataGridViewParameters</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#aace740ed93ef1af8570d1cc2c244ad70">ElementName</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html">Aml.Editor.Plugin.AttachablesDataGridViewParameters</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#a9f5245fd7be3ec1af0400bc0280279c0">FilePath</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html">Aml.Editor.Plugin.AttachablesDataGridViewParameters</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#ac56d0c84695e18c0c8793ff63dff0644">ToString</a>()</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html">Aml.Editor.Plugin.AttachablesDataGridViewParameters</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
</table></div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,299 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Aml.Editor.Plugin.AttachablesDataGridViewParameters Class Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#pub-methods">Public Member Functions</a> |
|
||||||
|
<a href="#properties">Properties</a> |
|
||||||
|
<a href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters-members.html">List of all members</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Aml.Editor.Plugin.AttachablesDataGridViewParameters Class Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
|
||||||
|
Public Member Functions</h2></td></tr>
|
||||||
|
<tr class="memitem:a58df9ca5564d2e6002e7616793fa03d2"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#a58df9ca5564d2e6002e7616793fa03d2">AttachablesDataGridViewParameters</a> ()</td></tr>
|
||||||
|
<tr class="separator:a58df9ca5564d2e6002e7616793fa03d2"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a169521da74d35dad5bf31aa7073fcc86"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#a169521da74d35dad5bf31aa7073fcc86">AttachablesDataGridViewParameters</a> (string elementName, string filePath, bool addToFile)</td></tr>
|
||||||
|
<tr class="separator:a169521da74d35dad5bf31aa7073fcc86"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:ac56d0c84695e18c0c8793ff63dff0644"><td class="memItemLeft" align="right" valign="top">override string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#ac56d0c84695e18c0c8793ff63dff0644">ToString</a> ()</td></tr>
|
||||||
|
<tr class="separator:ac56d0c84695e18c0c8793ff63dff0644"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a>
|
||||||
|
Properties</h2></td></tr>
|
||||||
|
<tr class="memitem:aace740ed93ef1af8570d1cc2c244ad70"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#aace740ed93ef1af8570d1cc2c244ad70">ElementName</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:aace740ed93ef1af8570d1cc2c244ad70"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a9f5245fd7be3ec1af0400bc0280279c0"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#a9f5245fd7be3ec1af0400bc0280279c0">FilePath</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a9f5245fd7be3ec1af0400bc0280279c0"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:ac066151417d31343474366e089519f83"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#ac066151417d31343474366e089519f83">AddToFile</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:ac066151417d31343474366e089519f83"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
|
||||||
|
<a id="a58df9ca5564d2e6002e7616793fa03d2"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a58df9ca5564d2e6002e7616793fa03d2">◆ </a></span>AttachablesDataGridViewParameters() <span class="overload">[1/2]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">Aml.Editor.Plugin.AttachablesDataGridViewParameters.AttachablesDataGridViewParameters </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramname"></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a169521da74d35dad5bf31aa7073fcc86"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a169521da74d35dad5bf31aa7073fcc86">◆ </a></span>AttachablesDataGridViewParameters() <span class="overload">[2/2]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">Aml.Editor.Plugin.AttachablesDataGridViewParameters.AttachablesDataGridViewParameters </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>elementName</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>filePath</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">bool </td>
|
||||||
|
<td class="paramname"><em>addToFile</em> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>)</td>
|
||||||
|
<td></td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="groupheader">Member Function Documentation</h2>
|
||||||
|
<a id="ac56d0c84695e18c0c8793ff63dff0644"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#ac56d0c84695e18c0c8793ff63dff0644">◆ </a></span>ToString()</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">override string Aml.Editor.Plugin.AttachablesDataGridViewParameters.ToString </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramname"></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="groupheader">Property Documentation</h2>
|
||||||
|
<a id="ac066151417d31343474366e089519f83"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#ac066151417d31343474366e089519f83">◆ </a></span>AddToFile</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.AttachablesDataGridViewParameters.AddToFile</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="aace740ed93ef1af8570d1cc2c244ad70"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#aace740ed93ef1af8570d1cc2c244ad70">◆ </a></span>ElementName</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.AttachablesDataGridViewParameters.ElementName</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a9f5245fd7be3ec1af0400bc0280279c0"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a9f5245fd7be3ec1af0400bc0280279c0">◆ </a></span>FilePath</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.AttachablesDataGridViewParameters.FilePath</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr/>The documentation for this class was generated from the following file:<ul>
|
||||||
|
<li><a class="el" href="_m_w_device_8cs.html">MWDevice.cs</a></li>
|
||||||
|
</ul>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="namespace_aml.html">Aml</a></li><li class="navelem"><a class="el" href="namespace_aml_1_1_editor.html">Editor</a></li><li class="navelem"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Plugin</a></li><li class="navelem"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html">AttachablesDataGridViewParameters</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,9 @@
|
|||||||
|
var class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters =
|
||||||
|
[
|
||||||
|
[ "AttachablesDataGridViewParameters", "class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#a58df9ca5564d2e6002e7616793fa03d2", null ],
|
||||||
|
[ "AttachablesDataGridViewParameters", "class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#a169521da74d35dad5bf31aa7073fcc86", null ],
|
||||||
|
[ "ToString", "class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#ac56d0c84695e18c0c8793ff63dff0644", null ],
|
||||||
|
[ "AddToFile", "class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#ac066151417d31343474366e089519f83", null ],
|
||||||
|
[ "ElementName", "class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#aace740ed93ef1af8570d1cc2c244ad70", null ],
|
||||||
|
[ "FilePath", "class_aml_1_1_editor_1_1_plugin_1_1_attachables_data_grid_view_parameters.html#a9f5245fd7be3ec1af0400bc0280279c0", null ]
|
||||||
|
];
|
@ -0,0 +1,118 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Member List</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Aml.Editor.Plugin.AutomationMLDataTables Member List</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
|
||||||
|
<p>This is the complete list of members for <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html">Aml.Editor.Plugin.AutomationMLDataTables</a>, including all inherited members.</p>
|
||||||
|
<table class="directory">
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html#a504d5b014d4b10a3762a17b2b6b2ed6a">AMLAttributeParameters</a>()</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html">Aml.Editor.Plugin.AutomationMLDataTables</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html#a458fec8a343a700daeaa499ce499b5f3">CheckForSameNameTextOfInternalAttributes</a>(DataTable dataRowName, DataGridView dataGridViewName, KeyValuePair< string, List< ClassOfListsFromReferencefile >> pair)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html">Aml.Editor.Plugin.AutomationMLDataTables</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html#a09ab6e8a0fc0d12b1e1f681e22b237c9">CreateDataTableWithColumns</a>(DataTable dataRowName, DataGridView dataGridViewName, KeyValuePair< string, List< List< ClassOfListsFromReferencefile >>> pair)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html">Aml.Editor.Plugin.AutomationMLDataTables</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html#afb66a5f37e2ade40f3f73967cfa3b65a">CreateDataTableWithColumns</a>(DataTable dataRowName, DataGridView dataGridViewName, KeyValuePair< string, List< ElectricalInterfaceParameters >> pair)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html">Aml.Editor.Plugin.AutomationMLDataTables</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
</table></div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,282 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Aml.Editor.Plugin.AutomationMLDataTables Class Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#pub-methods">Public Member Functions</a> |
|
||||||
|
<a href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables-members.html">List of all members</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Aml.Editor.Plugin.AutomationMLDataTables Class Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
|
||||||
|
Public Member Functions</h2></td></tr>
|
||||||
|
<tr class="memitem:a504d5b014d4b10a3762a17b2b6b2ed6a"><td class="memItemLeft" align="right" valign="top">DataTable </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html#a504d5b014d4b10a3762a17b2b6b2ed6a">AMLAttributeParameters</a> ()</td></tr>
|
||||||
|
<tr class="separator:a504d5b014d4b10a3762a17b2b6b2ed6a"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a09ab6e8a0fc0d12b1e1f681e22b237c9"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html#a09ab6e8a0fc0d12b1e1f681e22b237c9">CreateDataTableWithColumns</a> (DataTable dataRowName, DataGridView dataGridViewName, KeyValuePair< string, List< List< <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">ClassOfListsFromReferencefile</a> >>> pair)</td></tr>
|
||||||
|
<tr class="separator:a09ab6e8a0fc0d12b1e1f681e22b237c9"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a458fec8a343a700daeaa499ce499b5f3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html#a458fec8a343a700daeaa499ce499b5f3">CheckForSameNameTextOfInternalAttributes</a> (DataTable dataRowName, DataGridView dataGridViewName, KeyValuePair< string, List< <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">ClassOfListsFromReferencefile</a> >> pair)</td></tr>
|
||||||
|
<tr class="separator:a458fec8a343a700daeaa499ce499b5f3"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:afb66a5f37e2ade40f3f73967cfa3b65a"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html#afb66a5f37e2ade40f3f73967cfa3b65a">CreateDataTableWithColumns</a> (DataTable dataRowName, DataGridView dataGridViewName, KeyValuePair< string, List< <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_electrical_interface_parameters.html">ElectricalInterfaceParameters</a> >> pair)</td></tr>
|
||||||
|
<tr class="separator:afb66a5f37e2ade40f3f73967cfa3b65a"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
<h2 class="groupheader">Member Function Documentation</h2>
|
||||||
|
<a id="a504d5b014d4b10a3762a17b2b6b2ed6a"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a504d5b014d4b10a3762a17b2b6b2ed6a">◆ </a></span>AMLAttributeParameters()</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">DataTable Aml.Editor.Plugin.AutomationMLDataTables.AMLAttributeParameters </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramname"></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a458fec8a343a700daeaa499ce499b5f3"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a458fec8a343a700daeaa499ce499b5f3">◆ </a></span>CheckForSameNameTextOfInternalAttributes()</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">void Aml.Editor.Plugin.AutomationMLDataTables.CheckForSameNameTextOfInternalAttributes </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">DataTable </td>
|
||||||
|
<td class="paramname"><em>dataRowName</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">DataGridView </td>
|
||||||
|
<td class="paramname"><em>dataGridViewName</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">KeyValuePair< string, List< <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">ClassOfListsFromReferencefile</a> >> </td>
|
||||||
|
<td class="paramname"><em>pair</em> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>)</td>
|
||||||
|
<td></td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="afb66a5f37e2ade40f3f73967cfa3b65a"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#afb66a5f37e2ade40f3f73967cfa3b65a">◆ </a></span>CreateDataTableWithColumns() <span class="overload">[1/2]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">void Aml.Editor.Plugin.AutomationMLDataTables.CreateDataTableWithColumns </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">DataTable </td>
|
||||||
|
<td class="paramname"><em>dataRowName</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">DataGridView </td>
|
||||||
|
<td class="paramname"><em>dataGridViewName</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">KeyValuePair< string, List< <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_electrical_interface_parameters.html">ElectricalInterfaceParameters</a> >> </td>
|
||||||
|
<td class="paramname"><em>pair</em> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>)</td>
|
||||||
|
<td></td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a09ab6e8a0fc0d12b1e1f681e22b237c9"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a09ab6e8a0fc0d12b1e1f681e22b237c9">◆ </a></span>CreateDataTableWithColumns() <span class="overload">[2/2]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">void Aml.Editor.Plugin.AutomationMLDataTables.CreateDataTableWithColumns </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">DataTable </td>
|
||||||
|
<td class="paramname"><em>dataRowName</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">DataGridView </td>
|
||||||
|
<td class="paramname"><em>dataGridViewName</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">KeyValuePair< string, List< List< <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">ClassOfListsFromReferencefile</a> >>> </td>
|
||||||
|
<td class="paramname"><em>pair</em> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>)</td>
|
||||||
|
<td></td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr/>The documentation for this class was generated from the following file:<ul>
|
||||||
|
<li><a class="el" href="_automation_m_l_data_tables_8cs.html">AutomationMLDataTables.cs</a></li>
|
||||||
|
</ul>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="namespace_aml.html">Aml</a></li><li class="navelem"><a class="el" href="namespace_aml_1_1_editor.html">Editor</a></li><li class="navelem"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Plugin</a></li><li class="navelem"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html">AutomationMLDataTables</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,7 @@
|
|||||||
|
var class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables =
|
||||||
|
[
|
||||||
|
[ "AMLAttributeParameters", "class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html#a504d5b014d4b10a3762a17b2b6b2ed6a", null ],
|
||||||
|
[ "CheckForSameNameTextOfInternalAttributes", "class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html#a458fec8a343a700daeaa499ce499b5f3", null ],
|
||||||
|
[ "CreateDataTableWithColumns", "class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html#afb66a5f37e2ade40f3f73967cfa3b65a", null ],
|
||||||
|
[ "CreateDataTableWithColumns", "class_aml_1_1_editor_1_1_plugin_1_1_automation_m_l_data_tables.html#a09ab6e8a0fc0d12b1e1f681e22b237c9", null ]
|
||||||
|
];
|
@ -0,0 +1,129 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Member List</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Aml.Editor.Plugin.ClassOfListsFromDataGridViews Member List</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
|
||||||
|
<p>This is the complete list of members for <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a>, including all inherited members.</p>
|
||||||
|
<table class="directory">
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a2da0dffa5a85f93c37da9b7c284ffc33">AttributePath</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a0e8a3323743c15f0d7a391d440214d8a">ClassOfListsFromDataGridViews</a>()</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a88d3c0088d5f28a287ca5531a153ec0b">ClassOfListsFromDataGridViews</a>(string name, string value, string _default, string unit, string reference, string description, string copyRight, string semantic, string attributePath, string refBaseClassPath, string id, string referencedClassName)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a97aa6ce9a7458c216785837491325e9d">CopyRight</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#ad3b50c5b8cc491af905f895449cc3ab2">Default</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a6baeec084c45f3c534c3d99383ec5611">Description</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#adc03aaee82e06b704b1c350a6833f611">ID</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a2b05161d540d7cd91ae360c5d3ce931d">Name</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a24c19702edd78b6628d70b516c6e6ab8">RefBaseClassPath</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a16935dd08fa0c1b25410b7297aa5760c">Reference</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a168e93de06adae33dd337416674d98d4">ReferencedClassName</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#add70e060fa6395e05d9f60443304b7dd">Semantic</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a44a20c90a03807c981772a574a1d9eca">ToString</a>()</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a7be0e6cafa4b934c86e6a0d5c44ee8cb">Unit</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a75676971f172722b3dd7a99bdf2f8b8a">Value</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">Aml.Editor.Plugin.ClassOfListsFromDataGridViews</a></td><td class="entry"></td></tr>
|
||||||
|
</table></div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,569 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Aml.Editor.Plugin.ClassOfListsFromDataGridViews Class Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#pub-methods">Public Member Functions</a> |
|
||||||
|
<a href="#properties">Properties</a> |
|
||||||
|
<a href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views-members.html">List of all members</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Aml.Editor.Plugin.ClassOfListsFromDataGridViews Class Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
|
||||||
|
Public Member Functions</h2></td></tr>
|
||||||
|
<tr class="memitem:a0e8a3323743c15f0d7a391d440214d8a"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a0e8a3323743c15f0d7a391d440214d8a">ClassOfListsFromDataGridViews</a> ()</td></tr>
|
||||||
|
<tr class="separator:a0e8a3323743c15f0d7a391d440214d8a"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a88d3c0088d5f28a287ca5531a153ec0b"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a88d3c0088d5f28a287ca5531a153ec0b">ClassOfListsFromDataGridViews</a> (string name, string value, string _default, string unit, string reference, string description, string copyRight, string semantic, string attributePath, string refBaseClassPath, string id, string referencedClassName)</td></tr>
|
||||||
|
<tr class="separator:a88d3c0088d5f28a287ca5531a153ec0b"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a44a20c90a03807c981772a574a1d9eca"><td class="memItemLeft" align="right" valign="top">override string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a44a20c90a03807c981772a574a1d9eca">ToString</a> ()</td></tr>
|
||||||
|
<tr class="separator:a44a20c90a03807c981772a574a1d9eca"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a>
|
||||||
|
Properties</h2></td></tr>
|
||||||
|
<tr class="memitem:a2b05161d540d7cd91ae360c5d3ce931d"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a2b05161d540d7cd91ae360c5d3ce931d">Name</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a2b05161d540d7cd91ae360c5d3ce931d"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a75676971f172722b3dd7a99bdf2f8b8a"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a75676971f172722b3dd7a99bdf2f8b8a">Value</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a75676971f172722b3dd7a99bdf2f8b8a"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:ad3b50c5b8cc491af905f895449cc3ab2"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#ad3b50c5b8cc491af905f895449cc3ab2">Default</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:ad3b50c5b8cc491af905f895449cc3ab2"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a7be0e6cafa4b934c86e6a0d5c44ee8cb"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a7be0e6cafa4b934c86e6a0d5c44ee8cb">Unit</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a7be0e6cafa4b934c86e6a0d5c44ee8cb"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:add70e060fa6395e05d9f60443304b7dd"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#add70e060fa6395e05d9f60443304b7dd">Semantic</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:add70e060fa6395e05d9f60443304b7dd"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a16935dd08fa0c1b25410b7297aa5760c"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a16935dd08fa0c1b25410b7297aa5760c">Reference</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a16935dd08fa0c1b25410b7297aa5760c"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a6baeec084c45f3c534c3d99383ec5611"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a6baeec084c45f3c534c3d99383ec5611">Description</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a6baeec084c45f3c534c3d99383ec5611"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a97aa6ce9a7458c216785837491325e9d"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a97aa6ce9a7458c216785837491325e9d">CopyRight</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a97aa6ce9a7458c216785837491325e9d"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a2da0dffa5a85f93c37da9b7c284ffc33"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a2da0dffa5a85f93c37da9b7c284ffc33">AttributePath</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a2da0dffa5a85f93c37da9b7c284ffc33"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a24c19702edd78b6628d70b516c6e6ab8"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a24c19702edd78b6628d70b516c6e6ab8">RefBaseClassPath</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a24c19702edd78b6628d70b516c6e6ab8"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:adc03aaee82e06b704b1c350a6833f611"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#adc03aaee82e06b704b1c350a6833f611">ID</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:adc03aaee82e06b704b1c350a6833f611"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a168e93de06adae33dd337416674d98d4"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a168e93de06adae33dd337416674d98d4">ReferencedClassName</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a168e93de06adae33dd337416674d98d4"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
|
||||||
|
<a id="a0e8a3323743c15f0d7a391d440214d8a"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a0e8a3323743c15f0d7a391d440214d8a">◆ </a></span>ClassOfListsFromDataGridViews() <span class="overload">[1/2]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">Aml.Editor.Plugin.ClassOfListsFromDataGridViews.ClassOfListsFromDataGridViews </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramname"></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a88d3c0088d5f28a287ca5531a153ec0b"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a88d3c0088d5f28a287ca5531a153ec0b">◆ </a></span>ClassOfListsFromDataGridViews() <span class="overload">[2/2]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">Aml.Editor.Plugin.ClassOfListsFromDataGridViews.ClassOfListsFromDataGridViews </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>name</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>value</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>_default</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>unit</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>reference</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>description</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>copyRight</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>semantic</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>attributePath</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>refBaseClassPath</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>id</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>referencedClassName</em> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>)</td>
|
||||||
|
<td></td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="groupheader">Member Function Documentation</h2>
|
||||||
|
<a id="a44a20c90a03807c981772a574a1d9eca"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a44a20c90a03807c981772a574a1d9eca">◆ </a></span>ToString()</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">override string Aml.Editor.Plugin.ClassOfListsFromDataGridViews.ToString </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramname"></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="groupheader">Property Documentation</h2>
|
||||||
|
<a id="a2da0dffa5a85f93c37da9b7c284ffc33"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a2da0dffa5a85f93c37da9b7c284ffc33">◆ </a></span>AttributePath</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromDataGridViews.AttributePath</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a97aa6ce9a7458c216785837491325e9d"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a97aa6ce9a7458c216785837491325e9d">◆ </a></span>CopyRight</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromDataGridViews.CopyRight</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="ad3b50c5b8cc491af905f895449cc3ab2"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#ad3b50c5b8cc491af905f895449cc3ab2">◆ </a></span>Default</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromDataGridViews.Default</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a6baeec084c45f3c534c3d99383ec5611"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a6baeec084c45f3c534c3d99383ec5611">◆ </a></span>Description</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromDataGridViews.Description</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="adc03aaee82e06b704b1c350a6833f611"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#adc03aaee82e06b704b1c350a6833f611">◆ </a></span>ID</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromDataGridViews.ID</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a2b05161d540d7cd91ae360c5d3ce931d"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a2b05161d540d7cd91ae360c5d3ce931d">◆ </a></span>Name</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromDataGridViews.Name</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a24c19702edd78b6628d70b516c6e6ab8"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a24c19702edd78b6628d70b516c6e6ab8">◆ </a></span>RefBaseClassPath</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromDataGridViews.RefBaseClassPath</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a16935dd08fa0c1b25410b7297aa5760c"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a16935dd08fa0c1b25410b7297aa5760c">◆ </a></span>Reference</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromDataGridViews.Reference</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a168e93de06adae33dd337416674d98d4"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a168e93de06adae33dd337416674d98d4">◆ </a></span>ReferencedClassName</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromDataGridViews.ReferencedClassName</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="add70e060fa6395e05d9f60443304b7dd"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#add70e060fa6395e05d9f60443304b7dd">◆ </a></span>Semantic</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromDataGridViews.Semantic</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a7be0e6cafa4b934c86e6a0d5c44ee8cb"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a7be0e6cafa4b934c86e6a0d5c44ee8cb">◆ </a></span>Unit</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromDataGridViews.Unit</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a75676971f172722b3dd7a99bdf2f8b8a"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a75676971f172722b3dd7a99bdf2f8b8a">◆ </a></span>Value</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromDataGridViews.Value</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr/>The documentation for this class was generated from the following file:<ul>
|
||||||
|
<li><a class="el" href="_class_of_lists_from_data_grid_views_8cs.html">ClassOfListsFromDataGridViews.cs</a></li>
|
||||||
|
</ul>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="namespace_aml.html">Aml</a></li><li class="navelem"><a class="el" href="namespace_aml_1_1_editor.html">Editor</a></li><li class="navelem"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Plugin</a></li><li class="navelem"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html">ClassOfListsFromDataGridViews</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,18 @@
|
|||||||
|
var class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views =
|
||||||
|
[
|
||||||
|
[ "ClassOfListsFromDataGridViews", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a0e8a3323743c15f0d7a391d440214d8a", null ],
|
||||||
|
[ "ClassOfListsFromDataGridViews", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a88d3c0088d5f28a287ca5531a153ec0b", null ],
|
||||||
|
[ "ToString", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a44a20c90a03807c981772a574a1d9eca", null ],
|
||||||
|
[ "AttributePath", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a2da0dffa5a85f93c37da9b7c284ffc33", null ],
|
||||||
|
[ "CopyRight", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a97aa6ce9a7458c216785837491325e9d", null ],
|
||||||
|
[ "Default", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#ad3b50c5b8cc491af905f895449cc3ab2", null ],
|
||||||
|
[ "Description", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a6baeec084c45f3c534c3d99383ec5611", null ],
|
||||||
|
[ "ID", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#adc03aaee82e06b704b1c350a6833f611", null ],
|
||||||
|
[ "Name", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a2b05161d540d7cd91ae360c5d3ce931d", null ],
|
||||||
|
[ "RefBaseClassPath", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a24c19702edd78b6628d70b516c6e6ab8", null ],
|
||||||
|
[ "Reference", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a16935dd08fa0c1b25410b7297aa5760c", null ],
|
||||||
|
[ "ReferencedClassName", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a168e93de06adae33dd337416674d98d4", null ],
|
||||||
|
[ "Semantic", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#add70e060fa6395e05d9f60443304b7dd", null ],
|
||||||
|
[ "Unit", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a7be0e6cafa4b934c86e6a0d5c44ee8cb", null ],
|
||||||
|
[ "Value", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_data_grid_views.html#a75676971f172722b3dd7a99bdf2f8b8a", null ]
|
||||||
|
];
|
@ -0,0 +1,132 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Member List</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Aml.Editor.Plugin.ClassOfListsFromReferencefile Member List</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
|
||||||
|
<p>This is the complete list of members for <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a>, including all inherited members.</p>
|
||||||
|
<table class="directory">
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a9750122c6e7b78f3a21fc4e89da8d7bc">AttributePath</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a578795b95ac5f0363dd0f21153e49efb">ClassOfListsFromReferencefile</a>()</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a54e9f428292f5dd6a6e9b5b335e00a6a">ClassOfListsFromReferencefile</a>(string name, string value, string _default, string unit, string reference, string description, string copyRight, string semantic, string attributePath, string refBaseClassPath, string id, string referencedClassName, CAEXSequence< RefSemanticType > refSemanticList, string supportesRoleClassType, string dataType)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#ac76172d9552575c6f519859248c60788">CopyRight</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a12110843109248f422b15548d9c3c1d2">DataType</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#ae77f5e7de1578ebd1d13fc1875b00f2d">Default</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a05fc8dcadd1ee497fb5211428585312e">Description</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a349e791c119e8a3e4afa9a9b9ccf46cc">ID</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a615ebad7839429334256ad90d985b1e3">Name</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a95d7023958dcaba928b0282405f0203b">RefBaseClassPath</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#af7f0d4fd668472123a6aa76ec3d41bdc">Reference</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a009c972b83ad9845970ac9fede52fbad">ReferencedClassName</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a17b87abdd2b4e792aeff7d8b3d0cdfb4">RefSemanticList</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a3dc85cafdc162bfdedba8720b654ee3f">Semantic</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#aa20d2e52af2ab5bcddd720acb789b2d0">SupportesRoleClassType</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a7d76b5c340287155248d3cd6275585b0">ToString</a>()</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a9277f25074496cfaff11f041441e1ec9">Unit</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#ac58111d02e5a620cbd19818d544442ba">Value</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">Aml.Editor.Plugin.ClassOfListsFromReferencefile</a></td><td class="entry"></td></tr>
|
||||||
|
</table></div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,659 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Aml.Editor.Plugin.ClassOfListsFromReferencefile Class Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#pub-methods">Public Member Functions</a> |
|
||||||
|
<a href="#properties">Properties</a> |
|
||||||
|
<a href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile-members.html">List of all members</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Aml.Editor.Plugin.ClassOfListsFromReferencefile Class Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
|
||||||
|
Public Member Functions</h2></td></tr>
|
||||||
|
<tr class="memitem:a578795b95ac5f0363dd0f21153e49efb"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a578795b95ac5f0363dd0f21153e49efb">ClassOfListsFromReferencefile</a> ()</td></tr>
|
||||||
|
<tr class="separator:a578795b95ac5f0363dd0f21153e49efb"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a54e9f428292f5dd6a6e9b5b335e00a6a"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a54e9f428292f5dd6a6e9b5b335e00a6a">ClassOfListsFromReferencefile</a> (string name, string value, string _default, string unit, string reference, string description, string copyRight, string semantic, string attributePath, string refBaseClassPath, string id, string referencedClassName, CAEXSequence< RefSemanticType > refSemanticList, string supportesRoleClassType, string dataType)</td></tr>
|
||||||
|
<tr class="separator:a54e9f428292f5dd6a6e9b5b335e00a6a"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a7d76b5c340287155248d3cd6275585b0"><td class="memItemLeft" align="right" valign="top">override string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a7d76b5c340287155248d3cd6275585b0">ToString</a> ()</td></tr>
|
||||||
|
<tr class="separator:a7d76b5c340287155248d3cd6275585b0"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a>
|
||||||
|
Properties</h2></td></tr>
|
||||||
|
<tr class="memitem:a615ebad7839429334256ad90d985b1e3"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a615ebad7839429334256ad90d985b1e3">Name</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a615ebad7839429334256ad90d985b1e3"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:ac58111d02e5a620cbd19818d544442ba"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#ac58111d02e5a620cbd19818d544442ba">Value</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:ac58111d02e5a620cbd19818d544442ba"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:ae77f5e7de1578ebd1d13fc1875b00f2d"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#ae77f5e7de1578ebd1d13fc1875b00f2d">Default</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:ae77f5e7de1578ebd1d13fc1875b00f2d"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a9277f25074496cfaff11f041441e1ec9"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a9277f25074496cfaff11f041441e1ec9">Unit</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a9277f25074496cfaff11f041441e1ec9"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a3dc85cafdc162bfdedba8720b654ee3f"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a3dc85cafdc162bfdedba8720b654ee3f">Semantic</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a3dc85cafdc162bfdedba8720b654ee3f"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:af7f0d4fd668472123a6aa76ec3d41bdc"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#af7f0d4fd668472123a6aa76ec3d41bdc">Reference</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:af7f0d4fd668472123a6aa76ec3d41bdc"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a05fc8dcadd1ee497fb5211428585312e"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a05fc8dcadd1ee497fb5211428585312e">Description</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a05fc8dcadd1ee497fb5211428585312e"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:ac76172d9552575c6f519859248c60788"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#ac76172d9552575c6f519859248c60788">CopyRight</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:ac76172d9552575c6f519859248c60788"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a9750122c6e7b78f3a21fc4e89da8d7bc"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a9750122c6e7b78f3a21fc4e89da8d7bc">AttributePath</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a9750122c6e7b78f3a21fc4e89da8d7bc"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a95d7023958dcaba928b0282405f0203b"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a95d7023958dcaba928b0282405f0203b">RefBaseClassPath</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a95d7023958dcaba928b0282405f0203b"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a349e791c119e8a3e4afa9a9b9ccf46cc"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a349e791c119e8a3e4afa9a9b9ccf46cc">ID</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a349e791c119e8a3e4afa9a9b9ccf46cc"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a009c972b83ad9845970ac9fede52fbad"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a009c972b83ad9845970ac9fede52fbad">ReferencedClassName</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a009c972b83ad9845970ac9fede52fbad"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a17b87abdd2b4e792aeff7d8b3d0cdfb4"><td class="memItemLeft" align="right" valign="top">CAEXSequence< RefSemanticType > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a17b87abdd2b4e792aeff7d8b3d0cdfb4">RefSemanticList</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a17b87abdd2b4e792aeff7d8b3d0cdfb4"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:aa20d2e52af2ab5bcddd720acb789b2d0"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#aa20d2e52af2ab5bcddd720acb789b2d0">SupportesRoleClassType</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:aa20d2e52af2ab5bcddd720acb789b2d0"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a12110843109248f422b15548d9c3c1d2"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a12110843109248f422b15548d9c3c1d2">DataType</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:a12110843109248f422b15548d9c3c1d2"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
|
||||||
|
<a id="a578795b95ac5f0363dd0f21153e49efb"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a578795b95ac5f0363dd0f21153e49efb">◆ </a></span>ClassOfListsFromReferencefile() <span class="overload">[1/2]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">Aml.Editor.Plugin.ClassOfListsFromReferencefile.ClassOfListsFromReferencefile </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramname"></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a54e9f428292f5dd6a6e9b5b335e00a6a"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a54e9f428292f5dd6a6e9b5b335e00a6a">◆ </a></span>ClassOfListsFromReferencefile() <span class="overload">[2/2]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">Aml.Editor.Plugin.ClassOfListsFromReferencefile.ClassOfListsFromReferencefile </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>name</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>value</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>_default</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>unit</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>reference</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>description</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>copyRight</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>semantic</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>attributePath</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>refBaseClassPath</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>id</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>referencedClassName</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">CAEXSequence< RefSemanticType > </td>
|
||||||
|
<td class="paramname"><em>refSemanticList</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>supportesRoleClassType</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>dataType</em> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>)</td>
|
||||||
|
<td></td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="groupheader">Member Function Documentation</h2>
|
||||||
|
<a id="a7d76b5c340287155248d3cd6275585b0"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a7d76b5c340287155248d3cd6275585b0">◆ </a></span>ToString()</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">override string Aml.Editor.Plugin.ClassOfListsFromReferencefile.ToString </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramname"></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="groupheader">Property Documentation</h2>
|
||||||
|
<a id="a9750122c6e7b78f3a21fc4e89da8d7bc"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a9750122c6e7b78f3a21fc4e89da8d7bc">◆ </a></span>AttributePath</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromReferencefile.AttributePath</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="ac76172d9552575c6f519859248c60788"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#ac76172d9552575c6f519859248c60788">◆ </a></span>CopyRight</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromReferencefile.CopyRight</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a12110843109248f422b15548d9c3c1d2"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a12110843109248f422b15548d9c3c1d2">◆ </a></span>DataType</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromReferencefile.DataType</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="ae77f5e7de1578ebd1d13fc1875b00f2d"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#ae77f5e7de1578ebd1d13fc1875b00f2d">◆ </a></span>Default</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromReferencefile.Default</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a05fc8dcadd1ee497fb5211428585312e"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a05fc8dcadd1ee497fb5211428585312e">◆ </a></span>Description</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromReferencefile.Description</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a349e791c119e8a3e4afa9a9b9ccf46cc"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a349e791c119e8a3e4afa9a9b9ccf46cc">◆ </a></span>ID</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromReferencefile.ID</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a615ebad7839429334256ad90d985b1e3"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a615ebad7839429334256ad90d985b1e3">◆ </a></span>Name</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromReferencefile.Name</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a95d7023958dcaba928b0282405f0203b"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a95d7023958dcaba928b0282405f0203b">◆ </a></span>RefBaseClassPath</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromReferencefile.RefBaseClassPath</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="af7f0d4fd668472123a6aa76ec3d41bdc"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#af7f0d4fd668472123a6aa76ec3d41bdc">◆ </a></span>Reference</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromReferencefile.Reference</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a009c972b83ad9845970ac9fede52fbad"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a009c972b83ad9845970ac9fede52fbad">◆ </a></span>ReferencedClassName</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromReferencefile.ReferencedClassName</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a17b87abdd2b4e792aeff7d8b3d0cdfb4"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a17b87abdd2b4e792aeff7d8b3d0cdfb4">◆ </a></span>RefSemanticList</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">CAEXSequence<RefSemanticType> Aml.Editor.Plugin.ClassOfListsFromReferencefile.RefSemanticList</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a3dc85cafdc162bfdedba8720b654ee3f"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a3dc85cafdc162bfdedba8720b654ee3f">◆ </a></span>Semantic</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromReferencefile.Semantic</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="aa20d2e52af2ab5bcddd720acb789b2d0"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#aa20d2e52af2ab5bcddd720acb789b2d0">◆ </a></span>SupportesRoleClassType</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromReferencefile.SupportesRoleClassType</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a9277f25074496cfaff11f041441e1ec9"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a9277f25074496cfaff11f041441e1ec9">◆ </a></span>Unit</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromReferencefile.Unit</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="ac58111d02e5a620cbd19818d544442ba"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#ac58111d02e5a620cbd19818d544442ba">◆ </a></span>Value</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.ClassOfListsFromReferencefile.Value</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr/>The documentation for this class was generated from the following file:<ul>
|
||||||
|
<li><a class="el" href="_class_of_lists_from_referencefile_8cs.html">ClassOfListsFromReferencefile.cs</a></li>
|
||||||
|
</ul>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="namespace_aml.html">Aml</a></li><li class="navelem"><a class="el" href="namespace_aml_1_1_editor.html">Editor</a></li><li class="navelem"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Plugin</a></li><li class="navelem"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html">ClassOfListsFromReferencefile</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,21 @@
|
|||||||
|
var class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile =
|
||||||
|
[
|
||||||
|
[ "ClassOfListsFromReferencefile", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a578795b95ac5f0363dd0f21153e49efb", null ],
|
||||||
|
[ "ClassOfListsFromReferencefile", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a54e9f428292f5dd6a6e9b5b335e00a6a", null ],
|
||||||
|
[ "ToString", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a7d76b5c340287155248d3cd6275585b0", null ],
|
||||||
|
[ "AttributePath", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a9750122c6e7b78f3a21fc4e89da8d7bc", null ],
|
||||||
|
[ "CopyRight", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#ac76172d9552575c6f519859248c60788", null ],
|
||||||
|
[ "DataType", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a12110843109248f422b15548d9c3c1d2", null ],
|
||||||
|
[ "Default", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#ae77f5e7de1578ebd1d13fc1875b00f2d", null ],
|
||||||
|
[ "Description", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a05fc8dcadd1ee497fb5211428585312e", null ],
|
||||||
|
[ "ID", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a349e791c119e8a3e4afa9a9b9ccf46cc", null ],
|
||||||
|
[ "Name", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a615ebad7839429334256ad90d985b1e3", null ],
|
||||||
|
[ "RefBaseClassPath", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a95d7023958dcaba928b0282405f0203b", null ],
|
||||||
|
[ "Reference", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#af7f0d4fd668472123a6aa76ec3d41bdc", null ],
|
||||||
|
[ "ReferencedClassName", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a009c972b83ad9845970ac9fede52fbad", null ],
|
||||||
|
[ "RefSemanticList", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a17b87abdd2b4e792aeff7d8b3d0cdfb4", null ],
|
||||||
|
[ "Semantic", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a3dc85cafdc162bfdedba8720b654ee3f", null ],
|
||||||
|
[ "SupportesRoleClassType", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#aa20d2e52af2ab5bcddd720acb789b2d0", null ],
|
||||||
|
[ "Unit", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#a9277f25074496cfaff11f041441e1ec9", null ],
|
||||||
|
[ "Value", "class_aml_1_1_editor_1_1_plugin_1_1_class_of_lists_from_referencefile.html#ac58111d02e5a620cbd19818d544442ba", null ]
|
||||||
|
];
|
@ -0,0 +1,120 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Member List</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Aml.Editor.Plugin.DataGridParameters Member List</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
|
||||||
|
<p>This is the complete list of members for <a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html">Aml.Editor.Plugin.DataGridParameters</a>, including all inherited members.</p>
|
||||||
|
<table class="directory">
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#ab2a0e0dd77ffa6d715d70a5e112d3903">Attributes</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html">Aml.Editor.Plugin.DataGridParameters</a></td><td class="entry"></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#adddca2861fb0e123d8d2c02a296cee15">DataGridParameters</a>()</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html">Aml.Editor.Plugin.DataGridParameters</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#a8eaebdff6d41dea7a8b7033674d1f981">DataGridParameters</a>(string refSemantic, string attributes, string value)</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html">Aml.Editor.Plugin.DataGridParameters</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#abbec7835f2cbd9be8123ddd041883ad2">RefSemantics</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html">Aml.Editor.Plugin.DataGridParameters</a></td><td class="entry"></td></tr>
|
||||||
|
<tr class="even"><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#a4e5626067de539c4e0d8c7c642ebb12a">ToString</a>()</td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html">Aml.Editor.Plugin.DataGridParameters</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
|
||||||
|
<tr><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#aa56c2203849aa594e43637830a599014">Values</a></td><td class="entry"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html">Aml.Editor.Plugin.DataGridParameters</a></td><td class="entry"></td></tr>
|
||||||
|
</table></div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,299 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.8.17"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Modeling Wizard Plugin for AutomationML Editor: Aml.Editor.Plugin.DataGridParameters Class Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="resize.js"></script>
|
||||||
|
<script type="text/javascript" src="navtreedata.js"></script>
|
||||||
|
<script type="text/javascript" src="navtree.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td id="projectalign" style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">Modeling Wizard Plugin for AutomationML Editor
|
||||||
|
 <span id="projectnumber">Version1.0.0.1</span>
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Plugin</div>
|
||||||
|
</td>
|
||||||
|
<td> <div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.8.17 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
||||||
|
<div id="nav-tree">
|
||||||
|
<div id="nav-tree-contents">
|
||||||
|
<div id="nav-sync" class="sync"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="splitbar" style="-moz-user-select:none;"
|
||||||
|
class="ui-resizable-handle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||||
|
$(document).ready(function(){initNavTree('class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html',''); initResizable(); });
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="doc-content">
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#pub-methods">Public Member Functions</a> |
|
||||||
|
<a href="#properties">Properties</a> |
|
||||||
|
<a href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters-members.html">List of all members</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Aml.Editor.Plugin.DataGridParameters Class Reference</div> </div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
|
||||||
|
Public Member Functions</h2></td></tr>
|
||||||
|
<tr class="memitem:adddca2861fb0e123d8d2c02a296cee15"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#adddca2861fb0e123d8d2c02a296cee15">DataGridParameters</a> ()</td></tr>
|
||||||
|
<tr class="separator:adddca2861fb0e123d8d2c02a296cee15"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a8eaebdff6d41dea7a8b7033674d1f981"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#a8eaebdff6d41dea7a8b7033674d1f981">DataGridParameters</a> (string refSemantic, string attributes, string value)</td></tr>
|
||||||
|
<tr class="separator:a8eaebdff6d41dea7a8b7033674d1f981"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:a4e5626067de539c4e0d8c7c642ebb12a"><td class="memItemLeft" align="right" valign="top">override string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#a4e5626067de539c4e0d8c7c642ebb12a">ToString</a> ()</td></tr>
|
||||||
|
<tr class="separator:a4e5626067de539c4e0d8c7c642ebb12a"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a>
|
||||||
|
Properties</h2></td></tr>
|
||||||
|
<tr class="memitem:abbec7835f2cbd9be8123ddd041883ad2"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#abbec7835f2cbd9be8123ddd041883ad2">RefSemantics</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:abbec7835f2cbd9be8123ddd041883ad2"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:ab2a0e0dd77ffa6d715d70a5e112d3903"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#ab2a0e0dd77ffa6d715d70a5e112d3903">Attributes</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:ab2a0e0dd77ffa6d715d70a5e112d3903"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
<tr class="memitem:aa56c2203849aa594e43637830a599014"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#aa56c2203849aa594e43637830a599014">Values</a><code> [get, set]</code></td></tr>
|
||||||
|
<tr class="separator:aa56c2203849aa594e43637830a599014"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
|
||||||
|
<a id="adddca2861fb0e123d8d2c02a296cee15"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#adddca2861fb0e123d8d2c02a296cee15">◆ </a></span>DataGridParameters() <span class="overload">[1/2]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">Aml.Editor.Plugin.DataGridParameters.DataGridParameters </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramname"></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="a8eaebdff6d41dea7a8b7033674d1f981"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a8eaebdff6d41dea7a8b7033674d1f981">◆ </a></span>DataGridParameters() <span class="overload">[2/2]</span></h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">Aml.Editor.Plugin.DataGridParameters.DataGridParameters </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>refSemantic</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>attributes</em>, </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="paramkey"></td>
|
||||||
|
<td></td>
|
||||||
|
<td class="paramtype">string </td>
|
||||||
|
<td class="paramname"><em>value</em> </td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td>)</td>
|
||||||
|
<td></td><td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="groupheader">Member Function Documentation</h2>
|
||||||
|
<a id="a4e5626067de539c4e0d8c7c642ebb12a"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#a4e5626067de539c4e0d8c7c642ebb12a">◆ </a></span>ToString()</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">override string Aml.Editor.Plugin.DataGridParameters.ToString </td>
|
||||||
|
<td>(</td>
|
||||||
|
<td class="paramname"></td><td>)</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h2 class="groupheader">Property Documentation</h2>
|
||||||
|
<a id="ab2a0e0dd77ffa6d715d70a5e112d3903"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#ab2a0e0dd77ffa6d715d70a5e112d3903">◆ </a></span>Attributes</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.DataGridParameters.Attributes</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="abbec7835f2cbd9be8123ddd041883ad2"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#abbec7835f2cbd9be8123ddd041883ad2">◆ </a></span>RefSemantics</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.DataGridParameters.RefSemantics</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a id="aa56c2203849aa594e43637830a599014"></a>
|
||||||
|
<h2 class="memtitle"><span class="permalink"><a href="#aa56c2203849aa594e43637830a599014">◆ </a></span>Values</h2>
|
||||||
|
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="mlabels">
|
||||||
|
<tr>
|
||||||
|
<td class="mlabels-left">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">string Aml.Editor.Plugin.DataGridParameters.Values</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
<td class="mlabels-right">
|
||||||
|
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div><div class="memdoc">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr/>The documentation for this class was generated from the following file:<ul>
|
||||||
|
<li><a class="el" href="_m_w_device_8cs.html">MWDevice.cs</a></li>
|
||||||
|
</ul>
|
||||||
|
</div><!-- contents -->
|
||||||
|
</div><!-- doc-content -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="namespace_aml.html">Aml</a></li><li class="navelem"><a class="el" href="namespace_aml_1_1_editor.html">Editor</a></li><li class="navelem"><a class="el" href="namespace_aml_1_1_editor_1_1_plugin.html">Plugin</a></li><li class="navelem"><a class="el" href="class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html">DataGridParameters</a></li>
|
||||||
|
<li class="footer">Generated by
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.17 </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,9 @@
|
|||||||
|
var class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters =
|
||||||
|
[
|
||||||
|
[ "DataGridParameters", "class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#adddca2861fb0e123d8d2c02a296cee15", null ],
|
||||||
|
[ "DataGridParameters", "class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#a8eaebdff6d41dea7a8b7033674d1f981", null ],
|
||||||
|
[ "ToString", "class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#a4e5626067de539c4e0d8c7c642ebb12a", null ],
|
||||||
|
[ "Attributes", "class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#ab2a0e0dd77ffa6d715d70a5e112d3903", null ],
|
||||||
|
[ "RefSemantics", "class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#abbec7835f2cbd9be8123ddd041883ad2", null ],
|
||||||
|
[ "Values", "class_aml_1_1_editor_1_1_plugin_1_1_data_grid_parameters.html#aa56c2203849aa594e43637830a599014", null ]
|
||||||
|
];
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user