├── .gitignore ├── .nuke ├── build.schema.json └── parameters.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── GitVersion.yml ├── InventorShims.sln ├── LICENSE ├── README.md ├── docfx ├── api │ ├── .gitignore │ └── index.md ├── articles │ ├── Contributing.md │ ├── changelog.md │ ├── quick-start.md │ └── toc.yml ├── docfx.json ├── index.md ├── templates │ └── inventor-shims │ │ ├── favicon.ico │ │ └── logo.svg └── toc.yml ├── docs ├── api │ ├── InventorShims.ApplicationShim.html │ ├── InventorShims.AttributeShim.html │ ├── InventorShims.Conversions.html │ ├── InventorShims.DocumentShim.html │ ├── InventorShims.DrawingDocumentShim.html │ ├── InventorShims.ExternalRuleDirectories.html │ ├── InventorShims.ParameterShim.html │ ├── InventorShims.PathShim.html │ ├── InventorShims.PropertyShim.html │ ├── InventorShims.StringShim.html │ ├── InventorShims.TranslatorShim.DwgExporter.html │ ├── InventorShims.TranslatorShim.PdfExporter.html │ ├── InventorShims.TranslatorShim.StepExporter.html │ ├── InventorShims.TranslatorShim.StepImporter.html │ ├── InventorShims.TranslatorShim.StepProtocolEnum.html │ ├── InventorShims.TranslatorShim.StlExporter.html │ ├── InventorShims.TranslatorShim.StlResolutionEnum.html │ ├── InventorShims.TranslatorShim.html │ ├── InventorShims.UiShim.html │ ├── InventorShims.html │ ├── index.html │ └── toc.html ├── articles │ ├── Contributing.html │ ├── changelog.html │ ├── contribution-guidelines.html │ ├── quick-start.html │ └── toc.html ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── index.html ├── logo.svg ├── manifest.json ├── search-stopwords.json ├── styles │ ├── docfx.css │ ├── docfx.js │ ├── docfx.vendor.css │ ├── docfx.vendor.js │ ├── lunr.js │ ├── lunr.min.js │ ├── main.css │ ├── main.js │ └── search-worker.js ├── toc.html └── xrefmap.yml ├── images └── InventorCode-brackets-logo-64x64.png ├── samples ├── IEnumerable-change-iprops-of-selected.vb ├── IEnumerable-change-parameter-of-all-referenced-docs.vb ├── ParameterShim-samples.vb ├── PathShim-samples.vb └── change-iprops-of-selected.vb ├── src └── InventorShims │ ├── ApplicationShim.cs │ ├── AttributeShim.cs │ ├── Conversions.cs │ ├── DocumentShim.cs │ ├── DrawingViewShim.vb │ ├── ExternalRuleDirectories.cs │ ├── GlobalSuppressions.cs │ ├── InventorShims.csproj │ ├── ObjectShim.vb │ ├── ParameterShim.cs │ ├── PathShim.cs │ ├── PropertyShim.cs │ ├── Research │ ├── ListIprops.vb │ └── Property Info.txt │ ├── StringShim.cs │ ├── TranslatorShim │ ├── DwgExporter.cs │ ├── PdfExporter.cs │ ├── StepExporter.cs │ ├── StepImporter.cs │ ├── StepProtocolEnum.cs │ ├── StlExporter.cs │ ├── StlResolutionEnum.cs │ └── TranslatorData.cs │ ├── UiShim.cs │ └── WinMacros.cs └── tests ├── GetDocumentFromObject.tests ├── App.config ├── GetDocumentFromObject.tests.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── Inventor.test.config ├── Templates │ ├── Sheet Metal.ipt │ ├── Standard.iam │ ├── Standard.idw │ ├── Standard.inest │ ├── Standard.ipn │ ├── Standard.ipt │ ├── Weldment.iam │ └── standard.dwg └── Test.ipj ├── InventorShims.iLogic.tests ├── DocumentType.Test.vb ├── DrawingDocumentExtensionsTests.vb ├── Iproperty SpeedTest.vb ├── ListIprops.vb ├── PropertyShim.GetProperty.SpeedTest Results.md ├── SpeedTest Results - try vs GetPropsInfo.md ├── SpeedTest.vb ├── Timer.vb ├── iProperty.GetProperty SpeedTest.vb ├── iProperty.GetProperty.SpeedTest custom property.vb ├── iProperty.GetProperty.SpeedTest no parameter.vb └── iProperty.Unit Tests.vb └── InventorShims.tests ├── ApplicationShimTests.cs ├── AttributeShimTests.cs ├── DocumentShimTests.cs ├── ExternalRuleDirectoriesTests.cs ├── GetDocumentFromObjectTests.cs ├── InventorShims.tests.csproj ├── ParameterShimTests.cs ├── PathShimTests.cs ├── Properties └── AssemblyInfo.cs ├── PropertyShimsTests.cs ├── TestDocuments.cs ├── TestUtilities.cs └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuke/build.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/.nuke/build.schema.json -------------------------------------------------------------------------------- /.nuke/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/.nuke/parameters.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /InventorShims.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/InventorShims.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/README.md -------------------------------------------------------------------------------- /docfx/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docfx/api/.gitignore -------------------------------------------------------------------------------- /docfx/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docfx/api/index.md -------------------------------------------------------------------------------- /docfx/articles/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docfx/articles/Contributing.md -------------------------------------------------------------------------------- /docfx/articles/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docfx/articles/changelog.md -------------------------------------------------------------------------------- /docfx/articles/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docfx/articles/quick-start.md -------------------------------------------------------------------------------- /docfx/articles/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docfx/articles/toc.yml -------------------------------------------------------------------------------- /docfx/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docfx/docfx.json -------------------------------------------------------------------------------- /docfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docfx/index.md -------------------------------------------------------------------------------- /docfx/templates/inventor-shims/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docfx/templates/inventor-shims/favicon.ico -------------------------------------------------------------------------------- /docfx/templates/inventor-shims/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docfx/templates/inventor-shims/logo.svg -------------------------------------------------------------------------------- /docfx/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docfx/toc.yml -------------------------------------------------------------------------------- /docs/api/InventorShims.ApplicationShim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.ApplicationShim.html -------------------------------------------------------------------------------- /docs/api/InventorShims.AttributeShim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.AttributeShim.html -------------------------------------------------------------------------------- /docs/api/InventorShims.Conversions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.Conversions.html -------------------------------------------------------------------------------- /docs/api/InventorShims.DocumentShim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.DocumentShim.html -------------------------------------------------------------------------------- /docs/api/InventorShims.DrawingDocumentShim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.DrawingDocumentShim.html -------------------------------------------------------------------------------- /docs/api/InventorShims.ExternalRuleDirectories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.ExternalRuleDirectories.html -------------------------------------------------------------------------------- /docs/api/InventorShims.ParameterShim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.ParameterShim.html -------------------------------------------------------------------------------- /docs/api/InventorShims.PathShim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.PathShim.html -------------------------------------------------------------------------------- /docs/api/InventorShims.PropertyShim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.PropertyShim.html -------------------------------------------------------------------------------- /docs/api/InventorShims.StringShim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.StringShim.html -------------------------------------------------------------------------------- /docs/api/InventorShims.TranslatorShim.DwgExporter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.TranslatorShim.DwgExporter.html -------------------------------------------------------------------------------- /docs/api/InventorShims.TranslatorShim.PdfExporter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.TranslatorShim.PdfExporter.html -------------------------------------------------------------------------------- /docs/api/InventorShims.TranslatorShim.StepExporter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.TranslatorShim.StepExporter.html -------------------------------------------------------------------------------- /docs/api/InventorShims.TranslatorShim.StepImporter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.TranslatorShim.StepImporter.html -------------------------------------------------------------------------------- /docs/api/InventorShims.TranslatorShim.StepProtocolEnum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.TranslatorShim.StepProtocolEnum.html -------------------------------------------------------------------------------- /docs/api/InventorShims.TranslatorShim.StlExporter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.TranslatorShim.StlExporter.html -------------------------------------------------------------------------------- /docs/api/InventorShims.TranslatorShim.StlResolutionEnum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.TranslatorShim.StlResolutionEnum.html -------------------------------------------------------------------------------- /docs/api/InventorShims.TranslatorShim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.TranslatorShim.html -------------------------------------------------------------------------------- /docs/api/InventorShims.UiShim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.UiShim.html -------------------------------------------------------------------------------- /docs/api/InventorShims.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/InventorShims.html -------------------------------------------------------------------------------- /docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/index.html -------------------------------------------------------------------------------- /docs/api/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/api/toc.html -------------------------------------------------------------------------------- /docs/articles/Contributing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/articles/Contributing.html -------------------------------------------------------------------------------- /docs/articles/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/articles/changelog.html -------------------------------------------------------------------------------- /docs/articles/contribution-guidelines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/articles/contribution-guidelines.html -------------------------------------------------------------------------------- /docs/articles/quick-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/articles/quick-start.html -------------------------------------------------------------------------------- /docs/articles/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/articles/toc.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/manifest.json -------------------------------------------------------------------------------- /docs/search-stopwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/search-stopwords.json -------------------------------------------------------------------------------- /docs/styles/docfx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/styles/docfx.css -------------------------------------------------------------------------------- /docs/styles/docfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/styles/docfx.js -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/styles/docfx.vendor.css -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/styles/docfx.vendor.js -------------------------------------------------------------------------------- /docs/styles/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/styles/lunr.js -------------------------------------------------------------------------------- /docs/styles/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/styles/lunr.min.js -------------------------------------------------------------------------------- /docs/styles/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/styles/main.js -------------------------------------------------------------------------------- /docs/styles/search-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/styles/search-worker.js -------------------------------------------------------------------------------- /docs/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/toc.html -------------------------------------------------------------------------------- /docs/xrefmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/docs/xrefmap.yml -------------------------------------------------------------------------------- /images/InventorCode-brackets-logo-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/images/InventorCode-brackets-logo-64x64.png -------------------------------------------------------------------------------- /samples/IEnumerable-change-iprops-of-selected.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/samples/IEnumerable-change-iprops-of-selected.vb -------------------------------------------------------------------------------- /samples/IEnumerable-change-parameter-of-all-referenced-docs.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/samples/IEnumerable-change-parameter-of-all-referenced-docs.vb -------------------------------------------------------------------------------- /samples/ParameterShim-samples.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/samples/ParameterShim-samples.vb -------------------------------------------------------------------------------- /samples/PathShim-samples.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/samples/PathShim-samples.vb -------------------------------------------------------------------------------- /samples/change-iprops-of-selected.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/samples/change-iprops-of-selected.vb -------------------------------------------------------------------------------- /src/InventorShims/ApplicationShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/ApplicationShim.cs -------------------------------------------------------------------------------- /src/InventorShims/AttributeShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/AttributeShim.cs -------------------------------------------------------------------------------- /src/InventorShims/Conversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/Conversions.cs -------------------------------------------------------------------------------- /src/InventorShims/DocumentShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/DocumentShim.cs -------------------------------------------------------------------------------- /src/InventorShims/DrawingViewShim.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/DrawingViewShim.vb -------------------------------------------------------------------------------- /src/InventorShims/ExternalRuleDirectories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/ExternalRuleDirectories.cs -------------------------------------------------------------------------------- /src/InventorShims/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/InventorShims/InventorShims.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/InventorShims.csproj -------------------------------------------------------------------------------- /src/InventorShims/ObjectShim.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/ObjectShim.vb -------------------------------------------------------------------------------- /src/InventorShims/ParameterShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/ParameterShim.cs -------------------------------------------------------------------------------- /src/InventorShims/PathShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/PathShim.cs -------------------------------------------------------------------------------- /src/InventorShims/PropertyShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/PropertyShim.cs -------------------------------------------------------------------------------- /src/InventorShims/Research/ListIprops.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/Research/ListIprops.vb -------------------------------------------------------------------------------- /src/InventorShims/Research/Property Info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/Research/Property Info.txt -------------------------------------------------------------------------------- /src/InventorShims/StringShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/StringShim.cs -------------------------------------------------------------------------------- /src/InventorShims/TranslatorShim/DwgExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/TranslatorShim/DwgExporter.cs -------------------------------------------------------------------------------- /src/InventorShims/TranslatorShim/PdfExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/TranslatorShim/PdfExporter.cs -------------------------------------------------------------------------------- /src/InventorShims/TranslatorShim/StepExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/TranslatorShim/StepExporter.cs -------------------------------------------------------------------------------- /src/InventorShims/TranslatorShim/StepImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/TranslatorShim/StepImporter.cs -------------------------------------------------------------------------------- /src/InventorShims/TranslatorShim/StepProtocolEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/TranslatorShim/StepProtocolEnum.cs -------------------------------------------------------------------------------- /src/InventorShims/TranslatorShim/StlExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/TranslatorShim/StlExporter.cs -------------------------------------------------------------------------------- /src/InventorShims/TranslatorShim/StlResolutionEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/TranslatorShim/StlResolutionEnum.cs -------------------------------------------------------------------------------- /src/InventorShims/TranslatorShim/TranslatorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/TranslatorShim/TranslatorData.cs -------------------------------------------------------------------------------- /src/InventorShims/UiShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/UiShim.cs -------------------------------------------------------------------------------- /src/InventorShims/WinMacros.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/src/InventorShims/WinMacros.cs -------------------------------------------------------------------------------- /tests/GetDocumentFromObject.tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/GetDocumentFromObject.tests/App.config -------------------------------------------------------------------------------- /tests/GetDocumentFromObject.tests/GetDocumentFromObject.tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/GetDocumentFromObject.tests/GetDocumentFromObject.tests.csproj -------------------------------------------------------------------------------- /tests/GetDocumentFromObject.tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/GetDocumentFromObject.tests/Program.cs -------------------------------------------------------------------------------- /tests/GetDocumentFromObject.tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/GetDocumentFromObject.tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/Inventor.test.config/Templates/Sheet Metal.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/Inventor.test.config/Templates/Sheet Metal.ipt -------------------------------------------------------------------------------- /tests/Inventor.test.config/Templates/Standard.iam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/Inventor.test.config/Templates/Standard.iam -------------------------------------------------------------------------------- /tests/Inventor.test.config/Templates/Standard.idw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/Inventor.test.config/Templates/Standard.idw -------------------------------------------------------------------------------- /tests/Inventor.test.config/Templates/Standard.inest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/Inventor.test.config/Templates/Standard.inest -------------------------------------------------------------------------------- /tests/Inventor.test.config/Templates/Standard.ipn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/Inventor.test.config/Templates/Standard.ipn -------------------------------------------------------------------------------- /tests/Inventor.test.config/Templates/Standard.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/Inventor.test.config/Templates/Standard.ipt -------------------------------------------------------------------------------- /tests/Inventor.test.config/Templates/Weldment.iam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/Inventor.test.config/Templates/Weldment.iam -------------------------------------------------------------------------------- /tests/Inventor.test.config/Templates/standard.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/Inventor.test.config/Templates/standard.dwg -------------------------------------------------------------------------------- /tests/Inventor.test.config/Test.ipj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/Inventor.test.config/Test.ipj -------------------------------------------------------------------------------- /tests/InventorShims.iLogic.tests/DocumentType.Test.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.iLogic.tests/DocumentType.Test.vb -------------------------------------------------------------------------------- /tests/InventorShims.iLogic.tests/DrawingDocumentExtensionsTests.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.iLogic.tests/DrawingDocumentExtensionsTests.vb -------------------------------------------------------------------------------- /tests/InventorShims.iLogic.tests/Iproperty SpeedTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.iLogic.tests/Iproperty SpeedTest.vb -------------------------------------------------------------------------------- /tests/InventorShims.iLogic.tests/ListIprops.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.iLogic.tests/ListIprops.vb -------------------------------------------------------------------------------- /tests/InventorShims.iLogic.tests/PropertyShim.GetProperty.SpeedTest Results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.iLogic.tests/PropertyShim.GetProperty.SpeedTest Results.md -------------------------------------------------------------------------------- /tests/InventorShims.iLogic.tests/SpeedTest Results - try vs GetPropsInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.iLogic.tests/SpeedTest Results - try vs GetPropsInfo.md -------------------------------------------------------------------------------- /tests/InventorShims.iLogic.tests/SpeedTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.iLogic.tests/SpeedTest.vb -------------------------------------------------------------------------------- /tests/InventorShims.iLogic.tests/Timer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.iLogic.tests/Timer.vb -------------------------------------------------------------------------------- /tests/InventorShims.iLogic.tests/iProperty.GetProperty SpeedTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.iLogic.tests/iProperty.GetProperty SpeedTest.vb -------------------------------------------------------------------------------- /tests/InventorShims.iLogic.tests/iProperty.GetProperty.SpeedTest custom property.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.iLogic.tests/iProperty.GetProperty.SpeedTest custom property.vb -------------------------------------------------------------------------------- /tests/InventorShims.iLogic.tests/iProperty.GetProperty.SpeedTest no parameter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.iLogic.tests/iProperty.GetProperty.SpeedTest no parameter.vb -------------------------------------------------------------------------------- /tests/InventorShims.iLogic.tests/iProperty.Unit Tests.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.iLogic.tests/iProperty.Unit Tests.vb -------------------------------------------------------------------------------- /tests/InventorShims.tests/ApplicationShimTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.tests/ApplicationShimTests.cs -------------------------------------------------------------------------------- /tests/InventorShims.tests/AttributeShimTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.tests/AttributeShimTests.cs -------------------------------------------------------------------------------- /tests/InventorShims.tests/DocumentShimTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.tests/DocumentShimTests.cs -------------------------------------------------------------------------------- /tests/InventorShims.tests/ExternalRuleDirectoriesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.tests/ExternalRuleDirectoriesTests.cs -------------------------------------------------------------------------------- /tests/InventorShims.tests/GetDocumentFromObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.tests/GetDocumentFromObjectTests.cs -------------------------------------------------------------------------------- /tests/InventorShims.tests/InventorShims.tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.tests/InventorShims.tests.csproj -------------------------------------------------------------------------------- /tests/InventorShims.tests/ParameterShimTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.tests/ParameterShimTests.cs -------------------------------------------------------------------------------- /tests/InventorShims.tests/PathShimTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.tests/PathShimTests.cs -------------------------------------------------------------------------------- /tests/InventorShims.tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/InventorShims.tests/PropertyShimsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.tests/PropertyShimsTests.cs -------------------------------------------------------------------------------- /tests/InventorShims.tests/TestDocuments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.tests/TestDocuments.cs -------------------------------------------------------------------------------- /tests/InventorShims.tests/TestUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.tests/TestUtilities.cs -------------------------------------------------------------------------------- /tests/InventorShims.tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InventorCode/InventorShims/HEAD/tests/InventorShims.tests/packages.config --------------------------------------------------------------------------------