Class DuplicatedJavaScriptNameResolvingEventArgs
Provides additional data for the MergedJavaScriptNameResolving event.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class DuplicatedJavaScriptNameResolvingEventArgs : EventArgs
Constructors
DuplicatedJavaScriptNameResolvingEventArgs(String, String, IEnumerable<String>)
Initializes a new instance of the DuplicatedJavaScriptNameResolvingEventArgs class.
Declaration
public DuplicatedJavaScriptNameResolvingEventArgs(string name, string newName, IEnumerable<string> usedNames)
Parameters
System.String
name
The current name of the embedded file. |
System.String
newName
The new name of the embedded file. |
System.Collections.Generic.IEnumerable<System.String>
usedNames
The names that are currently used in the Telerik.Windows.Documents.Fixed.Model.RadFixedDocument.JavaScripts. |
Properties
Name
Gets the current JavaScript name.
Declaration
public string Name { get; }
Property Value
System.String
The name. |
NewName
Gets or sets the new JavaScript name.
Declaration
public string NewName { get; set; }
Property Value
System.String
The new name. |
UsedNames
Gets the names that are already used for JavaScripts in the same RadFixedDocument.
Declaration
public IEnumerable<string> UsedNames { get; }
Property Value
System.Collections.Generic.IEnumerable<System.String>
The used names. |