@@ -18,13 +18,15 @@ public class LoadDictionaryCommand : ScriptCommand
18
18
{
19
19
[ XmlAttribute ]
20
20
[ Attributes . PropertyAttributes . PropertyDescription ( "Please Enter the Dictionary Name" ) ]
21
+ [ Attributes . PropertyAttributes . PropertyUIHelper ( Attributes . PropertyAttributes . PropertyUIHelper . UIAdditionalHelperType . ShowVariableHelper ) ]
21
22
[ Attributes . PropertyAttributes . InputSpecification ( "Enter a name for a Dictionary." ) ]
22
23
[ Attributes . PropertyAttributes . SampleUsage ( "**myDictionary**" ) ]
23
24
[ Attributes . PropertyAttributes . Remarks ( "" ) ]
24
25
public string v_DictionaryName { get ; set ; }
25
26
26
27
[ XmlAttribute ]
27
28
[ Attributes . PropertyAttributes . PropertyDescription ( "Please indicate the workbook file path" ) ]
29
+ [ Attributes . PropertyAttributes . PropertyUIHelper ( Attributes . PropertyAttributes . PropertyUIHelper . UIAdditionalHelperType . ShowVariableHelper ) ]
28
30
[ Attributes . PropertyAttributes . PropertyUIHelper ( Attributes . PropertyAttributes . PropertyUIHelper . UIAdditionalHelperType . ShowFileSelectionHelper ) ]
29
31
[ Attributes . PropertyAttributes . InputSpecification ( "Enter or Select the path to the applicable file that should be loaded into the Dictionary." ) ]
30
32
[ Attributes . PropertyAttributes . SampleUsage ( @"C:\temp\myfile.xlsx or [vFilePath]" ) ]
@@ -33,23 +35,23 @@ public class LoadDictionaryCommand : ScriptCommand
33
35
34
36
[ XmlAttribute ]
35
37
[ Attributes . PropertyAttributes . PropertyDescription ( "Please indicate the Sheet Name" ) ]
36
- [ Attributes . PropertyAttributes . PropertyUIHelper ( Attributes . PropertyAttributes . PropertyUIHelper . UIAdditionalHelperType . ShowFileSelectionHelper ) ]
38
+ [ Attributes . PropertyAttributes . PropertyUIHelper ( Attributes . PropertyAttributes . PropertyUIHelper . UIAdditionalHelperType . ShowVariableHelper ) ]
37
39
[ Attributes . PropertyAttributes . InputSpecification ( "Enter the sheet name of the workbook to be read." ) ]
38
40
[ Attributes . PropertyAttributes . SampleUsage ( "Sheet1" ) ]
39
41
[ Attributes . PropertyAttributes . Remarks ( "" ) ]
40
42
public string v_SheetName { get ; set ; }
41
43
42
44
[ XmlAttribute ]
43
45
[ Attributes . PropertyAttributes . PropertyDescription ( "Please indicate the Key column" ) ]
44
- [ Attributes . PropertyAttributes . PropertyUIHelper ( Attributes . PropertyAttributes . PropertyUIHelper . UIAdditionalHelperType . ShowFileSelectionHelper ) ]
46
+ [ Attributes . PropertyAttributes . PropertyUIHelper ( Attributes . PropertyAttributes . PropertyUIHelper . UIAdditionalHelperType . ShowVariableHelper ) ]
45
47
[ Attributes . PropertyAttributes . InputSpecification ( "Enter the key column name to create a Dictionary off of." ) ]
46
48
[ Attributes . PropertyAttributes . SampleUsage ( "keyColumn" ) ]
47
49
[ Attributes . PropertyAttributes . Remarks ( "" ) ]
48
50
public string v_KeyColumn { get ; set ; }
49
51
50
52
[ XmlAttribute ]
51
53
[ Attributes . PropertyAttributes . PropertyDescription ( "Please indicate the Value Column" ) ]
52
- [ Attributes . PropertyAttributes . PropertyUIHelper ( Attributes . PropertyAttributes . PropertyUIHelper . UIAdditionalHelperType . ShowFileSelectionHelper ) ]
54
+ [ Attributes . PropertyAttributes . PropertyUIHelper ( Attributes . PropertyAttributes . PropertyUIHelper . UIAdditionalHelperType . ShowVariableHelper ) ]
53
55
[ Attributes . PropertyAttributes . InputSpecification ( "Enter a value column name to create a Dictionary off of." ) ]
54
56
[ Attributes . PropertyAttributes . SampleUsage ( "valueColumn" ) ]
55
57
[ Attributes . PropertyAttributes . Remarks ( "" ) ]
0 commit comments