Show / Hide Table of Contents

Class TableObjectChangedEventArgs<T>

Event data for changes or substitutions of table objects in entities or other tables.

Inheritance
System.Object
System.EventArgs
TableObjectChangedEventArgs<T>
Inherited Members
System.EventArgs.Empty
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)
System.Object.ToString()
Namespace: netDxf.Tables
Assembly: CADability.dll
Syntax
public class TableObjectChangedEventArgs<T> : EventArgs
Type Parameters
Name Description
T

A table object

Constructors

| Improve this Doc View Source

TableObjectChangedEventArgs(T, T)

Initializes a new instance of TableObjectModifiedEventArgs.

Declaration
public TableObjectChangedEventArgs(T oldTable, T newTable)
Parameters
Type Name Description
T oldTable

The previous table object.

T newTable

The new table object.

Properties

| Improve this Doc View Source

NewValue

Gets or sets the new property value.

Declaration
public T NewValue { get; set; }
Property Value
Type Description
T
| Improve this Doc View Source

OldValue

Gets the previous property value.

Declaration
public T OldValue { get; }
Property Value
Type Description
T
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX