This commit is contained in:
2025-12-30 15:43:10 +08:00
parent 955dab6e65
commit 7083653661
44 changed files with 1165 additions and 513 deletions
@@ -1991,7 +1991,8 @@ with the list items.</p>
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 summary"><p>Gets a sub-list view of the specified list within the given index range.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
@@ -2001,23 +2002,28 @@ with the list items.</p>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>src</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1">IList</a>&lt;TItem&gt;</dt>
<dd></dd>
<dd><p>The source list.</p>
</dd>
<dt><code>beginIndex</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></dt>
<dd></dd>
<dd><p>The starting index (inclusive).</p>
</dd>
<dt><code>endIndex</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></dt>
<dd></dd>
<dd><p>The ending index (exclusive).</p>
</dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><a class="xref" href="Hi.Common.Collections.SubList-1.html">SubList</a>&lt;TItem&gt;</dt>
<dd></dd>
<dd><p>A sub-list view of the specified range.</p>
</dd>
</dl>
<h4 class="section">Type Parameters</h4>
<dl class="parameters">
<dt><code>TItem</code></dt>
<dd></dd>
<dd><p>The type of items in the list.</p>
</dd>
</dl>
@@ -287,7 +287,8 @@ If return value is <a class="xref" href="Hi.Common.SearchResult.html#Hi_Common_S
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 summary"><p>Gets the ceil list index by seeking with the specified direction.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
@@ -297,30 +298,37 @@ If return value is <a class="xref" href="Hi.Common.SearchResult.html#Hi_Common_S
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>src</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2">SortedList</a>&lt;TKey, V&gt;</dt>
<dd></dd>
<dd><p>The source sorted list.</p>
</dd>
<dt><code>key</code> <span class="xref">TKey</span></dt>
<dd></dd>
<dd><p>The key to search for.</p>
</dd>
<dt><code>ceilListIndex</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></dt>
<dd></dd>
<dd><p>The output ceil list index.</p>
</dd>
<dt><code>seekingStartListIndex</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></dt>
<dd><p>start list index for seeking.</p>
<dd><p>Start list index for seeking.</p>
</dd>
<dt><code>seekDirection</code> <a class="xref" href="Hi.Common.Collections.SeekDirection.html">SeekDirection</a></dt>
<dd></dd>
<dd><p>The seek direction. Default is <a class="xref" href="Hi.Common.Collections.SeekDirection.html#Hi_Common_Collections_SeekDirection_Free">Free</a>.</p>
</dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><a class="xref" href="Hi.Common.SearchResult.html">SearchResult</a></dt>
<dd></dd>
<dd><p>The search result.</p>
</dd>
</dl>
<h4 class="section">Type Parameters</h4>
<dl class="parameters">
<dt><code>TKey</code></dt>
<dd></dd>
<dd><p>The type of keys in the sorted list.</p>
</dd>
<dt><code>V</code></dt>
<dd></dd>
<dd><p>The type of values in the sorted list.</p>
</dd>
</dl>
@@ -656,7 +664,8 @@ If return value is <a class="xref" href="Hi.Common.SearchResult.html#Hi_Common_S
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 summary"><p>Gets the floor list index by seeking with the specified direction.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
@@ -666,30 +675,37 @@ If return value is <a class="xref" href="Hi.Common.SearchResult.html#Hi_Common_S
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>src</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.sortedlist-2">SortedList</a>&lt;TKey, V&gt;</dt>
<dd></dd>
<dd><p>The source sorted list.</p>
</dd>
<dt><code>key</code> <span class="xref">TKey</span></dt>
<dd></dd>
<dd><p>The key to search for.</p>
</dd>
<dt><code>floorListIndex</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></dt>
<dd></dd>
<dd><p>The output floor list index.</p>
</dd>
<dt><code>seekingStartListIndex</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></dt>
<dd><p>start list index for seeking.</p>
<dd><p>Start list index for seeking.</p>
</dd>
<dt><code>seekDirection</code> <a class="xref" href="Hi.Common.Collections.SeekDirection.html">SeekDirection</a></dt>
<dd></dd>
<dd><p>The seek direction. Default is <a class="xref" href="Hi.Common.Collections.SeekDirection.html#Hi_Common_Collections_SeekDirection_Free">Free</a>.</p>
</dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><a class="xref" href="Hi.Common.SearchResult.html">SearchResult</a></dt>
<dd></dd>
<dd><p>The search result.</p>
</dd>
</dl>
<h4 class="section">Type Parameters</h4>
<dl class="parameters">
<dt><code>TKey</code></dt>
<dd></dd>
<dd><p>The type of keys in the sorted list.</p>
</dd>
<dt><code>V</code></dt>
<dd></dd>
<dd><p>The type of values in the sorted list.</p>
</dd>
</dl>
@@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Class SubList&lt;T&gt; | HiAPI-C# 2025 ">
<meta name="description" content="Represents a sub-list view of a source list within a specified index range.">
<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,8 @@ Class SubList&lt;T&gt;
<dl><dt>Assembly</dt><dd>HiGeom.dll</dd></dl>
</div>
<div class="markdown summary"></div>
<div class="markdown summary"><p>Represents a sub-list view of a source list within a specified index range.</p>
</div>
<div class="markdown conceptual"></div>
<div class="codewrapper">
@@ -109,7 +110,8 @@ Class SubList&lt;T&gt;
<h4 class="section">Type Parameters</h4>
<dl class="parameters">
<dt><code>T</code></dt>
<dd></dd>
<dd><p>The type of elements in the list.</p>
</dd>
</dl>
<dl class="typelist inheritance">
@@ -258,7 +260,8 @@ Class SubList&lt;T&gt;
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 summary"><p>Initializes a new instance.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
@@ -268,11 +271,14 @@ Class SubList&lt;T&gt;
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>source</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1">IList</a>&lt;T&gt;</dt>
<dd></dd>
<dd><p>The source list.</p>
</dd>
<dt><code>beginIndex</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></dt>
<dd></dd>
<dd><p>The starting index (inclusive).</p>
</dd>
<dt><code>endIndex</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></dt>
<dd></dd>
<dd><p>The ending index (exclusive).</p>
</dd>
</dl>
@@ -131,7 +131,8 @@ Classes
</dl>
<dl class="jumplist">
<dt><a class="xref" href="Hi.Common.Collections.SubList-1.html">SubList&lt;T&gt;</a></dt>
<dd></dd>
<dd><p>Represents a sub-list view of a source list within a specified index range.</p>
</dd>
</dl>
<dl class="jumplist">
<dt><a class="xref" href="Hi.Common.Collections.SynList-1.html">SynList&lt;T&gt;</a></dt>
@@ -954,7 +954,8 @@ A value of -1 indicates that the display should follow the end of the strip.</p>
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 summary"><p>Limits the chart range based on the time range of the strip positions.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
@@ -964,7 +965,8 @@ A value of -1 indicates that the display should follow the end of the strip.</p>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>isLocked</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></dt>
<dd></dd>
<dd><p>Whether the strip positions are locked.</p>
</dd>
</dl>
@@ -2447,7 +2447,8 @@ Otherwise, interpolate by <code class="paramref">ratio</code>.</p>
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 summary"><p>Returns the larger of two values.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
@@ -2457,21 +2458,25 @@ Otherwise, interpolate by <code class="paramref">ratio</code>.</p>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>a</code> <span class="xref">T</span></dt>
<dd></dd>
<dd><p>The first value to compare.</p>
</dd>
<dt><code>b</code> <span class="xref">T</span></dt>
<dd></dd>
<dd><p>The second value to compare.</p>
</dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><span class="xref">T</span></dt>
<dd></dd>
<dd><p>The larger of the two values.</p>
</dd>
</dl>
<h4 class="section">Type Parameters</h4>
<dl class="parameters">
<dt><code>T</code></dt>
<dd></dd>
<dd><p>The type of values to compare.</p>
</dd>
</dl>
@@ -2490,7 +2495,8 @@ Otherwise, interpolate by <code class="paramref">ratio</code>.</p>
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 summary"><p>Returns the smaller of two values.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
@@ -2500,21 +2506,25 @@ Otherwise, interpolate by <code class="paramref">ratio</code>.</p>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>a</code> <span class="xref">T</span></dt>
<dd></dd>
<dd><p>The first value to compare.</p>
</dd>
<dt><code>b</code> <span class="xref">T</span></dt>
<dd></dd>
<dd><p>The second value to compare.</p>
</dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><span class="xref">T</span></dt>
<dd></dd>
<dd><p>The smaller of the two values.</p>
</dd>
</dl>
<h4 class="section">Type Parameters</h4>
<dl class="parameters">
<dt><code>T</code></dt>
<dd></dd>
<dd><p>The type of values to compare.</p>
</dd>
</dl>
@@ -290,37 +290,6 @@ Apply relative file path from <a class="xref" href="Hi.MachiningProcs.ProxyProje
<a id="Hi_MachiningProcs_ProxyProjectService_MachiningProjectPath_" data-uid="Hi.MachiningProcs.ProxyProjectService.MachiningProjectPath*"></a>
<h3 id="Hi_MachiningProcs_ProxyProjectService_MachiningProjectPath" data-uid="Hi.MachiningProcs.ProxyProjectService.MachiningProjectPath">
MachiningProjectPath
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public string MachiningProjectPath { get; set; }</code></pre>
</div>
<h4 class="section">Property Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<a id="Hi_MachiningProcs_ProxyProjectService_ProxyConfig_" data-uid="Hi.MachiningProcs.ProxyProjectService.ProxyConfig*"></a>
<h3 id="Hi_MachiningProcs_ProxyProjectService_ProxyConfig" data-uid="Hi.MachiningProcs.ProxyProjectService.ProxyConfig">
@@ -350,39 +350,6 @@ public static NcOptimizationEmbeddedLogMode EmbeddedLogMode { get; set; }</code>
<a id="Hi_MachiningProcs_RuntimeApi_EnableAutoMapOnSelectionEnd_" data-uid="Hi.MachiningProcs.RuntimeApi.EnableAutoMapOnSelectionEnd*"></a>
<h3 id="Hi_MachiningProcs_RuntimeApi_EnableAutoMapOnSelectionEnd" data-uid="Hi.MachiningProcs.RuntimeApi.EnableAutoMapOnSelectionEnd">
EnableAutoMapOnSelectionEnd
</h3>
<div class="markdown level1 summary"><p>Gets or sets whether to automatically map selections when they end.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[JsAce]
public bool EnableAutoMapOnSelectionEnd { get; set; }</code></pre>
</div>
<h4 class="section">Property Value</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_MachiningProcs_RuntimeApi_EnableCollisionDetection_" data-uid="Hi.MachiningProcs.RuntimeApi.EnableCollisionDetection*"></a>
<h3 id="Hi_MachiningProcs_RuntimeApi_EnableCollisionDetection" data-uid="Hi.MachiningProcs.RuntimeApi.EnableCollisionDetection">
@@ -449,6 +416,39 @@ public static bool EnableIndividualStepAdjustmentLog { get; set; }</code></pre>
<a id="Hi_MachiningProcs_RuntimeApi_EnableMapOnSelectionEnd_" data-uid="Hi.MachiningProcs.RuntimeApi.EnableMapOnSelectionEnd*"></a>
<h3 id="Hi_MachiningProcs_RuntimeApi_EnableMapOnSelectionEnd" data-uid="Hi.MachiningProcs.RuntimeApi.EnableMapOnSelectionEnd">
EnableMapOnSelectionEnd
</h3>
<div class="markdown level1 summary"><p>Gets or sets whether to automatically map selections when they end.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[JsAce]
public bool EnableMapOnSelectionEnd { get; set; }</code></pre>
</div>
<h4 class="section">Property Value</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_MachiningProcs_RuntimeApi_EnablePauseOnCollision_" data-uid="Hi.MachiningProcs.RuntimeApi.EnablePauseOnCollision*"></a>
<h3 id="Hi_MachiningProcs_RuntimeApi_EnablePauseOnCollision" data-uid="Hi.MachiningProcs.RuntimeApi.EnablePauseOnCollision">
@@ -264,38 +264,6 @@ Class CsvNcStep
<a id="Hi_Mapping_CsvNcStep_ActualTimeTag_" data-uid="Hi.Mapping.CsvNcStep.ActualTimeTag*"></a>
<h3 id="Hi_Mapping_CsvNcStep_ActualTimeTag" data-uid="Hi.Mapping.CsvNcStep.ActualTimeTag">
ActualTimeTag
</h3>
<div class="markdown level1 summary"><p>Gets or sets the column title for time in the CSV.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static string ActualTimeTag { get; set; }</code></pre>
</div>
<h4 class="section">Property Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<a id="Hi_Mapping_CsvNcStep_DoubleFlexList_" data-uid="Hi.Mapping.CsvNcStep.DoubleFlexList*"></a>
<h3 id="Hi_Mapping_CsvNcStep_DoubleFlexList" data-uid="Hi.Mapping.CsvNcStep.DoubleFlexList">
@@ -360,102 +328,6 @@ Class CsvNcStep
<a id="Hi_Mapping_CsvNcStep_FileNoTag_" data-uid="Hi.Mapping.CsvNcStep.FileNoTag*"></a>
<h3 id="Hi_Mapping_CsvNcStep_FileNoTag" data-uid="Hi.Mapping.CsvNcStep.FileNoTag">
FileNoTag
</h3>
<div class="markdown level1 summary"><p>Gets or sets the column title for file number in the CSV.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static string FileNoTag { get; set; }</code></pre>
</div>
<h4 class="section">Property Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<a id="Hi_Mapping_CsvNcStep_LineNoTag_" data-uid="Hi.Mapping.CsvNcStep.LineNoTag*"></a>
<h3 id="Hi_Mapping_CsvNcStep_LineNoTag" data-uid="Hi.Mapping.CsvNcStep.LineNoTag">
LineNoTag
</h3>
<div class="markdown level1 summary"><p>Gets or sets the column title for line number in the CSV.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static string LineNoTag { get; set; }</code></pre>
</div>
<h4 class="section">Property Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<a id="Hi_Mapping_CsvNcStep_McTag_" data-uid="Hi.Mapping.CsvNcStep.McTag*"></a>
<h3 id="Hi_Mapping_CsvNcStep_McTag" data-uid="Hi.Mapping.CsvNcStep.McTag">
McTag
</h3>
<div class="markdown level1 summary"><p>Gets or sets the column title for machine coordinates in the CSV.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static string McTag { get; set; }</code></pre>
</div>
<h4 class="section">Property Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<a id="Hi_Mapping_CsvNcStep_McXyzabc_" data-uid="Hi.Mapping.CsvNcStep.McXyzabc*"></a>
<h3 id="Hi_Mapping_CsvNcStep_McXyzabc" data-uid="Hi.Mapping.CsvNcStep.McXyzabc">
@@ -0,0 +1,674 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Class MappingUtil | HiAPI-C# 2025 </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Class MappingUtil | HiAPI-C# 2025 ">
<link rel="icon" href="../img/HiAPI.favicon.ico">
<link rel="stylesheet" href="../public/docfx.min.css">
<link rel="stylesheet" href="../public/main.css">
<meta name="docfx:navrel" content="../toc.html">
<meta name="docfx:tocrel" content="toc.html">
<meta name="docfx:rel" content="../">
<meta name="loc:inThisArticle" content="In this article">
<meta name="loc:searchResultsCount" content="{count} results for &quot;{query}&quot;">
<meta name="loc:searchNoResults" content="No results for &quot;{query}&quot;">
<meta name="loc:tocFilter" content="Filter by title">
<meta name="loc:nextArticle" content="Next">
<meta name="loc:prevArticle" content="Previous">
<meta name="loc:themeLight" content="Light">
<meta name="loc:themeDark" content="Dark">
<meta name="loc:themeAuto" content="Auto">
<meta name="loc:changeTheme" content="Change theme">
<meta name="loc:copy" content="Copy">
<meta name="loc:downloadPdf" content="Download PDF">
<script type="module" src="./../public/docfx.min.js"></script>
<script>
const theme = localStorage.getItem('theme') || 'auto'
document.documentElement.setAttribute('data-bs-theme', theme === 'auto' ? (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light') : theme)
</script>
</head>
<body class="tex2jax_ignore" data-layout="" data-yaml-mime="ManagedReference">
<header class="bg-body border-bottom">
<nav id="autocollapse" class="navbar navbar-expand-md" role="navigation">
<div class="container-xxl flex-nowrap">
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../img/HiAPI.logo.png" alt="">
</a>
<button class="btn btn-lg d-md-none border-0" type="button" data-bs-toggle="collapse" data-bs-target="#navpanel" aria-controls="navpanel" aria-expanded="false" aria-label="Toggle navigation">
<i class="bi bi-three-dots"></i>
</button>
<div class="collapse navbar-collapse" id="navpanel">
<div id="navbar">
<form class="search" role="search" id="search">
<i class="bi bi-search"></i>
<input class="form-control" id="search-query" type="search" disabled placeholder="Search" autocomplete="off" aria-label="Search">
</form>
</div>
</div>
</div>
</nav>
</header>
<main class="container-xxl">
<div class="toc-offcanvas">
<div class="offcanvas-md offcanvas-start" tabindex="-1" id="tocOffcanvas" aria-labelledby="tocOffcanvasLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="tocOffcanvasLabel">Table of Contents</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" data-bs-target="#tocOffcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<nav class="toc" id="toc"></nav>
</div>
</div>
</div>
<div class="content">
<div class="actionbar">
<button class="btn btn-lg border-0 d-md-none" type="button" data-bs-toggle="offcanvas" data-bs-target="#tocOffcanvas" aria-controls="tocOffcanvas" aria-expanded="false" aria-label="Show table of contents">
<i class="bi bi-list"></i>
</button>
<nav id="breadcrumb"></nav>
</div>
<article data-uid="Hi.Mapping.MappingUtil">
<h1 id="Hi_Mapping_MappingUtil" data-uid="Hi.Mapping.MappingUtil" class="text-break">
Class MappingUtil
</h1>
<div class="facts text-secondary">
<dl><dt>Namespace</dt><dd><a class="xref" href="Hi.html">Hi</a>.<a class="xref" href="Hi.Mapping.html">Mapping</a></dd></dl>
<dl><dt>Assembly</dt><dd>HiMech.dll</dd></dl>
</div>
<div class="markdown summary"></div>
<div class="markdown conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static class MappingUtil</code></pre>
</div>
<dl class="typelist inheritance">
<dt>Inheritance</dt>
<dd>
<div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
<div><span class="xref">MappingUtil</span></div>
</dd>
</dl>
<dl class="typelist inheritedMembers">
<dt>Inherited Members</dt>
<dd>
<div>
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)">object.Equals(object)</a>
</div>
<div>
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)">object.Equals(object, object)</a>
</div>
<div>
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.gethashcode">object.GetHashCode()</a>
</div>
<div>
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.gettype">object.GetType()</a>
</div>
<div>
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone">object.MemberwiseClone()</a>
</div>
<div>
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.referenceequals">object.ReferenceEquals(object, object)</a>
</div>
<div>
<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.tostring">object.ToString()</a>
</div>
</dd></dl>
<h2 class="section" id="fields">Fields
</h2>
<h3 id="Hi_Mapping_MappingUtil_ActualTimeTag" data-uid="Hi.Mapping.MappingUtil.ActualTimeTag">
ActualTimeTag
</h3>
<div class="markdown level1 summary"><p>Gets or sets the column title for actual time in the CSV.
The actual time basically obtained by the external data from controller.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string ActualTimeTag = &quot;ActualTime&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_CutterLocationPrefix" data-uid="Hi.Mapping.MappingUtil.CutterLocationPrefix">
CutterLocationPrefix
</h3>
<div class="markdown level1 summary"><p>Cutter Location Prefix Tag for CSV Parsing.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string CutterLocationPrefix = &quot;CL.&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_DurationTag" data-uid="Hi.Mapping.MappingUtil.DurationTag">
DurationTag
</h3>
<div class="markdown level1 summary"><p>Duration tag for CSV parsing.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string DurationTag = &quot;StepDuration&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_FeedrateTag_mmdmin" data-uid="Hi.Mapping.MappingUtil.FeedrateTag_mmdmin">
FeedrateTag_mmdmin
</h3>
<div class="markdown level1 summary"><p>Feedrate for Simulator Tag for CSV Parsing.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string FeedrateTag_mmdmin = &quot;Feedrate_mmdmin&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_FileNoTag" data-uid="Hi.Mapping.MappingUtil.FileNoTag">
FileNoTag
</h3>
<div class="markdown level1 summary"><p>Gets or sets the column title for file number in the CSV.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string FileNoTag = &quot;FileNo&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_HolderMomentPrefix" data-uid="Hi.Mapping.MappingUtil.HolderMomentPrefix">
HolderMomentPrefix
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string HolderMomentPrefix = &quot;Holder.M&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_LineBeginCsScriptTag" data-uid="Hi.Mapping.MappingUtil.LineBeginCsScriptTag">
LineBeginCsScriptTag
</h3>
<div class="markdown level1 summary"><p>LineBeginCsScript Tag for CSV Parsing.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string LineBeginCsScriptTag = &quot;LineBeginCsScript&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_LineEndCsScriptTag" data-uid="Hi.Mapping.MappingUtil.LineEndCsScriptTag">
LineEndCsScriptTag
</h3>
<div class="markdown level1 summary"><p>LineEndCsScript Tag for CSV Parsing.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string LineEndCsScriptTag = &quot;LineEndCsScript&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_LineNoTag" data-uid="Hi.Mapping.MappingUtil.LineNoTag">
LineNoTag
</h3>
<div class="markdown level1 summary"><p>Gets or sets the column title for line number in the CSV.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string LineNoTag = &quot;LineNo&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_MachineCoordinatePrefix" data-uid="Hi.Mapping.MappingUtil.MachineCoordinatePrefix">
MachineCoordinatePrefix
</h3>
<div class="markdown level1 summary"><p>Machine Coordinate Prefix Tag for CSV Parsing.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string MachineCoordinatePrefix = &quot;MC.&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_SpindleDirectionTag" data-uid="Hi.Mapping.MappingUtil.SpindleDirectionTag">
SpindleDirectionTag
</h3>
<div class="markdown level1 summary"><p>Spindle direction Tag for CSV Parsing.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string SpindleDirectionTag = &quot;Spd.Dir.&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_SpindleSpeedTag_rpm" data-uid="Hi.Mapping.MappingUtil.SpindleSpeedTag_rpm">
SpindleSpeedTag_rpm
</h3>
<div class="markdown level1 summary"><p>Spindle speed for Simulator Tag for CSV Parsing.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string SpindleSpeedTag_rpm = &quot;SpindleSpeed_rpm&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_TimeTag" data-uid="Hi.Mapping.MappingUtil.TimeTag">
TimeTag
</h3>
<div class="markdown level1 summary"><p>Gets or sets the column title for time in the CSV.
The time generally obtained by the simulated data.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string TimeTag = &quot;Time&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_ToolForcePrefix" data-uid="Hi.Mapping.MappingUtil.ToolForcePrefix">
ToolForcePrefix
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string ToolForcePrefix = &quot;Tool.F&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_ToolIdTag" data-uid="Hi.Mapping.MappingUtil.ToolIdTag">
ToolIdTag
</h3>
<div class="markdown level1 summary"><p>Tool ID Tag for CSV Parsing.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string ToolIdTag = &quot;ToolId&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h3 id="Hi_Mapping_MappingUtil_WorkpieceForcePrefix" data-uid="Hi.Mapping.MappingUtil.WorkpieceForcePrefix">
WorkpieceForcePrefix
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const string WorkpieceForcePrefix = &quot;Workpiece.F&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
</article>
<div class="contribution d-print-none">
</div>
</div>
<div class="affix">
<nav id="affix"></nav>
</div>
</main>
<div class="container-xxl search-results" id="search-results"></div>
<footer class="border-top text-secondary">
<div class="container-xxl">
<div class="flex-fill">
<span> Copyright © 2025 <a href='https://superhightech.com.tw'>Tech Coordinate</a>. All rights reserved. <a href='https://superhightech.com.tw'>超級高科技股份有限公司</a> © 2025 版權所有 </span>
</div>
</div>
</footer>
</body>
</html>
@@ -105,6 +105,10 @@ Classes
This class manages the loading and caching of time shot data from measurement files.</p>
</dd>
</dl>
<dl class="jumplist">
<dt><a class="xref" href="Hi.Mapping.MappingUtil.html">MappingUtil</a></dt>
<dd></dd>
</dl>
<dl class="jumplist">
<dt><a class="xref" href="Hi.Mapping.StepTimeShotUtil.html">StepTimeShotUtil</a></dt>
<dd><p>Utility methods for working with time-based shots (measurements) and mapping them to machining steps.</p>
@@ -280,10 +280,10 @@ Class CsvRunnerConfig
<a id="Hi_Numerical_FilePlayers_CsvRunnerConfig_CutterLocationPrefixTag_" data-uid="Hi.Numerical.FilePlayers.CsvRunnerConfig.CutterLocationPrefixTag*"></a>
<a id="Hi_Numerical_FilePlayers_CsvRunnerConfig_CutterLocationPrefix_" data-uid="Hi.Numerical.FilePlayers.CsvRunnerConfig.CutterLocationPrefix*"></a>
<h3 id="Hi_Numerical_FilePlayers_CsvRunnerConfig_CutterLocationPrefixTag" data-uid="Hi.Numerical.FilePlayers.CsvRunnerConfig.CutterLocationPrefixTag">
CutterLocationPrefixTag
<h3 id="Hi_Numerical_FilePlayers_CsvRunnerConfig_CutterLocationPrefix" data-uid="Hi.Numerical.FilePlayers.CsvRunnerConfig.CutterLocationPrefix">
CutterLocationPrefix
</h3>
@@ -292,7 +292,7 @@ Class CsvRunnerConfig
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public string CutterLocationPrefixTag { get; set; }</code></pre>
<pre><code class="lang-csharp hljs">public string CutterLocationPrefix { get; set; }</code></pre>
</div>
@@ -440,10 +440,10 @@ Class CsvRunnerConfig
<a id="Hi_Numerical_FilePlayers_CsvRunnerConfig_MachineCoordinatePrefixTag_" data-uid="Hi.Numerical.FilePlayers.CsvRunnerConfig.MachineCoordinatePrefixTag*"></a>
<a id="Hi_Numerical_FilePlayers_CsvRunnerConfig_MachineCoordinatePrefix_" data-uid="Hi.Numerical.FilePlayers.CsvRunnerConfig.MachineCoordinatePrefix*"></a>
<h3 id="Hi_Numerical_FilePlayers_CsvRunnerConfig_MachineCoordinatePrefixTag" data-uid="Hi.Numerical.FilePlayers.CsvRunnerConfig.MachineCoordinatePrefixTag">
MachineCoordinatePrefixTag
<h3 id="Hi_Numerical_FilePlayers_CsvRunnerConfig_MachineCoordinatePrefix" data-uid="Hi.Numerical.FilePlayers.CsvRunnerConfig.MachineCoordinatePrefix">
MachineCoordinatePrefix
</h3>
@@ -452,7 +452,7 @@ Class CsvRunnerConfig
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public string MachineCoordinatePrefixTag { get; set; }</code></pre>
<pre><code class="lang-csharp hljs">public string MachineCoordinatePrefix { get; set; }</code></pre>
</div>
@@ -254,7 +254,8 @@ Class DistributedQueueTaskStarter
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 summary"><p>Gets or sets the thread priority for executing tasks. Default is <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.threading.threadpriority#system-threading-threadpriority-belownormal">BelowNormal</a>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
@@ -1617,7 +1617,7 @@ Class RenderingCanvas
</h3>
<div class="markdown level1 summary"><p>Processes Windows messages.</p>
<div class="markdown level1 summary"><p>Processes Windows messages, handling touch input and forwarding other messages to the base class.</p>
</div>
<div class="markdown level1 conceptual"></div>
@@ -1628,7 +1628,7 @@ Class RenderingCanvas
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>m</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.message">Message</a></dt>
<dd><p>The Windows <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.message">Message</a> to process.</p>
<dd><p>The Windows message to process.</p>
</dd>
</dl>
@@ -1789,7 +1789,8 @@ This class is usually used for debug due to its simplicity.</p>
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 summary"><p>Gets or sets the displayee object for rendering.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
+3
View File
@@ -1397,6 +1397,9 @@
<li>
<a href="Hi.Mapping.ITimeShot.html" name="" title="ITimeShot">ITimeShot</a>
</li>
<li>
<a href="Hi.Mapping.MappingUtil.html" name="" title="MappingUtil">MappingUtil</a>
</li>
<li>
<a href="Hi.Mapping.StepTimeShotUtil.html" name="" title="StepTimeShotUtil">StepTimeShotUtil</a>
</li>
File diff suppressed because one or more lines are too long