|
<!-- Defines the SfRichTextBoxAdv control with virtualization disabled. -->
<RichTextBoxAdv:SfRichTextBoxAdv x:Name="richTextBoxAdv" IsVirtualizing="False"/>
|
|
' Defines the SfRichTextBoxAdv control with virtualization disabled.
Dim richTextBoxAdv As New SfRichTextBoxAdv() richTextBoxAdv.IsVirtualizing = False
|
if (Windows.System.Profile.AnalyticsInfo.VersionInfo.DeviceFamily.Equals("Windows.Mobile", StringComparison.CurrentCultureIgnoreCase))
{ |
|
' Defines the SfRichTextBoxAdv control with virtualization disabled.
Dim richTextBoxAdv As New SfRichTextBoxAdv() If Windows.System.Profile.AnalyticsInfo.VersionInfo.DeviceFamily.Equals("Windows.Mobile", StringComparison.CurrentCultureIgnoreCase) Then |
|
|
|
|
1. Efficient for large size documents.
2. Reduce initial loading time for large size documents.
3. Scrolling and zooming experience will be smoother, with a reasonable UI refresh time based on the document content size.
4. Memory utilization is optimal, to process large size documents. Since UI elements will be alive only for the visible contents.
|
1. Efficient for small size documents.
2. Initial loading time will be reasonable based on the document content size.
3. Scrolling and zooming experience will be smoother, without any dependency on the document content size.
4. Memory utilization may increase rapidly for large size documents. Since UI elements will be alive for all the contents. |