blob: 58569f3220500059f8b8b4962305ce2a1c1532a1 (
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.google.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.google.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.google.com/" />
</td></tr>
</table>
<div class="last-modified">$Id$</div></com:TContent>
|