fix SoftNcRunner GM code normalization.
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="title" content="Class ActCooling | HiAPI-C# 2025 ">
|
||||
|
||||
<meta name="description" content="Represents a cooling action for machining operations.">
|
||||
<meta name="description" content="Represents a coolant state transition — the cutting-fluid delivery mode changes on the machine (from e.g. to ). Emitted by when the NC program executes M07/M08/M09.">
|
||||
<link rel="icon" href="../img/HiAPI.favicon.ico">
|
||||
<link rel="stylesheet" href="../public/docfx.min.css">
|
||||
<link rel="stylesheet" href="../public/main.css">
|
||||
@@ -97,7 +97,11 @@ Class ActCooling
|
||||
<dl><dt>Assembly</dt><dd>HiMech.dll</dd></dl>
|
||||
</div>
|
||||
|
||||
<div class="markdown summary"><p>Represents a cooling action for machining operations.</p>
|
||||
<div class="markdown summary"><p>Represents a coolant state transition — the cutting-fluid delivery
|
||||
mode changes on the machine (from e.g. <a class="xref" href="Hi.Numerical.CoolantMode.html#Hi_Numerical_CoolantMode_Off">Off</a>
|
||||
to <a class="xref" href="Hi.Numerical.CoolantMode.html#Hi_Numerical_CoolantMode_Flood">Flood</a>).
|
||||
Emitted by <a class="xref" href="Hi.NcParsers.Semantics.CoolantSemantic.html">CoolantSemantic</a> when
|
||||
the NC program executes M07/M08/M09.</p>
|
||||
</div>
|
||||
<div class="markdown conceptual"></div>
|
||||
|
||||
@@ -181,6 +185,38 @@ Class ActCooling
|
||||
</h2>
|
||||
|
||||
|
||||
<a id="Hi_Numerical_Acts_ActCooling__ctor_" data-uid="Hi.Numerical.Acts.ActCooling.#ctor*"></a>
|
||||
|
||||
<h3 id="Hi_Numerical_Acts_ActCooling__ctor_Hi_Numerical_CoolantMode_" data-uid="Hi.Numerical.Acts.ActCooling.#ctor(Hi.Numerical.CoolantMode)">
|
||||
ActCooling(CoolantMode)
|
||||
|
||||
</h3>
|
||||
|
||||
<div class="markdown level1 summary"><p>Initializes a new instance with an explicit coolant mode.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public ActCooling(CoolantMode mode)</code></pre>
|
||||
</div>
|
||||
|
||||
<h4 class="section">Parameters</h4>
|
||||
<dl class="parameters">
|
||||
<dt><code>mode</code> <a class="xref" href="Hi.Numerical.CoolantMode.html">CoolantMode</a></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a id="Hi_Numerical_Acts_ActCooling__ctor_" data-uid="Hi.Numerical.Acts.ActCooling.#ctor*"></a>
|
||||
|
||||
<h3 id="Hi_Numerical_Acts_ActCooling__ctor_System_Boolean_" data-uid="Hi.Numerical.Acts.ActCooling.#ctor(System.Boolean)">
|
||||
@@ -188,7 +224,9 @@ Class ActCooling
|
||||
|
||||
</h3>
|
||||
|
||||
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="Hi.Numerical.Acts.ActCooling.html">ActCooling</a> class with the specified cooling state.</p>
|
||||
<div class="markdown level1 summary"><p>Initializes a new instance from a legacy on/off bool.
|
||||
<code>true</code> maps to <a class="xref" href="Hi.Numerical.CoolantMode.html#Hi_Numerical_CoolantMode_Flood">Flood</a> (the pre-mist
|
||||
default); <code>false</code> maps to <a class="xref" href="Hi.Numerical.CoolantMode.html#Hi_Numerical_CoolantMode_Off">Off</a>.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
@@ -199,8 +237,7 @@ Class ActCooling
|
||||
<h4 class="section">Parameters</h4>
|
||||
<dl class="parameters">
|
||||
<dt><code>isOn</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></dt>
|
||||
<dd><p>Indicates whether the cooling is turned on.</p>
|
||||
</dd>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
|
||||
|
||||
@@ -225,12 +262,15 @@ Class ActCooling
|
||||
|
||||
</h3>
|
||||
|
||||
<div class="markdown level1 summary"><p>Gets or sets a value indicating whether the cooling is turned on.</p>
|
||||
<div class="markdown level1 summary"><p>Whether any coolant stream is active
|
||||
(<a class="xref" href="Hi.Numerical.CoolantMode.html#Hi_Numerical_CoolantMode_Flood">Flood</a> or <a class="xref" href="Hi.Numerical.CoolantMode.html#Hi_Numerical_CoolantMode_Mist">Mist</a>).
|
||||
Kept for callers that only care about on/off and predate the
|
||||
<a class="xref" href="Hi.Numerical.CoolantMode.html">CoolantMode</a> distinction.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public bool IsOn { get; set; }</code></pre>
|
||||
<pre><code class="lang-csharp hljs">public bool IsOn { get; }</code></pre>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -250,6 +290,38 @@ Class ActCooling
|
||||
|
||||
|
||||
|
||||
<a id="Hi_Numerical_Acts_ActCooling_Mode_" data-uid="Hi.Numerical.Acts.ActCooling.Mode*"></a>
|
||||
|
||||
<h3 id="Hi_Numerical_Acts_ActCooling_Mode" data-uid="Hi.Numerical.Acts.ActCooling.Mode">
|
||||
Mode
|
||||
|
||||
</h3>
|
||||
|
||||
<div class="markdown level1 summary"><p>The coolant delivery mode after this act has taken effect.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public CoolantMode Mode { get; set; }</code></pre>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<h4 class="section">Property Value</h4>
|
||||
<dl class="parameters">
|
||||
<dt><a class="xref" href="Hi.Numerical.CoolantMode.html">CoolantMode</a></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<h2 class="section" id="methods">Methods
|
||||
</h2>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user