function addtip(this,tipfcn,info)
%ADDTIP  Adds a buttondownfcn to each dot in @eventCharView object

%   Author(s):  
%   Copyright 1986-2004 The MathWorks, Inc.
%   $Revision: 1.1.6.1 $  $Date: 2004/12/26 21:41:46 $

for ct1 = 1:size(this.Lines,1)
    for ct2 = 1:size(this. Lines,2)
        info.Row = ct1; 
        info.Col = ct2;
        % Store the line so that maketip can identify the event 
        info.Line = this.Lines(ct1,ct2);
        this.installtip(this.Lines(ct1,ct2),tipfcn,info)
        set(this.Lines(ct1,ct2),'Tag','CharPoint')
    end
end
