This commit is contained in:
2025-12-27 12:02:48 +08:00
parent f74d06f299
commit 1e41b2def5
23 changed files with 258 additions and 136 deletions
@@ -338,12 +338,13 @@ If the display end is set to -1, returns the total number of positions.</p>
</h3>
<div class="markdown level1 summary"><p>Synchoronized Chart Time Range.
The value is possible to be null for the un-available status.</p>
Always not null.
The members' value is possible to be null for the un-available status.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Range&lt;TimeSpan&gt; ChartRange { get; set; }</code></pre>
<pre><code class="lang-csharp hljs">public Range&lt;TimeSpan?&gt; ChartRange { get; }</code></pre>
</div>
@@ -352,7 +353,7 @@ The value is possible to be null for the un-available status.</p>
<h4 class="section">Property Value</h4>
<dl class="parameters">
<dt><a class="xref" href="Hi.Common.Range-1.html">Range</a>&lt;<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.timespan">TimeSpan</a>&gt;</dt>
<dt><a class="xref" href="Hi.Common.Range-1.html">Range</a>&lt;<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.timespan">TimeSpan</a>?&gt;</dt>
<dd></dd>
</dl>
@@ -946,6 +947,37 @@ A value of -1 indicates that the display should follow the end of the strip.</p>
<a id="Hi_CutterLocations_ClStrips_ClStrip_LimitChartRange_" data-uid="Hi.CutterLocations.ClStrips.ClStrip.LimitChartRange*"></a>
<h3 id="Hi_CutterLocations_ClStrips_ClStrip_LimitChartRange_System_Boolean_" data-uid="Hi.CutterLocations.ClStrips.ClStrip.LimitChartRange(System.Boolean)">
LimitChartRange(bool)
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void LimitChartRange(bool isLocked)</code></pre>
</div>
<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>
</dl>
<a id="Hi_CutterLocations_ClStrips_ClStrip_RefreshDrawing_" data-uid="Hi.CutterLocations.ClStrips.ClStrip.RefreshDrawing*"></a>
<h3 id="Hi_CutterLocations_ClStrips_ClStrip_RefreshDrawing" data-uid="Hi.CutterLocations.ClStrips.ClStrip.RefreshDrawing">
@@ -1080,8 +1112,8 @@ A value of -1 indicates that the display should follow the end of the strip.</p>
<a id="Hi_CutterLocations_ClStrips_ClStrip_SetDispSegment_" data-uid="Hi.CutterLocations.ClStrips.ClStrip.SetDispSegment*"></a>
<h3 id="Hi_CutterLocations_ClStrips_ClStrip_SetDispSegment_System_Int32_System_Int32_System_Object_System_Int32_" data-uid="Hi.CutterLocations.ClStrips.ClStrip.SetDispSegment(System.Int32,System.Int32,System.Object,System.Int32)">
SetDispSegment(int, int, object, int)
<h3 id="Hi_CutterLocations_ClStrips_ClStrip_SetDispSegment_System_Int32_System_Int32_System_Object_" data-uid="Hi.CutterLocations.ClStrips.ClStrip.SetDispSegment(System.Int32,System.Int32,System.Object)">
SetDispSegment(int, int, object)
</h3>
@@ -1091,7 +1123,7 @@ This method sets both the beginning and ending positions of the display range.</
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void SetDispSegment(int beginIndex, int endIndex, object caller, int lowestLength = 2)</code></pre>
<pre><code class="lang-csharp hljs">public void SetDispSegment(int beginIndex, int endIndex, object caller)</code></pre>
</div>
<h4 class="section">Parameters</h4>
@@ -1104,9 +1136,6 @@ This method sets both the beginning and ending positions of the display range.</
</dd>
<dt><code>caller</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></dt>
<dd><p>The caller object that requests the display range change. Used for event notifications.</p>
</dd>
<dt><code>lowestLength</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></dt>
<dd><p>The minimum length of the display range. Currently not used in the implementation. Default is 2.</p>
</dd>
</dl>
@@ -1270,34 +1299,6 @@ This method sets both the beginning and ending positions of the display range.</
<a id="Hi_CutterLocations_ClStrips_ClStrip_UpdateChartRangeByDispSegment_" data-uid="Hi.CutterLocations.ClStrips.ClStrip.UpdateChartRangeByDispSegment*"></a>
<h3 id="Hi_CutterLocations_ClStrips_ClStrip_UpdateChartRangeByDispSegment" data-uid="Hi.CutterLocations.ClStrips.ClStrip.UpdateChartRangeByDispSegment">
UpdateChartRangeByDispSegment()
</h3>
<div class="markdown level1 summary"><p>Update Chart Time Range By DispSegment.
Internal Use Only.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void UpdateChartRangeByDispSegment()</code></pre>
</div>
<a id="Hi_CutterLocations_ClStrips_ClStrip_UpdateDispSegmentByChartRange_" data-uid="Hi.CutterLocations.ClStrips.ClStrip.UpdateDispSegmentByChartRange*"></a>
<h3 id="Hi_CutterLocations_ClStrips_ClStrip_UpdateDispSegmentByChartRange_System_Object_" data-uid="Hi.CutterLocations.ClStrips.ClStrip.UpdateDispSegmentByChartRange(System.Object)">
@@ -2440,6 +2440,92 @@ Otherwise, interpolate by <code class="paramref">ratio</code>.</p>
<a id="Hi_Geom_MathUtil_Max_" data-uid="Hi.Geom.MathUtil.Max*"></a>
<h3 id="Hi_Geom_MathUtil_Max__1___0___0_" data-uid="Hi.Geom.MathUtil.Max``1(``0,``0)">
Max&lt;T&gt;(T, T)
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static T Max&lt;T&gt;(T a, T b) where T : IComparable&lt;T&gt;</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>a</code> <span class="xref">T</span></dt>
<dd></dd>
<dt><code>b</code> <span class="xref">T</span></dt>
<dd></dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><span class="xref">T</span></dt>
<dd></dd>
</dl>
<h4 class="section">Type Parameters</h4>
<dl class="parameters">
<dt><code>T</code></dt>
<dd></dd>
</dl>
<a id="Hi_Geom_MathUtil_Min_" data-uid="Hi.Geom.MathUtil.Min*"></a>
<h3 id="Hi_Geom_MathUtil_Min__1___0___0_" data-uid="Hi.Geom.MathUtil.Min``1(``0,``0)">
Min&lt;T&gt;(T, T)
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static T Min&lt;T&gt;(T a, T b) where T : IComparable&lt;T&gt;</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>a</code> <span class="xref">T</span></dt>
<dd></dd>
<dt><code>b</code> <span class="xref">T</span></dt>
<dd></dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><span class="xref">T</span></dt>
<dd></dd>
</dl>
<h4 class="section">Type Parameters</h4>
<dl class="parameters">
<dt><code>T</code></dt>
<dd></dd>
</dl>
<a id="Hi_Geom_MathUtil_Mul_" data-uid="Hi.Geom.MathUtil.Mul*"></a>
<h3 id="Hi_Geom_MathUtil_Mul_System_Double___System_Double_" data-uid="Hi.Geom.MathUtil.Mul(System.Double[],System.Double)">