Adds the width and height of one
LogicalSize structure to another
LogicalSize structure.
Syntax
Example
This example adds two size structures.
Visual Basic | Copy Code |
---|
Public Sub LogicalSize_Add()
Dim sz1 As LogicalSize = New LogicalSize(200, 300, LogicalUnit.Pixel)
Dim sz2 As LogicalSize = New LogicalSize(1.5F, 2f, LogicalUnit.Inch)
Dim s As String = String.Format("sz1 + sz2 = {0}", LogicalSize.Add(sz1, sz2))
MessageBox.Show(s)
End Sub
|
C# | Copy Code |
---|
///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); } |
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also