Smrf.NodeXL.ExcelTemplate.Sheet2.TryGetRowIDAndLocation C# (CSharp) Method

TryGetRowIDAndLocation() private method

private TryGetRowIDAndLocation ( IIdentityProvider>.KeyValuePair oLocationInfo, Int32 &iRowID, PointF &oLocationToSet ) : Boolean
oLocationInfo IIdentityProvider>.KeyValuePair
iRowID Int32
oLocationToSet PointF
return Boolean
    TryGetRowIDAndLocation
    (
        KeyValuePair<Int32, IIdentityProvider> oLocationInfo,
        out Int32 iRowID,
        out PointF oLocationToSet
    )
    {
        AssertValid();

        iRowID = oLocationInfo.Key;

        Debug.Assert(oLocationInfo.Value is IVertex);
        oLocationToSet = ( (IVertex)oLocationInfo.Value ).Location;

        return (true);
    }

Same methods

Sheet2::TryGetRowIDAndLocation ( VertexAndRowID oLocationInfo, Int32 &iRowID, PointF &oLocationToSet ) : Boolean