ArcFM Desktop Developer Guide
GetFeederInfo Method
Example 


Version: 10.2.1b and 10.2.1b SP1

Resource Center Home

Gets the feeder information for the given Miner.Geodatabase.Network.FeatureKey.
Syntax
'Declaration
 
Public Function GetFeederInfo( _
   ByVal key As FeatureKey _
) As IFeederInfo(Of FeatureKey)
'Usage
 
Dim instance As FeederInfoProvider
Dim key As FeatureKey
Dim value As IFeederInfo(Of FeatureKey)
 
value = instance.GetFeederInfo(key)
public IFeederInfo<FeatureKey> GetFeederInfo( 
   FeatureKey key
)

Parameters

key

Return Value

A FeederInfo object containing the feeder information for the given FeatureKey
Example
public string[] GetFeederIDs(FeederInfoProvider feederInfoProvider, IFeature feature)
{
    var featureKey = new FeatureKey(feature.Class.ObjectClassID, feature.OID);
    return feederInfoProvider.GetFeederInfo(featureKey).FeederIDs;
}
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

FeederInfoProvider Class
FeederInfoProvider Members

 

 


Send Comment