Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.5.2
|
Leadtools.Annotations Namespace > AnnSize Structure : Subtraction Operator |
'Usage
This example subtracts two size structures.
Imports Leadtools Imports Leadtools.Annotations Public Sub AnnSize_OperatorMinus() Dim sz1 As AnnSize = New AnnSize(200, 300, AnnUnit.Pixel) Dim sz2 As AnnSize = New AnnSize(1.5F, 2.0F, AnnUnit.Inch) Dim s As String = String.Format("sz1 - sz2 = {0}", sz1 + sz2) MessageBox.Show(s) End Sub
using Leadtools; using Leadtools.Annotations; public void AnnSize_OperatorMinus() { AnnSize sz1 = new AnnSize(200, 300, AnnUnit.Pixel); AnnSize sz2 = new AnnSize(1.5F, 2f, AnnUnit.Inch); string s = string.Format("sz1 - sz2 = {0}", sz1 + sz2); MessageBox.Show(s); }