Compartilhar via


System.ProcessorType Property

Word Developer Reference

Returns the type of processor that the system is using (for example, i486). Read-only String.

Syntax

expression.ProcessorType

expression   An expression that returns a System object.

Example

This example displays a message on the status bar if the processor that the system is using isn't a Pentium processor.

Visual Basic for Applications
  If System.ProcessorType <> "Pentium" Then _
    StatusBar = "Please wait..."

See Also