View Single Post
The following code fragment should give you an idea of how to access these values:

Code:
tell application "OmniOutliner Professional"
	tell front document
		tell column 3
			set y to {shouldUseVerboseFormat:boolean, hoursPerDay:integer, hoursPerWeek:integer, hoursPerMonth:integer} as record
			set y to format
			set hPD to |hoursPerDay| of y
			display dialog "hPD is " & hPD buttons "OK"
		end tell
	end tell
end tell
I found the record definition in Script Editor by running

Code:
tell application "OmniOutliner Professional"
	tell front document
		tell column 3
			format
		end tell
	end tell
end tell
and looking at the result. All this with a document that had the appropriate definition of column 3, of course!