Knowledge Base

WD: AppleScript Example: Data Size Command

Article ID: 125583

Article Last Modified on 11/23/2006


APPLIES TO


This article was previously published under Q125583

SUMMARY

The information in this article discusses the following AppleScript event:

Data Size

This event is found in the Core Suite of Word's Event Dictionary.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact a Microsoft Certified Partner or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Partners, please visit the following Microsoft Web site:
For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site: The Core Suite contains events that a program should support to facilitate easy, intuitive communications between the application and the system software. System 7.0 was the first operating system to support these events.

The Data Size command is used to get the size, in bytes, of an object. The result is displayed as an integer in "the result" window of AppleScript.

Data Size of 'something' [as 'type']

The As argument tells the Data Size command which data type to calculate the size for.

The seven basic data types in AppleScript:

Strings
Numbers
Integers
Real Numbers
Booleans
Lists
Records

NOTE: The Data Size command cannot use some of the data types listed above. The valid data types for the Data Size command are:

Strings
Real Numbers
Lists

Example

The following AppleScript script sample gets the data size, in bytes, of the selected object. This script does the following:

  1. Opens the document named "MyWordFile".
  2. Selects the first paragraph in the document.
  3. Uses the Data Size command to get the size, in bytes, of the selected object.
tell application "Microsoft Word"
   open "MyWordFile"
   set selection to paragraph 1
   data size of selection as string
end tell
				

Additional query words: Apple Script datasize

Keywords: kbinfo kbmacro kbmacroexample kbprogramming kb3rdparty kbdtacode KB125583