mirror of
https://github.com/jeremytammik/RevitSdkSamples.git
synced 2026-08-06 05:01:35 +00:00
33 lines
683 B
C#
33 lines
683 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Revit.SDK.Samples.DatumsModification.CS
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public partial class PropogateSetting : Form
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public PropogateSetting()
|
|
{
|
|
InitializeComponent();
|
|
foreach (string name in DatumPropagation.viewDic.Keys)
|
|
{
|
|
this.propagationViewList.Items.Add(name);
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|