blob: eea7f1e3bdbc4ee6874b99dd4124921c9382da59 (
plain)
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
|
<com:TContent ID="body">
<h1>TInlineFrame Samples</h1>
<table class="sampletable">
<tr><td class="samplenote">
Inline frame with default settings:
</td><td class="sampleaction">
<com:TInlineFrame FrameUrl="http://www.pradosoft.com/" />
</td></tr>
<tr><td class="samplenote">
Inline frame customized with margins and align:
</td><td class="sampleaction">
<com:TInlineFrame
MarginWidth="100"
MarginHeight="100"
Align="Right"
FrameUrl="http://www.pradosoft.com/" />
</td></tr>
<tr><td class="samplenote">
Inline frame without scrollbars and border:
</td><td class="sampleaction">
<com:TInlineFrame
ScrollBars="None"
ShowBorder="false"
FrameUrl="http://www.pradosoft.com/" />
</td></tr>
</table>
</com:TContent>
|