Show / Hide Table of Contents

Class XDataRecord

Represents an entry in the extended data of an entity.

Inheritance
System.Object
XDataRecord
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: netDxf
Assembly: CADability.dll
Syntax
public class XDataRecord

Constructors

| Improve this Doc View Source

XDataRecord(XDataCode, Object)

Initializes a new XDataRecord.

Declaration
public XDataRecord(XDataCode code, object value)
Parameters
Type Name Description
XDataCode code

XData code.

System.Object value

XData value.

Properties

| Improve this Doc View Source

CloseControlString

An extended data control string can be either "{" or "}". These braces enable applications to organize their data by subdividing the data into lists. The left brace begins a list, and the right brace terminates the most recent list. Lists can be nested.

Declaration
public static XDataRecord CloseControlString { get; }
Property Value
Type Description
XDataRecord
| Improve this Doc View Source

Code

Gets or set the XData code.

Declaration
public XDataCode Code { get; }
Property Value
Type Description
XDataCode
Remarks

The only valid values are the ones defined in the XDataCode class.

| Improve this Doc View Source

OpenControlString

An extended data control string can be either "{"or "}". These braces enable applications to organize their data by subdividing the data into lists. The left brace begins a list, and the right brace terminates the most recent list. Lists can be nested.

Declaration
public static XDataRecord OpenControlString { get; }
Property Value
Type Description
XDataRecord
| Improve this Doc View Source

Value

Gets or sets the XData value.

Declaration
public object Value { get; }
Property Value
Type Description
System.Object

Methods

| Improve this Doc View Source

ToString()

Obtains a string that represents the XDataRecord.

Declaration
public override string ToString()
Returns
Type Description
System.String

A string text.

Overrides
System.Object.ToString()
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX