C#
VB
C++
Adds the width and height of one LogicalSize structure to another LogicalSize structure.
public static LogicalSize Add(
LogicalSize size1,
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);
}