GrapeCity MultiRow Windows Forms Documentation
UseMnemonic Property (ButtonCellBase)
Example 


Gets or sets a value that indicates whether the first character that is preceded by an ampersand (&) is used as the mnemonic key of the cell.
Syntax
<DefaultValueAttribute()>
<SRCategoryAttribute("Appearance")>
<SRDescriptionAttribute("If true, the first character preceded by an ampersand (&) will be used as the button's mnemonic key.")>
Public Property UseMnemonic As Boolean
Dim instance As ButtonCellBase
Dim value As Boolean
 
instance.UseMnemonic = value
 
value = instance.UseMnemonic
[DefaultValue()]
[SRCategory("Appearance")]
[SRDescription("If true, the first character preceded by an ampersand (&) will be used as the button's mnemonic key.")]
public bool UseMnemonic {get; set;}

Property Value

true if the first character that is preceded by an ampersand (&) is used as the mnemonic key of the cell; otherwise,false. The default is false.
Remarks
When this property is set to true, only renderer logic supports this feature. To support the keyborad action, please handle the GcMultiRow.KeyDown event.
Example
This example sets the UseMnemonic property.
GrapeCity.Win.MultiRow.ButtonCell button1 = new GrapeCity.Win.MultiRow.ButtonCell();
button1.Value = "C&lick";
button1.UseMnemonic = true;
button1.UseVisualStyleBackColor = true;
GrapeCity.Win.MultiRow.CheckBoxCell check2 = new GrapeCity.Win.MultiRow.CheckBoxCell();
GrapeCity.Win.MultiRow.Template template1 = GrapeCity.Win.MultiRow.Template.CreateGridTemplate(new GrapeCity.Win.MultiRow.Cell[] {button1, check2}, 160, GrapeCity.Win.MultiRow.AutoGenerateGridTemplateStyles.ColumnHeader | GrapeCity.Win.MultiRow.AutoGenerateGridTemplateStyles.RowHeaderAutoNumber);
gcMultiRow1.Template = template1;
gcMultiRow1.RowCount = 3;
Dim button1 As New GrapeCity.Win.MultiRow.ButtonCell()
button1.Value = "C&lick"
button1.UseMnemonic = True
button1.UseVisualStyleBackColor = True
Dim check2 As New GrapeCity.Win.MultiRow.CheckBoxCell()
Dim template1 As GrapeCity.Win.MultiRow.Template = GrapeCity.Win.MultiRow.Template.CreateGridTemplate(New GrapeCity.Win.MultiRow.Cell() {button1, check2}, 160, GrapeCity.Win.MultiRow.AutoGenerateGridTemplateStyles.ColumnHeader Or GrapeCity.Win.MultiRow.AutoGenerateGridTemplateStyles.RowHeaderAutoNumber)
GcMultiRow1.Template = template1
GcMultiRow1.RowCount = 3
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ButtonCellBase Class
ButtonCellBase Members

 

 


Copyright © GrapeCity, inc. All rights reserved.