Skip to content

Instantly share code, notes, and snippets.

View AleksandrPidlozhevich's full-sized avatar

Aliaksandr Pidlazhevich AleksandrPidlozhevich

View GitHub Profile
@AleksandrPidlozhevich
AleksandrPidlozhevich / ExportModels.cs
Last active April 10, 2025 17:49
RevitServerExport
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Autodesk.Revit.DB;
using System.IO;
using Autodesk.Revit.ApplicationServices;
using Autodesk.Revit.UI.Events;
@AleksandrPidlozhevich
AleksandrPidlozhevich / FontChangingCommand.cs
Last active January 16, 2024 19:41
Changing the font in a Revit file
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using System;
using System.Collections.Generic;
using System.Windows;
using System.Windows.Input;
namespace EEPRevitPlagin.EEPRPCommandModules.FontChanging
{
[Autodesk.Revit.Attributes.Transaction(Autodesk.Revit.Attributes.TransactionMode.Manual)]