Elin Decompiled Documentation
EA 23.102 Nightly
Toggle main menu visibility
Main Page
Namespaces
Namespace List
Namespace Members
All
Functions
Enumerations
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
w
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Events
Files
File List
File Members
All
$
a
b
c
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
z
Functions
Variables
Enumerations
a
b
c
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
z
•
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Properties
Events
Pages
Loading...
Searching...
No Matches
ExcelSheetImportSetting.cs
Go to the documentation of this file.
1
using
System;
2
3
[Serializable]
4
public
class
ExcelSheetImportSetting
5
{
6
public
enum
ClassTemplate
7
{
8
Default
,
9
ThingV
10
}
11
12
public
string
name
;
13
14
public
string
_baseClass
;
15
16
public
string
_rowClass
;
17
18
public
string
_templateFile
;
19
20
public
bool
intID
;
21
22
public
SourceData.AutoID
autoID
;
23
24
public
ClassTemplate
template
;
25
26
public
string
idTemplate
=>
"ClassTemplate"
+ ((
template
==
ClassTemplate
.Default) ?
""
: (
"_"
+
template
));
27
28
public
string
baseClass
29
{
30
get
31
{
32
if
(!
string
.IsNullOrEmpty(
_baseClass
))
33
{
34
return
_baseClass
;
35
}
36
if
(!
intID
)
37
{
38
return
"SourceDataString"
;
39
}
40
return
"SourceDataInt"
;
41
}
42
}
43
44
public
string
rowClass
45
{
46
get
47
{
48
if
(!
string
.IsNullOrEmpty(
_rowClass
))
49
{
50
return
_rowClass
;
51
}
52
return
"BaseRow"
;
53
}
54
}
55
56
public
override
string
ToString
()
57
{
58
return
name
;
59
}
60
}
ExcelSheetImportSetting
Definition:
ExcelSheetImportSetting.cs:5
ExcelSheetImportSetting.intID
bool intID
Definition:
ExcelSheetImportSetting.cs:20
ExcelSheetImportSetting._baseClass
string _baseClass
Definition:
ExcelSheetImportSetting.cs:14
ExcelSheetImportSetting.name
string name
Definition:
ExcelSheetImportSetting.cs:12
ExcelSheetImportSetting.rowClass
string rowClass
Definition:
ExcelSheetImportSetting.cs:45
ExcelSheetImportSetting.baseClass
string baseClass
Definition:
ExcelSheetImportSetting.cs:29
ExcelSheetImportSetting._rowClass
string _rowClass
Definition:
ExcelSheetImportSetting.cs:16
ExcelSheetImportSetting.ToString
override string ToString()
Definition:
ExcelSheetImportSetting.cs:56
ExcelSheetImportSetting._templateFile
string _templateFile
Definition:
ExcelSheetImportSetting.cs:18
ExcelSheetImportSetting.ClassTemplate
ClassTemplate
Definition:
ExcelSheetImportSetting.cs:7
ExcelSheetImportSetting.ClassTemplate.Default
@ Default
ExcelSheetImportSetting.ClassTemplate.ThingV
@ ThingV
ExcelSheetImportSetting.autoID
SourceData.AutoID autoID
Definition:
ExcelSheetImportSetting.cs:22
ExcelSheetImportSetting.idTemplate
string idTemplate
Definition:
ExcelSheetImportSetting.cs:26
SourceData.AutoID
AutoID
Definition:
SourceData.cs:524
Elin
Plugins.basecore
ExcelSheetImportSetting.cs
Generated by
1.9.6