View Single Post
Quote:
Originally Posted by jphalip View Post
1) Is it possible to check in an apple script if a row is numbered, and which numbering system it is using (legal, letters, numeric, etc.)?
None of the attributes which constitute a style seem to expose the numbering setting for a row. Might be worth a suggestion through Help > Send Feedback ... in OO


Quote:
Originally Posted by jphalip View Post
Is there an elegant way of checking if a style name is applied to a given row ?
A single line of the following form will return a boolean value:

Code:
name of (named styles of style of oRow) contains strStyleName
(name of (named styles of style of oRow) yields a list of the names of all the named styles attached to oRow)

--

Last edited by RobTrew; 2010-05-08 at 11:44 AM..