Spread Windows Forms 7.0 Product Documentation
ResetProperty Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > BaseSheetAxisModel Class : ResetProperty Method


index
Row or column index
prop
Property to reset

Glossary Item Box

Resets a specified field of a SheetAxisProperty object to its default value. (This implementation does nothing.)

Syntax

Visual Basic (Declaration) 
Public Overridable Sub ResetProperty( _
   ByVal index As Integer, _
   ByVal prop As SheetAxisProperty _
) 
Visual Basic (Usage)Copy Code
Dim instance As BaseSheetAxisModel
Dim index As Integer
Dim prop As SheetAxisProperty
 
instance.ResetProperty(index, prop)
C# 
public virtual void ResetProperty( 
   int index,
   SheetAxisProperty prop
)

Parameters

index
Row or column index
prop
Property to reset

Example

This example resets a specified SheetAxisModel object's property.
C#Copy Code
private void button4_Click(object sender, System.EventArgs e)
{
FarPoint.Win.Spread.Model.BaseSheetAxisModel baseModel;
baseModel = (FarPoint.Win.Spread.Model.BaseSheetAxisModel)fpSpread1.ActiveSheet.Models.ColumnAxis;
baseModel.ResetProperty(0, FarPoint.Win.Spread.Model.SheetAxisProperty.Size);
}
Visual BasicCopy Code
Dim baseModel As FarPoint.Win.Spread.Model.BaseSheetAxisModel
baseModel = FpSpread1.ActiveSheet.Models.ColumnAxis
baseModel.ResetProperty(0, FarPoint.Win.Spread.Model.SheetAxisProperty.Size)

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.