Class ExternalStylesExportingEventArgs
Raised when exporting styles to an external CSS file; allows custom handling of the CSS content and file reference.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Flow.FormatProviders.Html
Assembly: Telerik.Windows.Documents.Flow.dll
Syntax
public class ExternalStylesExportingEventArgs : EventArgs
Properties
Css
Gets the CSS content being exported to the external style file.
Declaration
public string Css { get; }
Property Value
|
System.String
The CSS string. |
Handled
Gets or sets whether the event is handled by custom logic, preventing default CSS file creation.
Declaration
public bool Handled { get; set; }
Property Value
|
System.Boolean
|
Reference
Gets or sets the URI written to the 'href' attribute of the link element referencing the external CSS file.
Declaration
public string Reference { get; set; }
Property Value
|
System.String
The reference. |