Salome HOME
Apply the fix for the issue "0021721: [CEA 590] Invalid groups on cells display in...
[modules/paravis.git] / src / Plugins / TableReader / ParaViewPlugin / Resources / TableReaderServer.xml
1 <ServerManagerConfiguration>
2   <ProxyGroup name="sources">
3     <SourceProxy
4       name="TableReader"
5       class="vtkVisuTableReader"
6       label="Table Reader">
7       
8       <StringVectorProperty
9          name="FileName"
10          command="SetFileName"
11          number_of_elements="1"
12          animateable="0">
13          <FileListDomain name="files" />
14          <Documentation>
15             This property specifies the file name for the table reader.
16         </Documentation>
17       </StringVectorProperty>
18
19       <IntVectorProperty 
20         name="DetectNumericColumns"
21         command="SetDetectNumericColumns"
22         number_of_elements="1"
23         default_values="1">
24         <BooleanDomain name="bool" />
25         <Documentation>
26           When set to true, the reader will detect numeric columns and create
27           vtkDoubleArray or vtkIntArray for those instead of vtkStringArray.
28         </Documentation>
29       </IntVectorProperty>
30
31       <IntVectorProperty 
32         name="FirstStringAsTitles"
33         command="SetFirstStringAsTitles"
34         number_of_elements="1"
35         default_values="0">
36         <BooleanDomain name="bool" />
37         <Documentation>
38           When set to true, the reader will interpret the first string as
39           column titles.
40         </Documentation>
41       </IntVectorProperty>
42
43       <StringVectorProperty 
44         name="ValueDelimiter"
45         command="SetValueDelimiter"
46         number_of_elements="1"
47         default_values=" ">
48         <Documentation>
49           This property defines string to be used to separate table values.
50         </Documentation>
51       </StringVectorProperty>
52
53       <IntVectorProperty 
54         name="TableNumber"
55         command="SetTableNumber"
56         number_of_elements="1"
57         default_values="0">
58         <Documentation>
59           This property defines the number of table to read.
60         </Documentation>
61       </IntVectorProperty>
62
63       <StringVectorProperty
64         name="AvailableTables"
65         command="GetAvailableTables"
66         number_of_elements="0"
67         information_only="1">
68         <StringArrayHelper />
69         <Documentation>
70           Names of available tables.
71         </Documentation>
72       </StringVectorProperty>
73
74       <Hints>
75         <View type="SpreadSheetView" />
76       </Hints>
77       
78     </SourceProxy>
79   </ProxyGroup>
80 </ServerManagerConfiguration>