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

Represents the context for adding a new bibliographic source in the dialog.

Definition

Namespace:Telerik.Windows.Documents.UI.Extensibility

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public class AddNewBibliographicSourceDialogContext

Inheritance: objectAddNewBibliographicSourceDialogContext

Constructors

C#
public AddNewBibliographicSourceDialogContext(RadDocument document, string sourceName = null, bool insertFieldOnClose = true, Action<BibliographicSource> callBackOnClosed = null)
Parameters:documentRadDocumentsourceNamestringinsertFieldOnCloseboolcallBackOnClosedAction<BibliographicSource>

Properties

Gets or sets the name of the bibliographic reference source in the dialog context.

C#
public string BRSourceName { get; set; }
Property Value:

A string representing the name of the bibliographic reference source.

Invoked when the Add New Bibliographic Source dialog is closed, allowing for custom actions to be performed.

C#
public Action<BibliographicSource> CallBackOnClosed { get; set; }

Represents the document associated with the Add New Bibliographic Source dialog context.

C#
public RadDocument Document { get; set; }

Inserts a new field when the dialog is closed.

C#
public bool InsertFieldOnClose { get; set; }

Methods

Inserts a citation field into the bibliographic source dialog context.

C#
public void InsertCitationField(CitationField field)
Parameters:fieldCitationField

The citation field to be inserted.