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)
Properties
Gets or sets the name of the bibliographic reference source in the dialog context.
C#
public string BRSourceName { get; set; }
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)
The citation field to be inserted.