Printer.PSet Method (Single, Single)
Prints a single point on a page.
Namespace: Microsoft.VisualBasic.PowerPacks.Printing.Compatibility.VB6
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)
Syntax
'Declaration
Public Sub PSet ( _
x As Single, _
y As Single _
)
public void PSet(
float x,
float y
)
public:
void PSet(
float x,
float y
)
member PSet :
x:float32 *
y:float32 -> unit
public function PSet(
x : float,
y : float
)
Parameters
- x
Type: System.Single
Single value indicating the horizontal coordinates of the point to print.
- y
Type: System.Single
Single value indicating the vertical coordinates of the point to print.
Remarks
The size of the point printed depends on the setting of the DrawWidth property. When DrawWidth is set to 1, PSet prints a single point. When DrawWidth is more than 1, the point is centered on the specified coordinates.
The manner in which the point is printed depends on the setting of the DrawStyle property.
When PSet runs, the CurrentX and CurrentY properties are set to the point specified by the arguments.
Note
Functions and objects in the Microsoft.VisualBasic.PowerPacks.Printing.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic 2010. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.
Examples
The following example demonstrates how to print a single point.
Dim Printer As New Printer
Printer.PSet(500, 500)
Printer.EndDoc()
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualBasic.PowerPacks.Printing.Compatibility.VB6 Namespace
Other Resources
How to: Fix Upgrade Errors by Using the Printer Compatibility Library (Visual Basic)
Deploying Applications That Reference the Printer Compatibility Library