Class HtmlImportSettings
Contains settings for import with HtmlFormatProvider.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Flow.FormatProviders.Html
Assembly: Telerik.Windows.Documents.Flow.dll
Syntax
public class HtmlImportSettings
Constructors
HtmlImportSettings()
Properties
DefaultStyleSheet
Gets or sets the default style sheet that will be used during the import.
Declaration
public string DefaultStyleSheet { get; set; }
Property Value
System.String
The default style sheet that will be used during the import. |
GenericFonts
Gets the generic fonts collection.
Declaration
public GenericHtmlFonts GenericFonts { get; }
Property Value
GenericHtmlFonts
The generic fonts collection. |
ReplaceNonBreakingSpaces
Gets or sets whether non breaking space characters in strings should be replaced with whitespaces.
The default value is false.
Declaration
public bool ReplaceNonBreakingSpaces { get; set; }
Property Value
System.Boolean
Indicates whether non breaking spaces should be replaced. |
Events
LoadFromUri
Occurs when loading from URL.
Declaration
[Obsolete("This event will be removed in R1 2022. For loading images from Uris use the new LoadImageFromUri and for loading external stylesheets - LoadStyleSheetFromUri", false)]
public event EventHandler<LoadFromUriEventArgs> LoadFromUri
Event Type
System.EventHandler<LoadFromUriEventArgs>
|
LoadImageFromUri
Occurs when loading image from URL.
Declaration
public event EventHandler<LoadImageFromUriEventArgs> LoadImageFromUri
Event Type
System.EventHandler<LoadImageFromUriEventArgs>
|
LoadStyleSheetFromUri
Occurs when loading stylesheet from URL.
Declaration
public event EventHandler<LoadStyleSheetFromUriEventArgs> LoadStyleSheetFromUri
Event Type
System.EventHandler<LoadStyleSheetFromUriEventArgs>
|