ActiveReports 6 Online Help
InchToCm Method
Example 

Inches value to be converted to centimeters .
Converts value from inches to centimeters.
Syntax
'Declaration
 
Public Shared Function InchToCm( _
   ByVal value As Single _
) As Single
public static float InchToCm( 
   float value
)

Parameters

value
Inches value to be converted to centimeters .

Return Value

Single value representing the inches value in centimeters.
Example
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.Label1.Left = ActiveReport1.InchToCm(2);
    this.Label1.Left = ActiveReport1.InchToCm(2);
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Label1.Left = ActiveReport1.InchToCm(2)
    Me.Label1.Left = ActiveReport1.InchToCm(2)
End Sub
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ActiveReport Class
ActiveReport Members
CmToInch Method

Send Feedback