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 Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
SheetView Class
SheetView Members
GetRowMerge Method
SetColumnMerge Method