Table of Contents

Class EditorMetadata

Namespace
Dynamicweb.Content.Items.Metadata
Assembly
Dynamicweb.dll

Represents field editor metadata.

public class EditorMetadata : IComparable<EditorMetadata>
Inheritance
EditorMetadata
Implements
Inherited Members

Constructors

EditorMetadata()

Initializes a new instance of an object.

public EditorMetadata()

EditorMetadata(EditorMetadata)

Initializes a new instance of an object.

public EditorMetadata(EditorMetadata copyFrom)

Parameters

copyFrom EditorMetadata

Object to copy state from.

Exceptions

ArgumentNullException

copyFrom is null.

Properties

TypeName

Gets or sets tye assembly-qualified name of the editor type.

public string TypeName { get; set; }

Property Value

string

Methods

CompareTo(EditorMetadata)

Compares the current object with the given one and returns the comparison result.

public int CompareTo(EditorMetadata other)

Parameters

other EditorMetadata

Object to compare with.

Returns

int

Comparison result.

CopyTo(EditorMetadata)

Copies the state of the current object into the given one.

public void CopyTo(EditorMetadata target)

Parameters

target EditorMetadata

Object to copy state into.

Exceptions

ArgumentNullException

target is null.

To top