New to Telerik UI for WinFormsStart a free 30-day trial

Event arguments for the PreProcessingXaml event.

Definition

Namespace:Telerik.WinForms.Documents.FormatProviders.Xaml

Assembly:Telerik.WinControls.RichTextEditor.dll

Syntax:

C#
public class PreProcessingXamlEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsPreProcessingXamlEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

Creates a new instance of the PreProcessingXamlEventArgs class.

C#
public PreProcessingXamlEventArgs(string xaml)
Parameters:xamlstring

The XAML that is being imported.

Properties

Determines if the default validation (safety) check of the XAML should be skipped.

C#
public bool SkipXamlValidation { get; set; }

Gets or sets the XAML that is being imported. Allows you to edit it before the import.

C#
public string Xaml { get; set; }