Subtraction Operator
Syntax
Parameters
size1
The first LogicalSize on the left side of the subtraction operator.
size2
The second LogicalSize on the right side of the subtraction operator.
Example
This example subtracts two size structures.
using Leadtools.Forms;
///This example subtracts two size structures.
public void LogicalSize_OperatorMinus()
{
LogicalSize sz1 = new LogicalSize(200, 300, LogicalUnit.Pixel);
LogicalSize sz2 = new LogicalSize(1.5F, 2f, LogicalUnit.Inch);
string s = string.Format("sz1 - sz2 = {0}", sz1 - sz2);
MessageBox.Show(s);
}
Imports Leadtools.Forms
'''This example subtracts two size structures.
Public Sub LogicalSize_OperatorMinus()
Dim sz1 As LogicalSize = New LogicalSize(200, 300, LogicalUnit.Pixel)
Dim sz2 As LogicalSize = New LogicalSize(1.5F, 2.0F, LogicalUnit.Inch)
Dim s As String = String.Format("sz1 - sz2 = {0}", sz1 - sz2)
MessageBox.Show(s)
End Sub