Spread Windows Forms 6.0 Product Documentation
ResetCanFocus Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleInfo Class : ResetCanFocus Method


Glossary Item Box

Resets the CanFocus property to its default value.

Syntax

Visual Basic (Declaration) 
Public Overridable Sub ResetCanFocus() 
Visual Basic (Usage)Copy Code
Dim instance As StyleInfo
 
instance.ResetCanFocus()
C# 
public virtual void ResetCanFocus()

Example

C#Copy Code
FarPoint.Win.Spread.StyleInfosi=newFarPoint.Win.Spread.StyleInfo();
DialogResultdlg;
si.CanFocus=true;
fpSpread1.ActiveSheet.DefaultStyle=si;
dlg=MessageBox.Show("Resettheabilitytoreceivefocus?");
if(dlg==DialogResult.OK)
{
si.ResetCanFocus();
FpSpread1.ActiveSheet.DefaultStyle=si;
}
Visual BasicCopy Code
DimsiAsNewFarPoint.Win.Spread.StyleInfo
DimdlgAsDialogResult
si.CanFocus=True
FpSpread1.ActiveSheet.DefaultStyle=si
dlg=MessageBox.Show("Resettheabilitytoreceivefocus?")
Ifdlg=DialogResult.OKThen
si.ResetCanFocus()
FpSpread1.ActiveSheet.DefaultStyle=si
EndIf

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

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.