All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lib-python.2.7.plat-mac.lib-scriptpackages.StdSuites.Table_Suite.py Maven / Gradle / Ivy

Go to download

Jython is an implementation of the high-level, dynamic, object-oriented language Python written in 100% Pure Java, and seamlessly integrated with the Java platform. It thus allows you to run Python on any Java platform.

There is a newer version: 2.7.4
Show newest version
"""Suite Table Suite: Classes for manipulating tables
Level 1, version 1

Generated from /Volumes/Sap/System Folder/Extensions/AppleScript
AETE/AEUT resource version 1/0, language 0, script 0
"""

import aetools
import MacOS

_code = 'tbls'

class Table_Suite_Events:

    pass


class cell(aetools.ComponentItem):
    """cell - A cell """
    want = 'ccel'
class _Prop_formula(aetools.NProperty):
    """formula - the formula of the cell """
    which = 'pfor'
    want = 'ctxt'
class _Prop_protection(aetools.NProperty):
    """protection - Indicates whether value or formula in the cell can be changed """
    which = 'ppro'
    want = 'prtn'

cells = cell

class column(aetools.ComponentItem):
    """column - A column """
    want = 'ccol'
class _Prop_name(aetools.NProperty):
    """name - the name of the column """
    which = 'pnam'
    want = 'itxt'

columns = column

class rows(aetools.ComponentItem):
    """rows -  """
    want = 'crow'

row = rows

class tables(aetools.ComponentItem):
    """tables -  """
    want = 'ctbl'

table = tables
cell._superclassnames = []
cell._privpropdict = {
    'formula' : _Prop_formula,
    'protection' : _Prop_protection,
}
cell._privelemdict = {
}
column._superclassnames = []
column._privpropdict = {
    'name' : _Prop_name,
}
column._privelemdict = {
}
rows._superclassnames = []
rows._privpropdict = {
}
rows._privelemdict = {
}
tables._superclassnames = []
tables._privpropdict = {
}
tables._privelemdict = {
}
_Enum_prtn = {
    'read_only' : 'nmod',       # Can\xd5t change values or formulas
    'formulas_protected' : 'fpro',      # Can changes values but not formulas
    'read_2f_write' : 'modf',   # Can change values and formulas
}


#
# Indices of types declared in this module
#
_classdeclarations = {
    'ccel' : cell,
    'ccol' : column,
    'crow' : rows,
    'ctbl' : tables,
}

_propdeclarations = {
    'pfor' : _Prop_formula,
    'pnam' : _Prop_name,
    'ppro' : _Prop_protection,
}

_compdeclarations = {
}

_enumdeclarations = {
    'prtn' : _Enum_prtn,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy