FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : GetColumnMerge Method |
'Declaration Public Function GetColumnMerge( _ ByVal column As Integer _ ) As MergePolicy
'Usage Dim instance As SheetView Dim column As Integer Dim value As MergePolicy value = instance.GetColumnMerge(column)
public MergePolicy GetColumnMerge( int column )
FpSpread1.ActiveSheetView.Cells[0, 2, 2, 2].Text = "Test";
FpSpread1.ActiveSheetView.SetColumnMerge(2, FarPoint.Web.Spread.Model.MergePolicy.Always);
FarPoint.Web.Spread.Model.MergePolicy mp;
mp = FpSpread1.ActiveSheetView.GetColumnMerge(2);
Response.Write(mp.ToString());
FpSpread1.ActiveSheetView.Cells(0, 2, 2, 2).Text = "Test" FpSpread1.ActiveSheetView.SetColumnMerge(2, FarPoint.Web.Spread.Model.MergePolicy.Always) Dim mp As FarPoint.Web.Spread.Model.MergePolicy mp = FpSpread1.ActiveSheetView.GetColumnMerge(2) Response.Write(mp.ToString())
Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional
SheetView Class
SheetView Members
GetRowMerge Method
SetColumnMerge Method