Responder Developer Guide
GetOriginalValue<T> Method (PreviousIncidentsObject)


Version: 10.2.1a

Resource Center Home

Type of the data to return
function that, given a PreviousIncidentsObject will return the property.
Retrieves the original value for a given field
Syntax
'Declaration
 
Public Function GetOriginalValue(Of T)( _
   ByVal property As Func(Of PreviousIncidentsObject,T) _
) As T
'Usage
 
Dim instance As PreviousIncidentsObject
Dim property As Func(Of PreviousIncidentsObject,T)
Dim value As T
 
value = instance.GetOriginalValue(Of T)(property)
public T GetOriginalValue<T>( 
   Func<PreviousIncidentsObject,T> property
)

Parameters

property
function that, given a PreviousIncidentsObject will return the property.

Type Parameters

T
Type of the data to return

Return Value

Original Value of the property
Remarks
use as follows: var object = new PreviousIncidentsObject(row); var original = object.GetOriginalValue(o=>o.Property);
Requirements

Target Platforms: Windows XP SP3 (32-bit and 64-bit), Windows 7 (32-bit and 64-bit)

Not all Operating Systems are supported on all products. Visit the ArcFM Solution Supported Versions page for full details.

See Also

Reference

PreviousIncidentsObject Class
PreviousIncidentsObject Members

 

 


Send Comment