This commit is contained in:
2025-09-24 09:26:04 +08:00
parent 1dbcb3764d
commit 56fe9c7d74
34 changed files with 390 additions and 175 deletions
@@ -2,9 +2,9 @@
<html>
<head>
<meta charset="utf-8">
<title>Enum CommentMarkEnum | HiAPI-C# 2025 </title>
<title>Enum CommentMark | HiAPI-C# 2025 </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Enum CommentMarkEnum | HiAPI-C# 2025 ">
<meta name="title" content="Enum CommentMark | HiAPI-C# 2025 ">
<meta name="description" content="Enumeration of different comment mark types used in NC code.">
<link rel="icon" href="../img/HiAPI.favicon.ico">
@@ -84,13 +84,13 @@
<nav id="breadcrumb"></nav>
</div>
<article data-uid="Hi.Numerical.CommentMarkEnum">
<article data-uid="Hi.Numerical.CommentMark">
<h1 id="Hi_Numerical_CommentMarkEnum" data-uid="Hi.Numerical.CommentMarkEnum" class="text-break">
Enum CommentMarkEnum
<h1 id="Hi_Numerical_CommentMark" data-uid="Hi.Numerical.CommentMark" class="text-break">
Enum CommentMark
</h1>
<div class="facts text-secondary">
@@ -103,7 +103,7 @@ Enum CommentMarkEnum
<div class="markdown conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public enum CommentMarkEnum</code></pre>
<pre><code class="lang-csharp hljs">public enum CommentMark</code></pre>
</div>
@@ -145,19 +145,19 @@ Enum CommentMarkEnum
<h2 id="fields">Fields
</h2>
<dl class="parameters">
<dt id="Hi_Numerical_CommentMarkEnum_DoubleSlash"><code>DoubleSlash = 3</code></dt>
<dt id="Hi_Numerical_CommentMark_DoubleSlash"><code>DoubleSlash = 3</code></dt>
<dd><p>Double slash style comments, e.g. //This is a comment.</p>
</dd>
<dt id="Hi_Numerical_CommentMarkEnum_HeadPercent"><code>HeadPercent = 4</code></dt>
<dt id="Hi_Numerical_CommentMark_HeadPercent"><code>HeadPercent = 4</code></dt>
<dd><p>Percent sign at the beginning style comments, e.g. %This is a comment.</p>
</dd>
<dt id="Hi_Numerical_CommentMarkEnum_Quote"><code>Quote = 1</code></dt>
<dt id="Hi_Numerical_CommentMark_Quote"><code>Quote = 1</code></dt>
<dd><p>Parenthesis style comments, e.g. (This is a comment).</p>
</dd>
<dt id="Hi_Numerical_CommentMarkEnum_Semicolon"><code>Semicolon = 2</code></dt>
<dt id="Hi_Numerical_CommentMark_Semicolon"><code>Semicolon = 2</code></dt>
<dd><p>Semicolon style comments, e.g. ;This is a comment.</p>
</dd>
@@ -177,8 +177,8 @@ Class NcComment
<a id="Hi_Numerical_NcComment__ctor_" data-uid="Hi.Numerical.NcComment.#ctor*"></a>
<h3 id="Hi_Numerical_NcComment__ctor_System_String_Hi_Numerical_CommentMarkEnum_" data-uid="Hi.Numerical.NcComment.#ctor(System.String,Hi.Numerical.CommentMarkEnum)">
NcComment(string, CommentMarkEnum)
<h3 id="Hi_Numerical_NcComment__ctor_System_String_Hi_Numerical_CommentMark_" data-uid="Hi.Numerical.NcComment.#ctor(System.String,Hi.Numerical.CommentMark)">
NcComment(string, CommentMark)
</h3>
@@ -187,7 +187,7 @@ Class NcComment
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public NcComment(string content, CommentMarkEnum commentSignEnum)</code></pre>
<pre><code class="lang-csharp hljs">public NcComment(string content, CommentMark commentSignEnum)</code></pre>
</div>
<h4 class="section">Parameters</h4>
@@ -195,7 +195,7 @@ Class NcComment
<dt><code>content</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd><p>The content of the comment without comment marks.</p>
</dd>
<dt><code>commentSignEnum</code> <a class="xref" href="Hi.Numerical.CommentMarkEnum.html">CommentMarkEnum</a></dt>
<dt><code>commentSignEnum</code> <a class="xref" href="Hi.Numerical.CommentMark.html">CommentMark</a></dt>
<dd><p>The type of comment mark to use.</p>
</dd>
</dl>
@@ -215,10 +215,10 @@ Class NcComment
</h2>
<a id="Hi_Numerical_NcComment_CommentMarkEnum_" data-uid="Hi.Numerical.NcComment.CommentMarkEnum*"></a>
<a id="Hi_Numerical_NcComment_CommentMark_" data-uid="Hi.Numerical.NcComment.CommentMark*"></a>
<h3 id="Hi_Numerical_NcComment_CommentMarkEnum" data-uid="Hi.Numerical.NcComment.CommentMarkEnum">
CommentMarkEnum
<h3 id="Hi_Numerical_NcComment_CommentMark" data-uid="Hi.Numerical.NcComment.CommentMark">
CommentMark
</h3>
@@ -227,7 +227,7 @@ Class NcComment
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public CommentMarkEnum CommentMarkEnum { get; set; }</code></pre>
<pre><code class="lang-csharp hljs">public CommentMark CommentMark { get; set; }</code></pre>
</div>
@@ -236,7 +236,7 @@ Class NcComment
<h4 class="section">Property Value</h4>
<dl class="parameters">
<dt><a class="xref" href="Hi.Numerical.CommentMarkEnum.html">CommentMarkEnum</a></dt>
<dt><a class="xref" href="Hi.Numerical.CommentMark.html">CommentMark</a></dt>
<dd></dd>
</dl>
@@ -1214,6 +1214,42 @@ Class NcFlagUtil
<a id="Hi_Numerical_NcFlagUtil_IsOnSimpleMachiningMode_" data-uid="Hi.Numerical.NcFlagUtil.IsOnSimpleMachiningMode*"></a>
<h3 id="Hi_Numerical_NcFlagUtil_IsOnSimpleMachiningMode_System_Collections_BitArray_" data-uid="Hi.Numerical.NcFlagUtil.IsOnSimpleMachiningMode(System.Collections.BitArray)">
IsOnSimpleMachiningMode(BitArray)
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static bool IsOnSimpleMachiningMode(this BitArray ncFlagBitArray)</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>ncFlagBitArray</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.bitarray">BitArray</a></dt>
<dd></dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></dt>
<dd></dd>
</dl>
<a id="Hi_Numerical_NcFlagUtil_IsRadiusCompensationEnabled_" data-uid="Hi.Numerical.NcFlagUtil.IsRadiusCompensationEnabled*"></a>
<h3 id="Hi_Numerical_NcFlagUtil_IsRadiusCompensationEnabled_System_Collections_BitArray_" data-uid="Hi.Numerical.NcFlagUtil.IsRadiusCompensationEnabled(System.Collections.BitArray)">
@@ -425,6 +425,120 @@ Class NcUtil
<a id="Hi_Numerical_NcUtil_GrabDoubleABC_" data-uid="Hi.Numerical.NcUtil.GrabDoubleABC*"></a>
<h3 id="Hi_Numerical_NcUtil_GrabDoubleABC_System_String__System_Boolean_" data-uid="Hi.Numerical.NcUtil.GrabDoubleABC(System.String@,System.Boolean)">
GrabDoubleABC(ref string, bool)
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static Vec3d GrabDoubleABC(ref string text, bool enableIntegerShrink)</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>text</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
<dt><code>enableIntegerShrink</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></dt>
<dd></dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><a class="xref" href="Hi.Geom.Vec3d.html">Vec3d</a></dt>
<dd></dd>
</dl>
<a id="Hi_Numerical_NcUtil_GrabDoubleXYZ_" data-uid="Hi.Numerical.NcUtil.GrabDoubleXYZ*"></a>
<h3 id="Hi_Numerical_NcUtil_GrabDoubleXYZ_System_String__System_Boolean_" data-uid="Hi.Numerical.NcUtil.GrabDoubleXYZ(System.String@,System.Boolean)">
GrabDoubleXYZ(ref string, bool)
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static Vec3d GrabDoubleXYZ(ref string text, bool enableIntegerShrink)</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>text</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
<dt><code>enableIntegerShrink</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></dt>
<dd></dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><a class="xref" href="Hi.Geom.Vec3d.html">Vec3d</a></dt>
<dd></dd>
</dl>
<a id="Hi_Numerical_NcUtil_GrabFlag_" data-uid="Hi.Numerical.NcUtil.GrabFlag*"></a>
<h3 id="Hi_Numerical_NcUtil_GrabFlag_System_String__System_String_" data-uid="Hi.Numerical.NcUtil.GrabFlag(System.String@,System.String)">
GrabFlag(ref string, string)
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static bool GrabFlag(ref string text, string tag)</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>text</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
<dt><code>tag</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></dt>
<dd></dd>
</dl>
<a id="Hi_Numerical_NcUtil_GrabHeadPercentComment_" data-uid="Hi.Numerical.NcUtil.GrabHeadPercentComment*"></a>
<h3 id="Hi_Numerical_NcUtil_GrabHeadPercentComment_System_String_Hi_Numerical_NcComment__" data-uid="Hi.Numerical.NcUtil.GrabHeadPercentComment(System.String,Hi.Numerical.NcComment@)">
@@ -261,7 +261,7 @@ Enums
</dd>
</dl>
<dl class="jumplist">
<dt><a class="xref" href="Hi.Numerical.CommentMarkEnum.html">CommentMarkEnum</a></dt>
<dt><a class="xref" href="Hi.Numerical.CommentMark.html">CommentMark</a></dt>
<dd><p>Enumeration of different comment mark types used in NC code.</p>
</dd>
</dl>
+1 -1
View File
@@ -2304,7 +2304,7 @@
<a href="Hi.Numerical.CncBrand.html" name="" title="CncBrand">CncBrand</a>
</li>
<li>
<a href="Hi.Numerical.CommentMarkEnum.html" name="" title="CommentMarkEnum">CommentMarkEnum</a>
<a href="Hi.Numerical.CommentMark.html" name="" title="CommentMark">CommentMark</a>
</li>
<li>
<a href="Hi.Numerical.CoordinateEntryDisplayee.html" name="" title="CoordinateEntryDisplayee">CoordinateEntryDisplayee</a>
File diff suppressed because one or more lines are too long