FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.Model 名前空間 > ISheetStyleModel インタフェース : AltRowCount プロパティ |
'Declaration Property AltRowCount As Integer
'使用法 Dim instance As ISheetStyleModel Dim value As Integer instance.AltRowCount = value value = instance.AltRowCount
int AltRowCount {get; set;}
FarPoint.Win.Spread.Model.ISheetStyleModel ssm; FarPoint.Win.Spread.Model.ISheetStyleModel ssm1; FarPoint.Win.Spread.NamedStyle ns = new FarPoint.Win.Spread.NamedStyle("StyleData"); FarPoint.Win.Spread.NamedStyle ns1 = new FarPoint.Win.Spread.NamedStyle("StyleHeaders"); ssm = (FarPoint.Win.Spread.Model.ISheetStyleModel)fpSpread1.ActiveSheet.Models.Style; ssm1 = (FarPoint.Win.Spread.Model.ISheetStyleModel)fpSpread1.ActiveSheet.Models.ColumnHeaderStyle; ns.BackColor = Color.LightBlue; ns1.BackColor = Color.Yellow; fpSpread1.NamedStyles.AddRange(new object[] {ns, ns1}); ssm.AltRowCount = 2; ssm.SetDirectAltRowInfo(0, ns); ssm1.SetDirectAltRowInfo(0, ns1);
Dim ssm As FarPoint.Win.Spread.Model.ISheetStyleModel Dim ssm1 As FarPoint.Win.Spread.Model.ISheetStyleModel Dim ns As New FarPoint.Win.Spread.NamedStyle("StyleData") Dim ns1 As New FarPoint.Win.Spread.NamedStyle("StyleHeaders") ssm = FpSpread1.ActiveSheet.Models.Style ssm1 = FpSpread1.ActiveSheet.Models.ColumnHeaderStyle ns.BackColor = Color.LightBlue ns1.BackColor = Color.Yellow FpSpread1.NamedStyles.AddRange(New Object() {ns, ns1}) ssm.AltRowCount = 2 ssm.SetDirectAltRowInfo(0, ns) ssm1.SetDirectAltRowInfo(0, ns1)