ArcFM Responder Mobile Developer Guide
FindOIDMapping Method






The key to the mapping is formed by combining the table name with the old OID as follows: [tableName]_[oldOID]
Syntax
'Declaration
 
Public Function FindOIDMapping( _
   ByVal oldOID As System.Integer, _
   ByVal tableName As System.String _
) As System.Integer
'Usage
 
Dim instance As EditLogMonitor
Dim oldOID As System.Integer
Dim tableName As System.String
Dim value As System.Integer
 
value = instance.FindOIDMapping(oldOID, tableName)
public System.int FindOIDMapping( 
   System.int oldOID,
   System.string tableName
)
public function FindOIDMapping( 
    oldOID: System.Integer;
    tableName: System.String
): System.Integer; 
public function FindOIDMapping( 
   oldOID : System.int,
   tableName : System.String
) : System.int;
public: System.int FindOIDMapping( 
   System.int oldOID,
   System.string* tableName
) 
public:
System.int FindOIDMapping( 
   System.int oldOID,
   System.String^ tableName
) 

Parameters

oldOID
tableName

Return Value

new OID is returned. -1 is returned if the entry is not found.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

EditLogMonitor Class
EditLogMonitor Members

Send Feedback