This commit is contained in:
Brad Robinson 2019-08-08 23:09:08 +10:00
Родитель 6c2fbe2157
Коммит 1635e98875
9 изменённых файлов: 113 добавлений и 12 удалений

Просмотреть файл

@ -109,6 +109,7 @@ navTree:
- text: LineHeight|./ref/Topten.RichTextKit.IStyle.LineHeight
- text: StrikeThrough|./ref/Topten.RichTextKit.IStyle.StrikeThrough
- text: TextColor|./ref/Topten.RichTextKit.IStyle.TextColor
- text: TextDirection|./ref/Topten.RichTextKit.IStyle.TextDirection
- text: Underline|./ref/Topten.RichTextKit.IStyle.Underline
- text: StrikeThroughStyle
subItems:
@ -127,6 +128,7 @@ navTree:
- text: LineHeight|./ref/Topten.RichTextKit.Style.LineHeight
- text: StrikeThrough|./ref/Topten.RichTextKit.Style.StrikeThrough
- text: TextColor|./ref/Topten.RichTextKit.Style.TextColor
- text: TextDirection|./ref/Topten.RichTextKit.Style.TextDirection
- text: Underline|./ref/Topten.RichTextKit.Style.Underline
- text: StyleRun
subItems:
@ -162,7 +164,6 @@ navTree:
- text: MeasuredPadding|./ref/Topten.RichTextKit.TextBlock.MeasuredPadding
- text: MeasuredWidth|./ref/Topten.RichTextKit.TextBlock.MeasuredWidth
- text: StyleRuns|./ref/Topten.RichTextKit.TextBlock.StyleRuns
- text: UseMSWordStyleRTLLayout|./ref/Topten.RichTextKit.TextBlock.UseMSWordStyleRTLLayout
- text: Methods
subItems:
- text: AddText|./ref/Topten.RichTextKit.TextBlock.AddText
@ -261,6 +262,7 @@ navTree:
subItems:
- text: Clear|./ref/Topten.RichTextKit.Utils.Slice[T].Clear
- text: Fill|./ref/Topten.RichTextKit.Utils.Slice[T].Fill
- text: Set|./ref/Topten.RichTextKit.Utils.Slice[T].Set
- text: SubSlice|./ref/Topten.RichTextKit.Utils.Slice[T].SubSlice
- text: ToArray|./ref/Topten.RichTextKit.Utils.Slice[T].ToArray
- text: Utf32Buffer

Просмотреть файл

@ -1,10 +1,10 @@
---
title: "TextBlock.UseMSWordStyleRTLLayout"
title: "IStyle.TextDirection"
isMarkdown: false
import: "../.common.page"
---
<h1 data-nav-secondary-text="Definition" id="definition">TextBlock.UseMSWordStyleRTLLayout Property</h1>
<h1 data-nav-secondary-text="Definition" id="definition">IStyle.TextDirection Property</h1>
<p>
@ -12,22 +12,22 @@ import: "../.common.page"
Assembly: Topten.RichTextKit.dll<br />
Namespace: <a href="./../ref/Topten.RichTextKit">Topten.RichTextKit</a><br />
Declaring Type: <a href="./../ref/Topten.RichTextKit.TextBlock">TextBlock</a><br />
Declaring Type: <a href="./../ref/Topten.RichTextKit.IStyle">IStyle</a><br />
</small>
</p>
<p>Use MS Word style RTL layout</p>
<p>Text direction override for this span</p>
<pre class="language-csharp"><code class="language-csharp">public bool UseMSWordStyleRTLLayout { get; set; }</code></pre>
<pre class="language-csharp"><code class="language-csharp">public TextDirection TextDirection { get; }</code></pre>
<h2 id="property-type">Property Type</h2> <table class="name-description">
<tr>
<td><a href="https://docs.microsoft.com/dotnet/api/System.Boolean">bool</a></td>
<td><a href="./../ref/Topten.RichTextKit.TextDirection">TextDirection</a></td>
<td></td>
</tr>
</table>

Просмотреть файл

@ -73,6 +73,11 @@ font; otherwise False.</p>
<tr>
<td><a href="./../ref/Topten.RichTextKit.IStyle.TextColor">TextColor</a></td>
<td><p>The text color for text in this run.</p>
</td>
</tr>
<tr>
<td><a href="./../ref/Topten.RichTextKit.IStyle.TextDirection">TextDirection</a></td>
<td><p>Text direction override for this span</p>
</td>
</tr>
<tr>

Просмотреть файл

@ -0,0 +1,38 @@
---
title: "Style.TextDirection"
isMarkdown: false
import: "../.common.page"
---
<h1 data-nav-secondary-text="Definition" id="definition">Style.TextDirection Property</h1>
<p>
<small>
Assembly: Topten.RichTextKit.dll<br />
Namespace: <a href="./../ref/Topten.RichTextKit">Topten.RichTextKit</a><br />
Declaring Type: <a href="./../ref/Topten.RichTextKit.Style">Style</a><br />
</small>
</p>
<p>Text direction override for this span</p>
<pre class="language-csharp"><code class="language-csharp">public TextDirection TextDirection { sealed get; set; }</code></pre>
<h2 id="property-type">Property Type</h2> <table class="name-description">
<tr>
<td><a href="./../ref/Topten.RichTextKit.TextDirection">TextDirection</a></td>
<td></td>
</tr>
</table>

Просмотреть файл

@ -85,6 +85,11 @@ font; otherwise False (defaults to false).</p>
<tr>
<td><a href="./../ref/Topten.RichTextKit.Style.TextColor">TextColor</a></td>
<td><p>The text color for text in this run (defaults to black).</p>
</td>
</tr>
<tr>
<td><a href="./../ref/Topten.RichTextKit.Style.TextDirection">TextDirection</a></td>
<td><p>Text direction override for this span</p>
</td>
</tr>
<tr>

Просмотреть файл

@ -113,11 +113,6 @@ fonts used, and the supplied text.</p>
<tr>
<td><a href="./../ref/Topten.RichTextKit.TextBlock.StyleRuns">StyleRuns</a></td>
<td><p>Get the text runs as added by AddText</p>
</td>
</tr>
<tr>
<td><a href="./../ref/Topten.RichTextKit.TextBlock.UseMSWordStyleRTLLayout">UseMSWordStyleRTLLayout</a></td>
<td><p>Use MS Word style RTL layout</p>
</td>
</tr>
</table>

Просмотреть файл

@ -28,6 +28,12 @@ import: "../.common.page"
<h2 id="members">Members</h2>
<table class="name-value-description">
<tr>
<td>Auto</td>
<td>2</td>
<td><p>Automatic</p>
</td>
</tr>
<tr>
<td>LTR</td>
<td>0</td>

Просмотреть файл

@ -0,0 +1,46 @@
---
title: "Slice&lt;T&gt;.Set"
isMarkdown: false
import: "../.common.page"
---
<h1 data-nav-secondary-text="Definition" id="definition">Slice&lt;T&gt;.Set Method</h1>
<p>
<small>
Assembly: Topten.RichTextKit.dll<br />
Namespace: <a href="./../ref/Topten.RichTextKit.Utils">Topten.RichTextKit.Utils</a><br />
Declaring Type: <a href="./../ref/Topten.RichTextKit.Utils.Slice[T]">Slice&lt;T&gt;</a><br />
</small>
</p>
<pre class="language-csharp"><code class="language-csharp">public void Set(Slice&lt;T&gt; Source);</code></pre>
<h2 id="parameters">Parameters</h2> <table class="name-description">
<tr>
<td>
<a href="./../ref/Topten.RichTextKit.Utils.Slice[T]">Slice&lt;T&gt;</a> Source
</td>
<td></td>
</tr>
</table>

Просмотреть файл

@ -98,6 +98,10 @@ import: "../.common.page"
<td><p>Fill the slice with a specified value</p>
</td>
</tr>
<tr>
<td><a href="./../ref/Topten.RichTextKit.Utils.Slice[T].Set">Set(Slice&lt;T&gt;)</a></td>
<td></td>
</tr>
<tr>
<td><a href="./../ref/Topten.RichTextKit.Utils.Slice[T].SubSlice#Topten.RichTextKit.Utils-Slice-T.SubSlice-System-Int32">SubSlice(int)</a></td>
<td><p>Creates a subslice of an array slice, from a specified position to the end</p>