summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TInlineFrame/Home.page
blob: 853f6d6d5a851f895d713c070d13249b6dff10cd (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="https://github.com/pradosoft/prado" />
</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="https://github.com/pradosoft/prado" />
</td></tr>

<tr><td class="samplenote">
Inline frame without scrollbars and border:
</td><td class="sampleaction">
<com:TInlineFrame
	ScrollBars="None"
	ShowBorder="false"
	FrameUrl="https://github.com/pradosoft/prado" />
</td></tr>

</table>

</com:TContent>