Update docs

This commit is contained in:
miguel
2018-05-05 14:19:45 -04:00
parent 6c3fa389a6
commit 2f25941dad
5 changed files with 23 additions and 19 deletions

View File

@@ -133,9 +133,9 @@ items:
namespace: Terminal.Gui
summary: The array of filename extensions allowed, or null if all file extensions are allowed.
syntax:
content: public NStack.ustring[] AllowedFileTypes { get; set; }
content: public string[] AllowedFileTypes { get; set; }
return:
type: NStack.ustring[]
type: System.String[]
description: The allowed file types.
overload: Terminal.Gui.FileDialog.AllowedFileTypes*
exceptions: []
@@ -324,17 +324,21 @@ references:
name: AllowedFileTypes
nameWithType: FileDialog.AllowedFileTypes
fullName: FileDialog.AllowedFileTypes
- uid: NStack.ustring[]
parent: NStack
- uid: System.String
name: String
nameWithType: String
fullName: System.String
- uid: System.String[]
parent: System
isExternal: true
name: ustring[]
nameWithType: ustring[]
fullName: NStack.ustring[]
name: String[]
nameWithType: String[]
fullName: System.String[]
spec.csharp:
- uid: NStack.ustring
name: ustring
nameWithType: ustring
fullName: NStack.ustring
- uid: System.String
name: String
nameWithType: String
fullName: System.String
- name: '[]'
nameWithType: '[]'
fullName: '[]'

View File

@@ -272,8 +272,8 @@ class Demo {
Width = Dim.Fill (),
Height = Dim.Fill ()
};
editor.Text = System.IO.File.ReadAllText (filename);
win.Add (editor);
editor.Text = System.IO.File.ReadAllText (filename);
win.Add (editor);
// Add both menu and win in a single call
top.Add (win, menu);

View File

@@ -316,7 +316,7 @@
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public NStack.ustring[] AllowedFileTypes { get; set; }</code></pre>
<pre><code class="lang-csharp hljs">public string[] AllowedFileTypes { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
@@ -328,7 +328,7 @@
</thead>
<tbody>
<tr>
<td><span class="xref">NStack.ustring</span>[]</td>
<td><span class="xref">System.String</span>[]</td>
<td><p>The allowed file types.</p>
</td>
</tr>

File diff suppressed because one or more lines are too long

View File

@@ -37,14 +37,14 @@
</Docs>
</Member>
<Member MemberName="AllowedFileTypes">
<MemberSignature Language="C#" Value="public NStack.ustring[] AllowedFileTypes { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class NStack.ustring[] AllowedFileTypes" />
<MemberSignature Language="C#" Value="public string[] AllowedFileTypes { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string[] AllowedFileTypes" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>NStack.ustring[]</ReturnType>
<ReturnType>System.String[]</ReturnType>
</ReturnValue>
<Docs>
<summary>