Spread ASP.NET 6.0 Product Documentation
Reset Method
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > Border Class : Reset Method


Glossary Item Box

Resets the specified border property to its default setting.

Overload List

OverloadDescription
ResetResets the specified border property to its default setting.  

Remarks

Use this method to reset any of the property settings back to "Not Set". See the list of properties on the page of Border Class Members.

If you want to reset all border properties, use the ResetAll method.

Example

This example creates a Border object, sets several of its properties, then Resets the BorderColorBottom property to its default value in a ButtonClick event.
C#Copy Code
FarPoint.Web.Spread.Borderborder=NewFarPoint.Web.Spread.Border();
FarPoint.Web.Spread.Cellacell;
acell=FpSpread1.Cells[0,0];
border.BorderColorBottom=Color.Red;
border.BorderColorRight=Color.Green;
border.BorderSize=2;
acell.Border=border;
PrivatevoidButton1_Click(objectsender,System.EventArgse)
{
border.Reset(FarPoint.Web.Spread.BorderProperty.BorderColorBottom);
}
Visual BasicCopy Code
DimborderAsNewFarPoint.Web.Spread.Border()
DimacellAsFarPoint.Web.Spread.Cell
acell=FpSpread1.Cells(0,0)
border.BorderColorBottom=Color.Red
border.BorderColorRight=Color.Green
border.BorderSize=2
acell.Border=border
PrivateSubButton1_Click(ByValsenderAsSystem.Object,ByValeAsSystem.EventArgs)HandlesButton1.Click
border.Reset(FarPoint.Web.Spread.BorderProperty.BorderColorBottom)
EndSub

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.