Last active
May 31, 2018 00:22
-
-
Save jszabo98/ac01397a69b9c49b737464f0ecd53970 to your computer and use it in GitHub Desktop.
basic format file for a table view of an object with 5 properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<Configuration> | |
<ViewDefinitions> | |
<View> | |
<Name>myobject</Name> | |
<ViewSelectedBy> | |
<TypeName>myobject</TypeName> | |
</ViewSelectedBy> | |
<TableControl> | |
<TableHeaders> | |
<TableColumnHeader> | |
<Width>16</Width> | |
</TableColumnHeader> | |
<TableColumnHeader> | |
<Width>16</Width> | |
</TableColumnHeader> | |
<TableColumnHeader> | |
<Width>16</Width> | |
</TableColumnHeader> | |
<TableColumnHeader> | |
<Width>16</Width> | |
</TableColumnHeader> | |
<TableColumnHeader> | |
<Width>16</Width> | |
</TableColumnHeader> | |
</TableHeaders> | |
<TableRowEntries> | |
<TableRowEntry> | |
<TableColumnItems> | |
<TableColumnItem> | |
<PropertyName>Name</PropertyName> | |
</TableColumnItem> | |
<TableColumnItem> | |
<PropertyName>Address</PropertyName> | |
</TableColumnItem> | |
<TableColumnItem> | |
<PropertyName>City</PropertyName> | |
</TableColumnItem> | |
<TableColumnItem> | |
<PropertyName>State</PropertyName> | |
</TableColumnItem> | |
<TableColumnItem> | |
<PropertyName>Zip</PropertyName> | |
</TableColumnItem> | |
</TableColumnItems> | |
</TableRowEntry> | |
</TableRowEntries> | |
</TableControl> | |
</View> | |
</ViewDefinitions> | |
</Configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment