Update nach EDK-Read

This commit is contained in:
Stefan Hutter
2024-07-19 09:51:03 +02:00
parent 977d1b0c9f
commit 153fbef133
7735 changed files with 187935 additions and 103935 deletions

View File

@@ -4,7 +4,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="GENERATOR" content="VSdocman - documentation generator; https://www.helixoft.com" />
<link rel="icon" href="favicon.ico">
<title>ExcelReader.Excel_To_Datatabable Method</title>
<title>CellRange Constructor</title>
<link rel="stylesheet" type="text/css" href="msdn2019/toc.css" />
<script src="msdn2019/toc.js"></script>
@@ -74,11 +74,11 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
</div>
<div id="mainBody">
<h1 class="title">ExcelReader.Excel_To_Datatabable Method</h1>
<h1 class="title">CellRange Constructor</h1>
<div class="metadata">
Namespace:
<a href="topic_0000000000000460.html">ExcelNet</a>
<a href="topic_000000000000044E.html">FastExcel</a>
@@ -89,6 +89,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
<summary-info>Defines a cell range using varibles</summary-info>
@@ -138,7 +139,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
</div>
<div class="codeSnippetCode codeVB">
<pre xml:space="preserve" class="brush: vb">Public Sub Excel_To_Datatabable( _&nbsp;<br /> ByVal <i>filename</i> As <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">String</a>, _&nbsp;<br /> ByVal <i>steet</i> As <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">String</a>, _&nbsp;<br /> ByVal <i>includinheaders</i> As <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.boolean">Boolean</a>, _&nbsp;<br /> ByRef <i>data</i> As <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.data.datatable">DataTable</a> _&nbsp;<br />)</pre>
<pre xml:space="preserve" class="brush: vb">Public Sub New( _&nbsp;<br /> ByVal <i>columnStart</i> As <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">String</a>, _&nbsp;<br /> ByVal <i>columnEnd</i> As <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">String</a>, _&nbsp;<br /> Optional ByVal <i>rowStart</i> As <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.int32">Integer</a> = 1, _&nbsp;<br /> Optional ByVal <i>rowEnd</i> As <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.nullable-1">Nullable</a>(Of <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.int32">Integer</a>) = null _&nbsp;<br />)</pre>
</div>
<div class="codeSnippetCode codeNA">
<pre xml:space="preserve">This language is not supported or no code example is available.</pre>
@@ -177,7 +178,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
</div>
<div class="codeSnippetCode codeCsharp">
<pre xml:space="preserve" class="brush: csharp">public <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.void">void</a> Excel_To_Datatabable(&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">string</a> <i>filename</i>,&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">string</a> <i>steet</i>,&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.boolean">bool</a> <i>includinheaders</i>,&nbsp;<br /> ref <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.data.datatable">DataTable</a> <i>data</i>&nbsp;<br />)</pre>
<pre xml:space="preserve" class="brush: csharp">public CellRange(&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">string</a> <i>columnStart</i>,&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">string</a> <i>columnEnd</i>,&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.int32">int</a> <i>rowStart</i> = 1,&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.nullable-1">Nullable</a>&lt;<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.int32">int</a>&gt; <i>rowEnd</i> = null&nbsp;<br />)</pre>
</div>
<div class="codeSnippetCode codeNA">
<pre xml:space="preserve">This language is not supported or no code example is available.</pre>
@@ -217,7 +218,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
</div>
<div class="codeSnippetCode codeCpp">
<pre xml:space="preserve" class="brush: cpp">public: &nbsp;<br /><a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.void">void</a> Excel_To_Datatabable(&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">String</a>^ <i>filename</i>,&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">String</a>^ <i>steet</i>,&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.boolean">bool</a> <i>includinheaders</i>,&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.data.datatable">DataTable</a>^&amp; <i>data</i>&nbsp;<br />) </pre>
<pre xml:space="preserve" class="brush: cpp">public: &nbsp;<br />CellRange(&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">String</a>^ <i>columnStart</i>,&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">String</a>^ <i>columnEnd</i>,&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.int32">int</a> <i>rowStart</i>,&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.nullable-1">Nullable</a>&lt;<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.int32">int</a>&gt; <i>rowEnd</i>&nbsp;<br />) </pre>
</div>
<div class="codeSnippetCode codeNA">
<pre xml:space="preserve">This language is not supported or no code example is available.</pre>
@@ -256,7 +257,7 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
</div>
<div class="codeSnippetCode codeJScript">
<pre xml:space="preserve" class="brush: js">public function Excel_To_Datatabable(&nbsp;<br /> <i>filename</i> : <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">String</a>,&nbsp;<br /> <i>steet</i> : <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.string">String</a>,&nbsp;<br /> <i>includinheaders</i> : <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.boolean">boolean</a>,&nbsp;<br /> <i>data</i> : <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.data.datatable">DataTable</a>&nbsp;<br />);</pre>
<pre xml:space="preserve" class="brush: js">JScript does not support generic types and methods.</pre>
</div>
<div class="codeSnippetCode codeNA">
<pre xml:space="preserve">This language is not supported or no code example is available.</pre>
@@ -268,10 +269,10 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
<h4 class="subHeading">
Parameters</h4><dl paramName="filename" class="parameterList">
Parameters</h4><dl paramName="columnStart" class="parameterList">
<dt>
<span class="parameter">
filename
columnStart
</span>
</dt>
<dd>
@@ -279,12 +280,12 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
</dd>
</dl>
<p>
Column Letter start
</p>
<dl paramName="steet" class="parameterList">
<dl paramName="columnEnd" class="parameterList">
<dt>
<span class="parameter">
steet
columnEnd
</span>
</dt>
<dd>
@@ -292,33 +293,33 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
</dd>
</dl>
<p>
Column Letter end
</p>
<dl paramName="includinheaders" class="parameterList">
<dl paramName="rowStart" class="parameterList">
<dt>
<span class="parameter">
includinheaders
rowStart
</span>
</dt>
<dd>
<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.boolean">bool</a>
<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.int32">int</a>
</dd>
</dl>
<p>
First row number
</p>
<dl paramName="data" class="parameterList">
<dl paramName="rowEnd" class="parameterList">
<dt>
<span class="parameter">
data
rowEnd
</span>
</dt>
<dd>
<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.data.datatable">DataTable</a>
<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.nullable-1">Nullable</a>&lt;<a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.int32">int</a>&gt;
</dd>
</dl>
<p>
last row number
</p>
<p />
@@ -410,11 +411,11 @@ document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
<div id="seeAlsoSection" class="section">
<div>
<a href="topic_0000000000000461.html">ExcelReader Class</a><br />
<a href="topic_000000000000045D.html">CellRange Class</a><br />
<a href="topic_0000000000000460.html">ExcelNet Namespace</a><br />
<a href="topic_000000000000044E.html">FastExcel Namespace</a><br />