3.2.2.10 SetDefaultOrientation 方法
功能描述:
设置打印机的默认打印方向。横向或纵向。
方法语法:
Function SetDefaultOrientation( ByVal s_PrinterName As String, ByVal i_Orientation As Integer ) As Boolean |
方法参数:
参数名 |
类型 |
描述 |
s_PrinterName |
String |
打印机名 |
i_Orientation |
Integer |
打印方向,可选值有: 1: 纵向 2: 横向 |
返回值:
类型 |
描述 |
Boolean |
true:成功 false:失败 |
调用示例:
'设置打印方向为纵向 b = obj.SetDefaultOrientation("eWebPrinter", 1) |