Class AddNewBibliographicSourceDialogContext
Represents the context for adding a new bibliographic source in the dialog.
Inheritance
Namespace: Telerik.Windows.Documents.UI.Extensibility
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class AddNewBibliographicSourceDialogContext : Object
Constructors
AddNewBibliographicSourceDialogContext(RadDocument, String, Boolean, Action<BibliographicSource>)
Declaration
public AddNewBibliographicSourceDialogContext(RadDocument document, string sourceName = null, bool insertFieldOnClose = true, Action<BibliographicSource> callBackOnClosed = null)
Parameters
RadDocument
document
|
System.String
sourceName
|
System.Boolean
insertFieldOnClose
|
System.Action<BibliographicSource>
callBackOnClosed
|
Properties
BRSourceName
Gets or sets the name of the bibliographic reference source in the dialog context.
Declaration
public string BRSourceName { get; set; }
Property Value
System.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
public Action<BibliographicSource> CallBackOnClosed { get; set; }
Property Value
System.Action<BibliographicSource>
|
Document
Represents the document associated with the Add New Bibliographic Source dialog context.
Declaration
public RadDocument Document { get; set; }
Property Value
RadDocument
|
InsertFieldOnClose
Inserts a new field when the dialog is closed.
Declaration
public bool InsertFieldOnClose { get; set; }
Property Value
System.Boolean
|
Methods
InsertCitationField(CitationField)
Inserts a citation field into the bibliographic source dialog context.
Declaration
public void InsertCitationField(CitationField field)
Parameters
CitationField
field
The citation field to be inserted. |