mirror of
https://github.com/jeremytammik/RevitSdkSamples.git
synced 2026-09-25 20:27:01 +00:00
integrate Revit 2025 SDK
This commit is contained in:
@@ -21,18 +21,14 @@
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using System.IO;
|
||||
using System.Reflection;
|
||||
using System.Diagnostics;
|
||||
|
||||
using Autodesk.Revit.UI;
|
||||
|
||||
using TaskDialog = Autodesk.Revit.UI.TaskDialog;
|
||||
|
||||
namespace Revit.SDK.Samples.ImportExport.CS
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -20,6 +20,8 @@
|
||||
// (Rights in Technical Data and Computer Software), as applicable.
|
||||
//
|
||||
|
||||
using System;
|
||||
|
||||
namespace Revit.SDK.Samples.ImportExport.CS
|
||||
{
|
||||
partial class ExportIMGOptionsForm
|
||||
@@ -35,9 +37,10 @@ namespace Revit.SDK.Samples.ImportExport.CS
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
if (disposing)
|
||||
{
|
||||
components.Dispose();
|
||||
components?.Dispose();
|
||||
((IDisposable)m_exportOptions)?.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
@@ -22,16 +22,13 @@
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
using Autodesk.Revit.DB;
|
||||
using Autodesk.Revit.UI;
|
||||
|
||||
using TaskDialog = Autodesk.Revit.UI.TaskDialog;
|
||||
|
||||
namespace Revit.SDK.Samples.ImportExport.CS
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -38,10 +38,8 @@ namespace Revit.SDK.Samples.ImportExport.CS
|
||||
#endregion
|
||||
|
||||
#region Class Properties
|
||||
/// <summary>
|
||||
/// Combine
|
||||
/// </summary>
|
||||
public bool Combine
|
||||
|
||||
internal bool Combine
|
||||
{
|
||||
get
|
||||
{
|
||||
|
||||
@@ -42,10 +42,11 @@ namespace Revit.SDK.Samples.ImportExport.CS
|
||||
/// </summary>
|
||||
private ExportPDFData m_data;
|
||||
|
||||
/// <summary>
|
||||
/// ExportPDFOptionsForm constructor
|
||||
/// </summary>
|
||||
public ExportPDFOptionsForm(ExportPDFData data)
|
||||
/// <summary>
|
||||
/// Constructor
|
||||
/// </summary>
|
||||
/// <param name="data">Pdf export data</param>
|
||||
public ExportPDFOptionsForm(ExportPDFData data)
|
||||
{
|
||||
m_data = data;
|
||||
InitializeComponent();
|
||||
|
||||
@@ -21,16 +21,13 @@
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using System.IO;
|
||||
|
||||
using Autodesk.Revit.UI;
|
||||
|
||||
using TaskDialog = Autodesk.Revit.UI.TaskDialog;
|
||||
|
||||
namespace Revit.SDK.Samples.ImportExport.CS
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user