
Converts a value in twips to a value in pixels according to a specified resolution. This is a helper method that is useful when implementing pixel-based document viewers.
[C#]
public static int Twips2Pixels(int twips, float dpi)
[Visual Basic]
Public Shared Function Twips2Pixels(ByVal twips As Integer, ByVal dpi As Single) As Integer
| Parameter | Description | |
| twips | The value in twips to be converted. | |
| dpi | The resolution the conversion is based on. |
Returns the value converted to pixels according to the specified resolution.