示例#1
0
        /// <summary>
        /// Copy ExportParms members to ResultsFormat
        /// </summary>
        /// <param name="ep"></param>

        public void CopyFromExportParms(ExportParms ep)
        {
            QueryId           = ep.QueryId;
            OutputDestination = ep.OutputDestination;
            RunInBackground   = ep.RunInBackground;

            ExportFileFormat        = ep.ExportFileFormat;
            OutputFileName          = ep.OutputFileName;
            OutputFileName2         = ep.OutputFileName2;
            DuplicateKeyTableValues = ep.DuplicateKeyValues;

            if (ep.QualifiedNumberSplit != QnfEnum.Undefined)
            {
                QualifiedNumberSplit = ep.QualifiedNumberSplit;
            }

            ExportStructureFormat = ep.ExportStructureFormat;
            StructureFlags        = ep.StructureFlags;
            FixedHeightStructures = ep.FixedHeightStructures;
            ColumnNameFormat      = ep.ColumnNameFormat;
            IncludeDataTypes      = ep.IncludeDataTypes;
            OpenMode       = ep.OpenMode;
            ViewStructures = ep.ViewStructures;

            return;
        }
示例#2
0
        /// <summary>
        /// Transform molecule according to flag settings
        /// </summary>
        /// <param name="flags"></param>
        /// <param name="name">Name to go in first line</param>
        /// <returns></returns>

        public void TransformMolecule(
            MoleculeTransformationFlags flags,
            string name)
        {
            throw new NotImplementedException();
        }