fix SoftNcRunner GM code normalization.
This commit is contained in:
@@ -221,8 +221,8 @@ Class MachiningProject
|
||||
|
||||
<a id="Hi_MachiningProcs_MachiningProject__ctor_" data-uid="Hi.MachiningProcs.MachiningProject.#ctor*"></a>
|
||||
|
||||
<h3 id="Hi_MachiningProcs_MachiningProject__ctor_System_Xml_Linq_XElement_System_String_" data-uid="Hi.MachiningProcs.MachiningProject.#ctor(System.Xml.Linq.XElement,System.String)">
|
||||
MachiningProject(XElement, string)
|
||||
<h3 id="Hi_MachiningProcs_MachiningProject__ctor_System_Xml_Linq_XElement_System_String_System_IProgress_System_Object__" data-uid="Hi.MachiningProcs.MachiningProject.#ctor(System.Xml.Linq.XElement,System.String,System.IProgress{System.Object})">
|
||||
MachiningProject(XElement, string, IProgress<object>)
|
||||
|
||||
</h3>
|
||||
|
||||
@@ -231,7 +231,7 @@ Class MachiningProject
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public MachiningProject(XElement src, string baseDirectory)</code></pre>
|
||||
<pre><code class="lang-csharp hljs">public MachiningProject(XElement src, string baseDirectory, IProgress<object> progress)</code></pre>
|
||||
</div>
|
||||
|
||||
<h4 class="section">Parameters</h4>
|
||||
@@ -241,6 +241,9 @@ Class MachiningProject
|
||||
</dd>
|
||||
<dt><code>baseDirectory</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
|
||||
<dd><p>Base directory for resolving relative paths</p>
|
||||
</dd>
|
||||
<dt><code>progress</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.iprogress-1">IProgress</a><<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a>></dt>
|
||||
<dd><p>Progress reporter for XML deserialization.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
@@ -266,7 +269,7 @@ Class MachiningProject
|
||||
|
||||
</h3>
|
||||
|
||||
<div class="markdown level1 summary"><p>Gets the API version from the entry assembly.</p>
|
||||
<div class="markdown level1 summary"><p>Gets the API version from the HiNc assembly (where <a class="xref" href="Hi.MachiningProcs.MachiningProject.html">MachiningProject</a> is defined).</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
@@ -546,6 +549,38 @@ Class MachiningProject
|
||||
|
||||
|
||||
|
||||
<a id="Hi_MachiningProcs_MachiningProject_SoftNcRunner_" data-uid="Hi.MachiningProcs.MachiningProject.SoftNcRunner*"></a>
|
||||
|
||||
<h3 id="Hi_MachiningProcs_MachiningProject_SoftNcRunner" data-uid="Hi.MachiningProcs.MachiningProject.SoftNcRunner">
|
||||
SoftNcRunner
|
||||
|
||||
</h3>
|
||||
|
||||
<div class="markdown level1 summary"><p>Gets or sets the configurable NC runner. When set, replaces the legacy <a class="xref" href="Hi.Numerical.FilePlayers.HardNcRunner.html">HardNcRunner</a>.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public SoftNcRunner SoftNcRunner { get; set; }</code></pre>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<h4 class="section">Property Value</h4>
|
||||
<dl class="parameters">
|
||||
<dt><a class="xref" href="Hi.NcParsers.SoftNcRunner.html">SoftNcRunner</a></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a id="Hi_MachiningProcs_MachiningProject_TimeMapping_" data-uid="Hi.MachiningProcs.MachiningProject.TimeMapping*"></a>
|
||||
|
||||
<h3 id="Hi_MachiningProcs_MachiningProject_TimeMapping" data-uid="Hi.MachiningProcs.MachiningProject.TimeMapping">
|
||||
@@ -738,8 +773,8 @@ Class MachiningProject
|
||||
|
||||
<a id="Hi_MachiningProcs_MachiningProject_LoadFile_" data-uid="Hi.MachiningProcs.MachiningProject.LoadFile*"></a>
|
||||
|
||||
<h3 id="Hi_MachiningProcs_MachiningProject_LoadFile_System_String_" data-uid="Hi.MachiningProcs.MachiningProject.LoadFile(System.String)">
|
||||
LoadFile(string)
|
||||
<h3 id="Hi_MachiningProcs_MachiningProject_LoadFile_System_String_System_IProgress_System_Object__" data-uid="Hi.MachiningProcs.MachiningProject.LoadFile(System.String,System.IProgress{System.Object})">
|
||||
LoadFile(string, IProgress<object>)
|
||||
|
||||
</h3>
|
||||
|
||||
@@ -748,13 +783,16 @@ Class MachiningProject
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public static MachiningProject LoadFile(string projectFilePath)</code></pre>
|
||||
<pre><code class="lang-csharp hljs">public static MachiningProject LoadFile(string projectFilePath, IProgress<object> progress)</code></pre>
|
||||
</div>
|
||||
|
||||
<h4 class="section">Parameters</h4>
|
||||
<dl class="parameters">
|
||||
<dt><code>projectFilePath</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
|
||||
<dd><p>Path to the project file to load</p>
|
||||
</dd>
|
||||
<dt><code>progress</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.iprogress-1">IProgress</a><<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a>></dt>
|
||||
<dd><p>Progress reporter for XML deserialization.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user