'Declaration Public Property DefaultStyleName As String
'Usage Dim instance As ColumnFooter Dim value As String instance.DefaultStyleName = value value = instance.DefaultStyleName
public string DefaultStyleName {get; set;}
'Declaration Public Property DefaultStyleName As String
'Usage Dim instance As ColumnFooter Dim value As String instance.DefaultStyleName = value value = instance.DefaultStyleName
public string DefaultStyleName {get; set;}
Exception | Description |
---|---|
System.ArgumentException | Specified style (NamedStyle object) could not be found in the collection |
FarPoint.Web.Spread.NamedStyle mnstyle = new FarPoint.Web.Spread.NamedStyle(); mnstyle.Name = "fpstyle"; mnstyle.BackColor = Color.Yellow; FpSpread1.NamedStyles.Add(mnstyle); FpSpread1.ActiveSheetView.ColumnFooter.DefaultStyleName = mnstyle.Name;
FarPoint.Web.Spread.NamedStyle mnstyle = new FarPoint.Web.Spread.NamedStyle(); mnstyle.Name = "fpstyle"; mnstyle.BackColor = Color.Yellow; FpSpread1.NamedStyles.Add(mnstyle); FpSpread1.ActiveSheetView.ColumnFooter.DefaultStyleName = mnstyle.Name;