Converts a pixel measurement into twips (1/20th of a point).

Namespace:  C1.Silverlight.Excel
Assembly:  C1.Silverlight.Excel.5 (in C1.Silverlight.Excel.5.dll)

Syntax

C#
public static int PixelsToTwips(
	double pix
)
Visual Basic
Public Shared Function PixelsToTwips ( _
	pix As Double _
) As Integer

Parameters

pix
Type: System..::..Double
Measurement in screen pixels.

Return Value

Measurement in twips.

Remarks

Excel stores measurements in twips (1/20th of a point), a resolution-independent unit. .NET controls, on the other hand, usually express measurements in pixels. This method provides an easy way to convert pixel measurements into twips using the current screen resolution.

See Also