-
Notifications
You must be signed in to change notification settings - Fork 1
/
AFCElement.cs
78 lines (64 loc) · 1.88 KB
/
AFCElement.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AFCoreEx
{
class AFCElement : AFIElement
{
public AFCElement()
{
mxPropertyManager = new AFCPropertyManager(new AFIDENTID());
}
public override AFIPropertyManager GetPropertyManager()
{
return mxPropertyManager;
}
public override Int64 QueryInt(string strName)
{
AFIProperty xProperty = GetPropertyManager().GetProperty(strName);
if (null != xProperty)
{
return xProperty.QueryInt();
}
return 0;
}
public override float QueryFloat(string strName)
{
AFIProperty xProperty = GetPropertyManager().GetProperty(strName);
if (null != xProperty)
{
return xProperty.QueryFloat();
}
return 0f;
}
public override double QueryDouble(string strName)
{
AFIProperty xProperty = GetPropertyManager().GetProperty(strName);
if (null != xProperty)
{
return xProperty.QueryDouble();
}
return 0f;
}
public override string QueryString(string strName)
{
AFIProperty xProperty = GetPropertyManager().GetProperty(strName);
if (null != xProperty)
{
return xProperty.QueryString();
}
return "";
}
public override AFIDENTID QueryObject(string strName)
{
AFIProperty xProperty = GetPropertyManager().GetProperty(strName);
if (null != xProperty)
{
return xProperty.QueryObject();
}
return new AFIDENTID();
}
private AFIPropertyManager mxPropertyManager;
}
}