ArcFM Responder Mobile Developer Guide
GetValue Method (IFeederField)
Example 






Feeder information associated with the current feature.
The name of joined table containing the plugin field.
Returns the value of the plugin field.
Syntax
'Declaration
 
Function GetValue( _
   ByVal feederInfo As IFeederInfo(Of FeatureKey), _
   ByVal electricTableName As System.String _
) As System.Object
'Usage
 
Dim instance As IFeederField
Dim feederInfo As IFeederInfo(Of FeatureKey)
Dim electricTableName As System.String
Dim value As System.Object
 
value = instance.GetValue(feederInfo, electricTableName)
System.object GetValue( 
   IFeederInfo<FeatureKey> feederInfo,
   System.string electricTableName
)
function GetValue( 
    feederInfo: IFeederInfo;
    electricTableName: System.String
): System.TObject; 
function GetValue( 
   feederInfo : IFeederInfo,
   electricTableName : System.String
) : System.Object;
System.Object* GetValue( 
   IFeederInfo<FeatureKey*>* feederInfo,
   System.string* electricTableName
) 
System.Object^ GetValue( 
   IFeederInfo<FeatureKey^>^ feederInfo,
   System.String^ electricTableName
) 

Parameters

feederInfo
Feeder information associated with the current feature.
electricTableName
The name of joined table containing the plugin field.

Return Value

The value of this custom field.
Example
Returning a the feature key from the current row.
public object GetValue(IFeederInfo<FeatureKey> feederInfo, string electricTableName)
{
    return feederInfo.Key.ToString();
}
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

IFeederField Interface
IFeederField Members

Send Feedback