Click here to Skip to main content
15,886,067 members
Articles / Desktop Programming / Windows Forms

Object-oriented Printing with Inka, Part 1

Rate me:
Please Sign up or sign in to vote.
4.00/5 (4 votes)
27 Feb 2009LGPL35 min read 34.4K   396   28  
The basics of Inka, an open source printing component
Namespace Aggregates
    Public Class Sum
        Implements Core.IAggregateFunction

        Private _sum As Double = 0

        Public Sub Current(ByVal ParamArray args() As Object) Implements Core.IAggregateFunction.Current
            DesignByContract.Check.Require(args.Length = 1, "The Sum aggregate accepts only one argument")
            _sum += CDbl(args(0))
        End Sub

        Public ReadOnly Property Value() As String Implements Core.IAggregateFunction.Value
            Get
                Return _sum
            End Get

        End Property

    End Class
End Namespace

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer GeekSoft
Lithuania Lithuania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions