Table of Contents

Class LayoutFieldMetadata

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

Represents a layout field metadata.

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

Constructors

LayoutFieldMetadata()

Initializes a new instance of an object.

public LayoutFieldMetadata()

LayoutFieldMetadata(LayoutFieldMetadata)

Initializes a new instance of an object.

public LayoutFieldMetadata(LayoutFieldMetadata copyFrom)

Parameters

copyFrom LayoutFieldMetadata

Object to copy state from.

Exceptions

ArgumentNullException

copyFrom is null.

Properties

SystemName

Gets or sets the system name of the field.

public string SystemName { get; set; }

Property Value

string

Methods

CompareTo(LayoutFieldMetadata)

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

public int CompareTo(LayoutFieldMetadata other)

Parameters

other LayoutFieldMetadata

Object to compare with.

Returns

int

Comparison result.

CopyTo(LayoutFieldMetadata)

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

public void CopyTo(LayoutFieldMetadata target)

Parameters

target LayoutFieldMetadata

Object to copy state into.

Exceptions

ArgumentNullException

target is null.

To top