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 : Addition Operator |
This example adds two size structures.
Imports Leadtools Imports Leadtools.Annotations Public Sub AnnSize_OperatorPlus() Dim sz1 As AnnSize = New AnnSize(1.5F, 2.0F, AnnUnit.Inch) Dim sz2 As AnnSize = New AnnSize(200, 300, AnnUnit.Pixel) Dim s As String = String.Format("sz1 + sz2 = {0}", sz1 + sz2) MessageBox.Show(s) End Sub
using Leadtools; using Leadtools.Annotations; public void AnnSize_OperatorPlus() { AnnSize sz1 = new AnnSize(1.5F, 2f, AnnUnit.Inch); AnnSize sz2 = new AnnSize(200, 300, AnnUnit.Pixel); string s = string.Format("sz1 + sz2 = {0}", sz1 + sz2); MessageBox.Show(s); }