Class PreProcessingXamlEventArgs
Event arguments for the PreProcessingXaml event.
Inheritance
Namespace: Telerik.WinForms.Documents.FormatProviders.Xaml
Assembly: Telerik.WinControls.RichTextEditor.dll
Syntax
public class PreProcessingXamlEventArgs : CancelEventArgs
Constructors
PreProcessingXamlEventArgs(String)
Creates a new instance of the PreProcessingXamlEventArgs class.
Declaration
public PreProcessingXamlEventArgs(string xaml)
Parameters
System.String
xaml
The XAML that is being imported. |
Properties
SkipXamlValidation
Determines if the default validation (safety) check of the XAML should be skipped.
Declaration
public bool SkipXamlValidation { get; set; }
Property Value
System.Boolean
|
Xaml
Gets or sets the XAML that is being imported. Allows you to edit it before the import.
Declaration
public string Xaml { get; set; }
Property Value
System.String
|