FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : GetPreferredPrintRowHeight Method |
'Declaration Public Function GetPreferredPrintRowHeight( _ ByVal g As Graphics, _ ByVal row As Integer _ ) As Single
private void GetPrintHeight(Graphics g, float pwidth, FarPoint.Win.Spread.SheetView sheet) { sheet = fpSpread1.ActiveSheet; pwidth = sheet.GetPreferredPrintRowHeight(g, 0); } private void button1_Click(object sender, System.EventArgs e) { Graphics g; float pw = 0; g = fpSpread1.CreateGraphics(); GetPrintHeight(g, pw, fpSpread1.ActiveSheet); MessageBox.Show(pw.ToString()); }
Private Sub GetPrintHeight(ByVal g As Graphics, ByVal pwidth As Single, ByVal sheet As FarPoint.Win.Spread.SheetView) sheet = FpSpread1.ActiveSheet pwidth = sheet.GetPreferredPrintRowHeight(g, 0) End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim g As Graphics Dim pw As Single g = FpSpread1.CreateGraphics() GetPrintHeight(g, pw, FpSpread1.ActiveSheet) MessageBox.Show(sngl.ToString()) End Sub
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8