C#
VB
C++
Adds the width and height of one LogicalSize structure to another LogicalSize structure.
public static LogicalSize Add(LogicalSize size1,LogicalSize size2)
Public Shared Function Add( _ByVal size1 As Leadtools.Forms.LogicalSize, _ByVal size2 As Leadtools.Forms.LogicalSize _) As Leadtools.Forms.LogicalSize
public:static Leadtools.Forms.LogicalSize Add(Leadtools.Forms.LogicalSize size1,Leadtools.Forms.LogicalSize size2)
size1
The first LogicalSize being added.
size2
The second LogicalSize being added.
The addition will be done based on size1 unit.
This example adds two size structures.
using Leadtools.Forms;///This example adds two size structures.public void LogicalSize_Add(){LogicalSize sz1 = new LogicalSize(200, 300, LogicalUnit.Pixel);LogicalSize sz2 = new LogicalSize(1.5F, 2f, LogicalUnit.Inch);string s = string.Format("sz1 + sz2 = {0}", LogicalSize.Add(sz1, sz2));MessageBox.Show(s);}
Imports Leadtools.Forms'''This example adds two size structures.Public Sub LogicalSize_Add()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}", LogicalSize.Add(sz1, sz2))MessageBox.Show(s)End Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
