Visual Basic (Declaration) | |
---|---|
Public Overrides Function GetDirectInfo( _ ByVal row As Integer, _ ByVal column As Integer, _ ByVal destInfo As StyleInfo _ ) As StyleInfo |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As DefaultSheetStyleModel Dim row As Integer Dim column As Integer Dim destInfo As StyleInfo Dim value As StyleInfo value = instance.GetDirectInfo(row, column, destInfo) |
Parameters
- row
- Model row index of the cell, or -1 to specify a column or model default
- column
- Model column index of the cell, or -1 to specify a row or model default
- destInfo
- StyleInfo object to use for getting the style
Return Value
StyleInfo object containing the style settingsException | Description |
---|---|
System.IndexOutOfRangeException | Specified row index is not valid; must be between -1 and the total number of rows |
System.IndexOutOfRangeException | Specified column index is not valid; must be between -1 and the total number of columns |
Spread uses a composite of style settings to paint the spreadsheet. For example, for a cell, the component looks at the style settings for the column and row for the cell, and the cell's own settings.
Use this method to get the direct settings for the specified object. Use the SetDirectInfo methods to set the direct settings for an object.
Direct cell styles override direct row styles, which override direct column styles, which override model default styles.
To return the composite information for an object, use the GetCompositeInfo method.
C# | Copy Code |
---|---|
privatevoidPage_Load(objectsender,System.EventArgse) { if(this.IsPostBack)return; FarPoint.Web.Spread.Model.DefaultSheetStyleModelmodel=(FarPoint.Web.Spread.Model.DefaultSheetStyleModel)FpSpread1.Sheets[0].StyleModel; FarPoint.Web.Spread.StyleInfostyle=newFarPoint.Web.Spread.StyleInfo(); style.BackColor=Color.Yellow; model.SetDirectInfo(0,0,style); ListBox1.Items.Add(model.GetDirectInfo(0,0,style).BackColor.ToString()); } |
Visual Basic | Copy Code |
---|---|
PrivateSubPage_Load(ByValsenderAsSystem.Object,ByValeAsSystem.EventArgs)HandlesMyBase.Load
If(IsPostBack)ThenReturn
DimmodelAsFarPoint.Web.Spread.Model.DefaultSheetStyleModel=FpSpread1.Sheets(0).StyleModel
DimstyleAsNewFarPoint.Web.Spread.StyleInfo()
style.BackColor=Color.Yellow
model.SetDirectInfo(0,0,style)
ListBox1.Items.Add(model.GetDirectInfo(0,0,style).BackColor.ToString())
EndSub |
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