Bonds {BioNovoGene.BioDeep.Chemoinformatics.SMILES} .NET clr documentation

Bonds

Description

Single, double, triple, and aromatic bonds are represented by the symbols -, =, #, and :, respectively. Adjacent atoms are assumed to be connected to each other by a single or aromatic bond (single and aromatic bonds may always be omitted).

Declare

            
# namespace BioNovoGene.BioDeep.Chemoinformatics.SMILES
export class Bonds extends Enum {
   NA: Bonds = 0;

   [@desc "-"]
   single: Bonds = 1;

   [@desc "="]
   double: Bonds = 2;

   [@desc "#"]
   triple: Bonds = 3;

   [@desc ":"]
   aromatic: Bonds = 4;

}

        

.NET clr type reference tree

  1. this class extends from Enum class: Enum
  2. use by field member NA: Bonds
  3. use by field member single: Bonds
  4. use by field member double: Bonds
  5. use by field member triple: Bonds
  6. use by field member aromatic: Bonds

[Package {$package} version {$version} Index]