public object GetPluginConfig(AgAttrBuilder pAttrBuilder)
        {
            if (m_AgAttrScope == null)
            {
                m_AgAttrScope = pAttrBuilder.NewScope();

                pAttrBuilder.AddFileDispatchProperty(m_AgAttrScope,
                                                     "FilePath",
                                                     "Path to input file",
                                                     "FilePath",
                                                     "Comma Separated Text File",
                                                     "*.txt",
                                                     (int)AgEAttrAddFlags.eAddFlagNone);

                pAttrBuilder.AddDoubleDispatchProperty(m_AgAttrScope,
                                                       "Tolerance",
                                                       "Tolerance used for lat/lon matching.",
                                                       "Tolerance",
                                                       (int)AgEAttrAddFlags.eAddFlagNone);
            }
            return(m_AgAttrScope);
        }