Products | Support | Back to Introduction | Email a link to this topic. | Back to Introduction - All Topics | Help Version 19.0.4.12
|
Leadtools.Forms Namespace > LogicalPoint Structure : Addition Operator |
public LogicalPoint operator +( LogicalPoint point, LogicalSize size )
'Declaration Public Operator +( _ ByVal point As LogicalPoint, _ ByVal size As LogicalSize _ ) As LogicalPoint
'Usage
public: LogicalPoint operator +( LogicalPoint point, LogicalSize size )
This example adds the size structure to point structure (offset).
Imports Leadtools.Forms '''This example adds two point structures. <TestMethod> _ Public Sub LogicalPoint_OperatorPlus() Dim sz As LogicalSize = New LogicalSize(2, 3, LogicalUnit.Centimeter) Dim pt As LogicalPoint = New LogicalPoint(1.5F, 2.0F, LogicalUnit.Inch) Dim s As String = String.Format("pt + sz = {0}", pt + sz) MessageBox.Show(s) End Sub
using Leadtools.Forms; ///This example adds two point structures. public void LogicalPoint_OperatorPlus() { LogicalSize sz = new LogicalSize(2, 3, LogicalUnit.Centimeter); LogicalPoint pt = new LogicalPoint(1.5F, 2f, LogicalUnit.Inch); string s = string.Format("pt + sz = {0}", pt + sz); MessageBox.Show(s); }