Applies To
Button Object, Buttons Collection, CheckBox Object, DrawingObjects Collection, GroupBox Object, GroupBoxes Collection, Label Object, Labels Collection, OptionButton Object, OptionButtons Collection.
Description
Returns or sets the phonetic keyboard accelerator key character for the control (this property is available only in Far East Microsoft Excel). The phonetic accelerator is used when the system accelerator mode is switched to phonetic characters (as opposed to roman characters, which use the Accelerator property). Read-write.
See Also
Accelerator Property.
Example
This example sets the accelerator and phonetic accelerator for button four on Dialog1.
With DialogSheets("Dialog1").Buttons(4) .Accelerator = "E" .PhoneticAccelerator = "l" End With