Class
AddNewBibliographicSourceDialogContext

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:

cs-api-definition
public class AddNewBibliographicSourceDialogContext

Inheritance: objectAddNewBibliographicSourceDialogContext

Constructors

AddNewBibliographicSourceDialogContext(RadDocument, string, bool, Action<BibliographicSource>)

Declaration

cs-api-definition
public AddNewBibliographicSourceDialogContext(RadDocument document, string sourceName = null, bool insertFieldOnClose = true, Action<BibliographicSource> callBackOnClosed = null)

Parameters

document

RadDocument

sourceName

string

insertFieldOnClose

bool

callBackOnClosed

Action<BibliographicSource>

Properties

BRSourceName

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

Declaration

cs-api-definition
public string BRSourceName { get; set; }

Property Value

string

A string representing the name of the bibliographic reference source.

CallBackOnClosed

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

Declaration

cs-api-definition
public Action<BibliographicSource> CallBackOnClosed { get; set; }

Property Value

Action<BibliographicSource>

Document

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

Declaration

cs-api-definition
public RadDocument Document { get; set; }

Property Value

RadDocument

InsertFieldOnClose

Inserts a new field when the dialog is closed.

Declaration

cs-api-definition
public bool InsertFieldOnClose { get; set; }

Property Value

bool

Methods

InsertCitationField(CitationField)

Inserts a citation field into the bibliographic source dialog context.

Declaration

cs-api-definition
public void InsertCitationField(CitationField field)

Parameters

field

CitationField

The citation field to be inserted.