| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | """Suite Table Suite: Classes for manipulating tables
 | 
					
						
							|  |  |  | Level 1, version 1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | Generated from /Volumes/Sap/System Folder/Extensions/AppleScript | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | 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 formula(aetools.NProperty): | 
					
						
							|  |  |  | 	"""formula - the formula of the cell """ | 
					
						
							|  |  |  | 	which = 'pfor' | 
					
						
							|  |  |  | 	want = 'ctxt' | 
					
						
							|  |  |  | class 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 name(aetools.NProperty): | 
					
						
							|  |  |  | 	"""name - the name of the column """ | 
					
						
							|  |  |  | 	which = 'pnam' | 
					
						
							|  |  |  | 	want = 'itxt' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | columns = column | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class row(aetools.ComponentItem): | 
					
						
							|  |  |  | 	"""row - A row """ | 
					
						
							|  |  |  | 	want = 'crow' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | rows = row | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class table(aetools.ComponentItem): | 
					
						
							|  |  |  | 	"""table - A table """ | 
					
						
							|  |  |  | 	want = 'ctbl' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | tables = table | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | cell._superclassnames = [] | 
					
						
							|  |  |  | cell._privpropdict = { | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | 	'formula' : formula, | 
					
						
							|  |  |  | 	'protection' : protection, | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | cell._privelemdict = { | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | column._superclassnames = [] | 
					
						
							|  |  |  | column._privpropdict = { | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | 	'name' : name, | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | column._privelemdict = { | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | row._superclassnames = [] | 
					
						
							|  |  |  | row._privpropdict = { | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | row._privelemdict = { | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | table._superclassnames = [] | 
					
						
							|  |  |  | table._privpropdict = { | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | table._privelemdict = { | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							|  |  |  | _Enum_prtn = { | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | 	'read_only' : 'nmod',	# Can\xd5t change values or formulas | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | 	'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, | 
					
						
							| 
									
										
										
										
											2002-01-22 23:22:32 +00:00
										 |  |  | 	'ctbl' : table, | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | 	'crow' : row, | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _propdeclarations = { | 
					
						
							|  |  |  | 	'pnam' : name, | 
					
						
							| 
									
										
										
										
											2002-01-22 23:22:32 +00:00
										 |  |  | 	'pfor' : formula, | 
					
						
							|  |  |  | 	'ppro' : protection, | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _compdeclarations = { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _enumdeclarations = { | 
					
						
							|  |  |  | 	'prtn' : _Enum_prtn, | 
					
						
							|  |  |  | } |