NanoXLSX.Compatibility
3.2.0
Loading...
Searching...
No Matches
ExternalLinkResolution.cs
1
/*
2
* NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
3
* Copyright Raphael Stoeckli © 2026
4
* This library is licensed under the MIT License.
5
* You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
6
*/
7
8
using
System.Collections.Generic;
9
10
namespace
NanoXLSX.Extensions
11
{
15
internal
sealed
class
ExternalLinkResolution
16
{
20
public
string
Expression {
get
; }
24
public
List<int> LinkIndexes {
get
; }
25
31
public
ExternalLinkResolution(
string
expression, List<int> linkIndexes)
32
{
33
Expression = expression;
34
LinkIndexes = linkIndexes;
35
}
36
}
37
}
NanoXLSX.Extensions
Definition
ExternalLinkResolution.cs:11
NanoXLSX.Compatibility
Extensions
ExternalLinkResolution.cs
Generated by
1.15.0