Hi Tina,
Below is the xaml code i m writing,
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Button Grid.Row="0" Height="34" HorizontalAlignment="Center" Margin="20" Click="Button_Click"
Content="Set
the Source of the RadHTMLPlaceHolder"
VerticalAlignment="Top"
Width="290"
/>
<ScrollViewer HorizontalAlignment="Stretch" Height="700" Width="400" VerticalAlignment="Stretch" Grid.Row="1" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto">
<telerik:RadHtmlPlaceholder HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Background="Silver" x:Name="html"/>
</ScrollViewer>
</Grid>
In Button_click i wrote
html.SourceUrl = new Uri("http://en.wikipedia.org/wiki/Listeriosis");
I would like to set height and width to ScrollViewer, not for the RadHtmlPlaceHolder.
Since the radHtmlPlaceHolder has no explicit height and Width i am getting the screen as the one attached.
Thanks,
Muthu