Class GuidToNameMapping
Maps a globally unique identifier (Guid) to a human-readable name. Used by the new RadDock framework when converting an old DockingManager framework to its new counterpart.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.Docking
Assembly: Telerik.WinControls.RadDock.dll
Syntax
public class GuidToNameMapping
Constructors
GuidToNameMapping()
Constructs a new default instance.
Declaration
public GuidToNameMapping()
GuidToNameMapping(Guid, String)
Constructs a new instance, using the provided Guid and Name values.
Declaration
public GuidToNameMapping(Guid guid, string name)
Parameters
System.Guid
guid
|
System.String
name
|
Properties
Guid
Gets or sets the associated Guid
Declaration
public Guid Guid { get; set; }
Property Value
System.Guid
|
Name
Gets or sets the associated name.
Declaration
public string Name { get; set; }
Property Value
System.String
|