├── Snippets └── snippet01 │ ├── snippet01.cs │ └── snippet01.vb ├── Macros ├── Macros.txt ├── copyProjectToProject │ ├── Test.rvt │ └── copyProj2Proj.vb ├── placeFamilyInRoom │ ├── PlaceinRoom.rvt │ └── placeInRoom.cs ├── placeViewsOnSheet │ ├── ViewsOnSheets.rvt │ └── placeViewsOnSheets.cs ├── getCollection │ ├── getCollection.vb │ └── getCollection.cs ├── hideCropRegions │ └── hideCropRegions.vb ├── turnOffUnderlay │ └── turnOffUnderlay.vb ├── exportTxt │ ├── exportTxt.vb │ └── exportTxt.cs ├── doorTagUpdate │ ├── doorTagUpdate.cs │ └── doorTagUpdate.vb ├── createRenameViews │ ├── createRenameViews.cs │ └── createRenameViews.vb ├── README.md ├── wallSelection │ ├── wallSelection.cs │ └── wallSelection.vb ├── renameExportDWG │ ├── renameExportDWG.vb │ └── renameExportDWG.cs ├── importTxt │ ├── importTxt.cs │ └── importTxt.vb ├── deleteElements │ ├── deleteElements.cs │ └── deleteElements.vb ├── hideSetColour │ ├── hideSetColour.cs │ └── hideSetColour.vb └── interiorFloorByRoom │ └── interiorFloorByRoom.cs ├── Visual Studio Projects ├── Learning │ ├── Ex1.0 │ │ ├── Ex1.0 │ │ │ ├── obj │ │ │ │ └── Debug │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ │ ├── Ex1.0.csproj.FileListAbsolute.txt │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ ├── Ex1.0_MarkupCompile.i.cache │ │ │ │ │ └── App.g.i.cs │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ ├── Ex1.0.vshost.exe │ │ │ │ │ ├── Ex1.0.exe.config │ │ │ │ │ ├── Ex1.0.vshost.exe.config │ │ │ │ │ └── Ex1.0.vshost.exe.manifest │ │ │ ├── App.config │ │ │ ├── Properties │ │ │ │ ├── Settings.settings │ │ │ │ ├── Settings.Designer.cs │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Resources.Designer.cs │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── Exercises │ │ │ │ ├── Ex1.1.cs │ │ │ │ ├── Ex1.2.cs │ │ │ │ ├── Ex1.3.cs │ │ │ │ └── Ex1.4.cs │ │ │ └── Ex1.0.csproj │ │ ├── Ex1.0.v11.suo │ │ └── Ex1.0.sln │ ├── Ex2.0 │ │ ├── Ex2.0 │ │ │ ├── obj │ │ │ │ └── Debug │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ │ ├── Ex2.0.exe │ │ │ │ │ ├── Ex2.0.pdb │ │ │ │ │ ├── Ex2.0.g.resources │ │ │ │ │ ├── MainWindow.baml │ │ │ │ │ ├── Ex2.0.csproj.GenerateResource.Cache │ │ │ │ │ ├── Ex2._0.Properties.Resources.resources │ │ │ │ │ ├── Ex2.0.csprojResolveAssemblyReference.cache │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ ├── Ex2.0_MarkupCompile.cache │ │ │ │ │ ├── Ex2.0_MarkupCompile.i.cache │ │ │ │ │ ├── Ex2.0.csproj.FileListAbsolute.txt │ │ │ │ │ ├── App.g.cs │ │ │ │ │ └── App.g.i.cs │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ ├── Ex2.0.exe │ │ │ │ │ ├── Ex2.0.pdb │ │ │ │ │ ├── Ex2.0.vshost.exe │ │ │ │ │ ├── Ex2.0.exe.config │ │ │ │ │ ├── Ex2.0.vshost.exe.config │ │ │ │ │ └── Ex2.0.vshost.exe.manifest │ │ │ ├── App.config │ │ │ ├── Properties │ │ │ │ ├── Settings.settings │ │ │ │ ├── Settings.Designer.cs │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Resources.Designer.cs │ │ │ ├── Exercises │ │ │ │ └── Ex2.1.cs │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── Ex2.0.csproj │ │ │ └── MainWindow.xaml.cs │ │ ├── Ex2.0.v11.suo │ │ └── Ex2.0.sln │ └── APISetup │ │ ├── Application │ │ ├── Application.v11.suo │ │ ├── Application │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ ├── Application.dll │ │ │ │ │ └── Application.pdb │ │ │ ├── obj │ │ │ │ └── Debug │ │ │ │ │ ├── Application.dll │ │ │ │ │ ├── Application.pdb │ │ │ │ │ ├── UserControl1.baml │ │ │ │ │ ├── Application.g.resources │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ ├── Application.csprojResolveAssemblyReference.cache │ │ │ │ │ ├── Application_MarkupCompile.cache │ │ │ │ │ ├── Application_MarkupCompile.i.cache │ │ │ │ │ ├── Application.csproj.FileListAbsolute.txt │ │ │ │ │ └── UserControl1.g.cs │ │ │ ├── Application.addin │ │ │ ├── UserControl1.xaml │ │ │ ├── Command.cs │ │ │ ├── App.cs │ │ │ ├── Application.csproj │ │ │ ├── UserControl1.xaml.cs │ │ │ └── examplecommands.cs │ │ └── Application.sln │ │ └── NewCommands │ │ ├── NewCommands.v11.suo │ │ ├── NewCommands │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── NewCommands.dll │ │ │ │ └── NewCommands.pdb │ │ ├── obj │ │ │ └── Debug │ │ │ │ ├── NewCommands.dll │ │ │ │ ├── NewCommands.pdb │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── NewCommands.csprojResolveAssemblyReference.cache │ │ │ │ └── NewCommands.csproj.FileListAbsolute.txt │ │ ├── NewCommands.addin │ │ ├── App.cs │ │ ├── Command.cs │ │ └── NewCommands.csproj │ │ └── NewCommands.sln ├── WPFExamples │ └── Bonus Stuff │ │ └── CheckListFromRevit │ │ ├── CheckListFromRevit.v11.suo │ │ ├── CheckListFromRevit │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── obj │ │ │ └── Debug │ │ │ │ ├── checkwindow.baml │ │ │ │ ├── CheckListFromRevit.dll │ │ │ │ ├── CheckListFromRevit.pdb │ │ │ │ ├── CheckListFromRevit.g.resources │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── CheckListFromRevit.csprojResolveAssemblyReference.cache │ │ │ │ ├── CheckListFromRevit_MarkupCompile.cache │ │ │ │ ├── CheckListFromRevit_MarkupCompile.i.cache │ │ │ │ ├── CheckListFromRevit.csproj.FileListAbsolute.txt │ │ │ │ ├── UserControl1.g.i.cs │ │ │ │ ├── checkwindow.g.cs │ │ │ │ └── checkwindow.g.i.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── CheckListFromRevit.dll │ │ │ │ └── CheckListFromRevit.pdb │ │ ├── App.cs │ │ ├── checkwindow.xaml │ │ ├── CheckListFromRevit.addin │ │ ├── Command.cs │ │ ├── checkwindow.xaml.cs │ │ └── CheckListFromRevit.csproj │ │ └── CheckListFromRevit.sln └── README.md ├── Reference ├── Revit Lookup │ ├── RevitLookup.dll │ └── RevitLookup.addin ├── Handouts │ ├── Revit API talk 1.pdf │ ├── Revit API talk 2.pdf │ └── Revit API talk 3.pdf ├── Wizards │ └── revit2014addinwizardcs-1.zip ├── Cheat sheets │ ├── RTC2014 Revit Cheat Sheet 2 of 2.pdf │ └── C# Cheat Sheet THE CODING GUYS 1 of 2.pdf └── README.md ├── Dynamo ├── README.md ├── 0.6.3 │ └── getTypesFromList.py └── 0.7.6 │ └── template.py ├── LICENSE └── README.md /Snippets/snippet01/snippet01.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Snippets/snippet01/snippet01.vb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Macros/Macros.txt: -------------------------------------------------------------------------------- 1 | All Macro files will be place here for use by others. 2 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Macros/copyProjectToProject/Test.rvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Macros/copyProjectToProject/Test.rvt -------------------------------------------------------------------------------- /Reference/Revit Lookup/RevitLookup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Reference/Revit Lookup/RevitLookup.dll -------------------------------------------------------------------------------- /Macros/placeFamilyInRoom/PlaceinRoom.rvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Macros/placeFamilyInRoom/PlaceinRoom.rvt -------------------------------------------------------------------------------- /Reference/Handouts/Revit API talk 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Reference/Handouts/Revit API talk 1.pdf -------------------------------------------------------------------------------- /Reference/Handouts/Revit API talk 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Reference/Handouts/Revit API talk 2.pdf -------------------------------------------------------------------------------- /Reference/Handouts/Revit API talk 3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Reference/Handouts/Revit API talk 3.pdf -------------------------------------------------------------------------------- /Macros/placeViewsOnSheet/ViewsOnSheets.rvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Macros/placeViewsOnSheet/ViewsOnSheets.rvt -------------------------------------------------------------------------------- /Reference/Wizards/revit2014addinwizardcs-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Reference/Wizards/revit2014addinwizardcs-1.zip -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex1.0/Ex1.0.v11.suo -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/obj/Debug/Ex1.0.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | G:\RTC2014\API\Forms\Ex1.0\Ex1.0\bin\Debug\Ex1.0.exe.config 2 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex2.0/Ex2.0.v11.suo -------------------------------------------------------------------------------- /Reference/Cheat sheets/RTC2014 Revit Cheat Sheet 2 of 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Reference/Cheat sheets/RTC2014 Revit Cheat Sheet 2 of 2.pdf -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/bin/Debug/Ex2.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex2.0/Ex2.0/bin/Debug/Ex2.0.exe -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/bin/Debug/Ex2.0.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex2.0/Ex2.0/bin/Debug/Ex2.0.pdb -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2.0.exe -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2.0.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2.0.pdb -------------------------------------------------------------------------------- /Reference/Cheat sheets/C# Cheat Sheet THE CODING GUYS 1 of 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Reference/Cheat sheets/C# Cheat Sheet THE CODING GUYS 1 of 2.pdf -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/bin/Debug/Ex1.0.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex1.0/Ex1.0/bin/Debug/Ex1.0.vshost.exe -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/bin/Debug/Ex2.0.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex2.0/Ex2.0/bin/Debug/Ex2.0.vshost.exe -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2.0.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2.0.g.resources -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/Application/Application.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/Application/Application.v11.suo -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands.v11.suo -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/Application/Application/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/Application/Application/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/Application/Application/bin/Debug/Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/Application/Application/bin/Debug/Application.dll -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/Application/Application/bin/Debug/Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/Application/Application/bin/Debug/Application.pdb -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/Application.dll -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/Application.pdb -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/bin/Debug/NewCommands.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/bin/Debug/NewCommands.dll -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/bin/Debug/NewCommands.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/bin/Debug/NewCommands.pdb -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/obj/Debug/NewCommands.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/obj/Debug/NewCommands.dll -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/obj/Debug/NewCommands.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/obj/Debug/NewCommands.pdb -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2.0.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2.0.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2._0.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2._0.Properties.Resources.resources -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/UserControl1.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/UserControl1.baml -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit.v11.suo -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2.0.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2.0.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/Application.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/Application.g.resources -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex1.0/Ex1.0/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/bin/Debug/Ex1.0.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/bin/Debug/Ex2.0.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/checkwindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/checkwindow.baml -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/bin/Debug/Ex1.0.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/bin/Debug/Ex2.0.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/bin/Debug/CheckListFromRevit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/bin/Debug/CheckListFromRevit.dll -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/bin/Debug/CheckListFromRevit.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/bin/Debug/CheckListFromRevit.pdb -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/CheckListFromRevit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/CheckListFromRevit.dll -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/CheckListFromRevit.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/CheckListFromRevit.pdb -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/Application.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/Application.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/obj/Debug/NewCommands.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/obj/Debug/NewCommands.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/Exercises/Ex2.1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Ex2._0.Exercises 8 | { 9 | class Ex2 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/CheckListFromRevit.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/CheckListFromRevit.g.resources -------------------------------------------------------------------------------- /Dynamo/README.md: -------------------------------------------------------------------------------- 1 | Dynamo Python Scripts 2 | ======== 3 | 4 | A list of various Python scripts you can embed into your Dynamo nodes. 5 | 6 | You need to use the Python scripting node or multiple Python scripting node if there is more then one outcome. 7 | 8 | Just copy the script data into a new Python node in Dynamo 9 | -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/CheckListFromRevit.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gytaco/RevitAPI/HEAD/Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/CheckListFromRevit.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2.0_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | Ex2.0 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\obj\Debug\ 8 | Ex2._0 9 | none 10 | false 11 | DEBUG;TRACE 12 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\App.xaml 13 | 11151548125 14 | 15 | 6-1916828737 16 | 12-1401562060 17 | MainWindow.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/obj/Debug/Ex1.0_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | Ex1.0 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | G:\RTC2014\API\Forms\Ex1.0\Ex1.0\obj\Debug\ 8 | Ex1._0 9 | none 10 | false 11 | DEBUG;TRACE 12 | G:\RTC2014\API\Forms\Ex1.0\Ex1.0\App.xaml 13 | 11151548125 14 | 15 | 13-923306594 16 | 12-1401562060 17 | MainWindow.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2.0_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | Ex2.0 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\obj\Debug\ 8 | Ex2._0 9 | none 10 | false 11 | DEBUG;TRACE 12 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\App.xaml 13 | 11151548125 14 | 15 | 10-63260343 16 | 12-1401562060 17 | MainWindow.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/Application_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | Application 2 | 3 | 4 | library 5 | C# 6 | .cs 7 | G:\RTC2014\API\Forms\Application\Application\obj\Debug\ 8 | Application 9 | none 10 | false 11 | DEBUG;TRACE 12 | 13 | 1-98425716 14 | 15 | 5301585156 16 | 141964885060 17 | UserControl1.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/App.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/App.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/Application_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | Application 2 | 3 | 4 | library 5 | C# 6 | .cs 7 | G:\RTC2014\API\Forms\Application\Application\obj\Debug\ 8 | Application 9 | none 10 | false 11 | DEBUG;TRACE 12 | 13 | 1-98425716 14 | 15 | 6-1640714249 16 | 141964885060 17 | UserControl1.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace Ex1._0 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace Ex2._0 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/CheckListFromRevit_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | CheckListFromRevit 2 | 3 | 4 | library 5 | C# 6 | .cs 7 | C:\Users\Gytaco\Documents\Visual Studio 2012\Projects\CheckListFromRevit\CheckListFromRevit\obj\Debug\ 8 | CheckListFromRevit 9 | none 10 | false 11 | DEBUG;TRACE 12 | 13 | 1-531661720 14 | 15 | 41526373465 16 | 141964885060 17 | checkwindow.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/obj/Debug/CheckListFromRevit_MarkupCompile.i.cache: -------------------------------------------------------------------------------- 1 | CheckListFromRevit 2 | 3 | 4 | library 5 | C# 6 | .cs 7 | C:\Users\Gytaco\Documents\Visual Studio 2012\Projects\CheckListFromRevit\CheckListFromRevit\obj\Debug\ 8 | CheckListFromRevit 9 | none 10 | false 11 | DEBUG;TRACE 12 | 13 | 1-531661720 14 | 15 | 5-415925940 16 | 141964885060 17 | checkwindow.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /Reference/Revit Lookup/RevitLookup.addin: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | RevitLookup.dll 5 | 356CDA5A-E6C5-4c2f-A9EF-B3222116B8C8 6 | RevitLookup.App 7 | Revit Lookup 8 | ADSK 9 | Autodesk, www.autodesk.com 10 | 11 | 12 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/obj/Debug/NewCommands.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | G:\RTC2014\API\Forms\NewCommands\NewCommands\bin\Debug\NewCommands.dll 2 | G:\RTC2014\API\Forms\NewCommands\NewCommands\bin\Debug\NewCommands.pdb 3 | G:\RTC2014\API\Forms\NewCommands\NewCommands\obj\Debug\NewCommands.csprojResolveAssemblyReference.cache 4 | G:\RTC2014\API\Forms\NewCommands\NewCommands\obj\Debug\NewCommands.dll 5 | G:\RTC2014\API\Forms\NewCommands\NewCommands\obj\Debug\NewCommands.pdb 6 | -------------------------------------------------------------------------------- /Reference/README.md: -------------------------------------------------------------------------------- 1 | Handouts and other Files 2 | ====== 3 | 4 | This contains some basic handouts and other information for the classes. 5 | 6 | The lookup .dll and .addin are from the Building Coder and allow you to look through your projects. 7 | Just put these in the Addins folder in user accounts. 8 | 9 | The zip file is for Visual Studio to automate setting up projects, this is also from the building coder with a slight customisation to work with Revit not Revit Architecture. Put this in your documents Visual Studio C# templates area. 10 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/bin/Debug/Ex1.0.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/bin/Debug/Ex2.0.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/NewCommands.addin: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Get Wall Date 5 | Returns data about a wall 6 | NewCommands.dll 7 | NewCommands.GetSelection 8 | 740d1afb-8999-4d25-8a1a-5b5dce3fd958 9 | TBC_ 10 | The Building Coder, http://thebuildingcoder.typepad.com 11 | 12 | 13 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/NewCommands/NewCommands/App.cs: -------------------------------------------------------------------------------- 1 | #region Namespaces 2 | using System; 3 | using System.Collections.Generic; 4 | using Autodesk.Revit.ApplicationServices; 5 | using Autodesk.Revit.Attributes; 6 | using Autodesk.Revit.DB; 7 | using Autodesk.Revit.UI; 8 | #endregion 9 | 10 | namespace NewCommands 11 | { 12 | class App : IExternalApplication 13 | { 14 | public Result OnStartup(UIControlledApplication a) 15 | { 16 | return Result.Succeeded; 17 | } 18 | 19 | public Result OnShutdown(UIControlledApplication a) 20 | { 21 | return Result.Succeeded; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Visual Studio Projects/README.md: -------------------------------------------------------------------------------- 1 | Visual Studio Projects 2 | ====== 3 | 4 | This is where entire projects are kept. 5 | 6 | Each project file contains a .csproj file and will do various things. 7 | As people create their own I hope they will share them and we can all help each other creating new stuff. 8 | 9 | The Learning Folder has some basic exercises from the handouts and also completed "newcommand" and "Application" Visual project to enable users to create their own UI's or simple commands rather then just using Macro's. 10 | 11 | THe UI Folder has a simple project showing how a user can create a list using WPF format. 12 | 13 | Other folders will be created and code shared as the need arises. 14 | -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/App.cs: -------------------------------------------------------------------------------- 1 | #region Namespaces 2 | using System; 3 | using System.Collections.Generic; 4 | using Autodesk.Revit.ApplicationServices; 5 | using Autodesk.Revit.Attributes; 6 | using Autodesk.Revit.DB; 7 | using Autodesk.Revit.UI; 8 | #endregion 9 | 10 | namespace CheckListFromRevit 11 | { 12 | class App : IExternalApplication 13 | { 14 | public Result OnStartup(UIControlledApplication a) 15 | { 16 | return Result.Succeeded; 17 | } 18 | 19 | public Result OnShutdown(UIControlledApplication a) 20 | { 21 | return Result.Succeeded; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Dynamo/0.6.3/getTypesFromList.py: -------------------------------------------------------------------------------- 1 | #this script takes a list of elements and returns the types only 2 | import clr 3 | clr.AddReference('RevitAPI') 4 | clr.AddReference('RevitAPIUI') 5 | from Autodesk.Revit.DB import * 6 | from System.Collections.Generic import List 7 | import Autodesk 8 | 9 | doc = IN0 10 | fams = IN1 11 | 12 | elementlist = list() 13 | idlist = list() 14 | totalist = list() 15 | #gets the list of elements and creates of list of ids 16 | for item in fams: 17 | idlist.append(item.Id) 18 | 19 | totalist = List[ElementId](idlist) 20 | 21 | collector = FilteredElementCollector(doc,totalist) 22 | collector.WhereElementIsElementType() 23 | elementlist.append(collector.ToElements()) 24 | 25 | OUT = elementlist 26 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/Application/Application/obj/Debug/Application.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | G:\RTC2014\API\Forms\Application\Application\obj\Debug\Application.csprojResolveAssemblyReference.cache 2 | G:\RTC2014\API\Forms\Application\Application\bin\Debug\Application.dll 3 | G:\RTC2014\API\Forms\Application\Application\bin\Debug\Application.pdb 4 | G:\RTC2014\API\Forms\Application\Application\obj\Debug\Application.dll 5 | G:\RTC2014\API\Forms\Application\Application\obj\Debug\Application.pdb 6 | G:\RTC2014\API\Forms\Application\Application\obj\Debug\UserControl1.baml 7 | G:\RTC2014\API\Forms\Application\Application\obj\Debug\UserControl1.g.cs 8 | G:\RTC2014\API\Forms\Application\Application\obj\Debug\Application_MarkupCompile.cache 9 | G:\RTC2014\API\Forms\Application\Application\obj\Debug\Application.g.resources 10 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex1.0/Ex1.0/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | using System.Windows.Controls; 8 | using System.Windows.Data; 9 | using System.Windows.Documents; 10 | using System.Windows.Input; 11 | using System.Windows.Media; 12 | using System.Windows.Media.Imaging; 13 | using System.Windows.Navigation; 14 | using System.Windows.Shapes; 15 | 16 | namespace Ex1._0 17 | { 18 | /// 19 | /// Interaction logic for MainWindow.xaml 20 | /// 21 | public partial class MainWindow : Window 22 | { 23 | public MainWindow() 24 | { 25 | InitializeComponent(); 26 | } 27 | 28 | private void Calculate_Click(object sender, RoutedEventArgs e) 29 | { 30 | 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/Ex2.0/Ex2.0/obj/Debug/Ex2.0.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\bin\Debug\Ex2.0.exe.config 2 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\bin\Debug\Ex2.0.exe 3 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\bin\Debug\Ex2.0.pdb 4 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\obj\Debug\Ex2.0.csprojResolveAssemblyReference.cache 5 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\obj\Debug\MainWindow.baml 6 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\obj\Debug\MainWindow.g.cs 7 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\obj\Debug\App.g.cs 8 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\obj\Debug\Ex2.0_MarkupCompile.cache 9 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\obj\Debug\Ex2.0.g.resources 10 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\obj\Debug\Ex2._0.Properties.Resources.resources 11 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\obj\Debug\Ex2.0.csproj.GenerateResource.Cache 12 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\obj\Debug\Ex2.0.exe 13 | G:\RTC2014\API\Forms\Ex2.0\Ex2.0\obj\Debug\Ex2.0.pdb 14 | -------------------------------------------------------------------------------- /Visual Studio Projects/Learning/APISetup/Application/Application/Application.addin: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Command Application 5 | Some description for Application 6 | Application.dll 7 | Application.Command 8 | b524eb8a-2a9b-4559-92b5-a6531742143b 9 | TBC_ 10 | The Building Coder, http://thebuildingcoder.typepad.com 11 | 12 | 13 | Application Application 14 | Application.dll 15 | Application.App 16 | 1a9b3711-754f-4b93-adf6-74b251c7c068 17 | TBC_ 18 | The Building Coder, http://thebuildingcoder.typepad.com 19 | 20 | 21 | -------------------------------------------------------------------------------- /Visual Studio Projects/WPFExamples/Bonus Stuff/CheckListFromRevit/CheckListFromRevit/checkwindow.xaml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 |