Spread Windows Forms 7.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 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

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