VisualFooter
Description
The VisualFooter is one of the three possible parts of a VisualPage. The footer is the part of the page that is always visible at the bottom of the screen. Like a header it can contain dynamic content, but no interactive content.
Attributes
- Name [string]: The name of the block.
- Orientation [Horizontal|Vertical]: The direction in which contained elements should be stacked. Default: Vertical.
- Style [Style]: The style that needs to be applied to the block.
Example
1 <Style Name="headerfooter" BackgroundFillMode="Gradient"/>
2
3 <VisualPage>
4 <VisualHeader Style="headerfooter">
5 <VisualText Text="Place header text here"/>
6 </VisualHeader>
7 <VisualContent>
8 <VisualText Text="Place your dynamic and interactive content here" MultiLine="true"/>
9 </VisualContent>
10 <VisualFooter Style="headerfooter">
11 <VisualText Text="Place footer text here"/>
12 </VisualFooter>
13 </VisualPage>
