1 /*
2  * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3  * Copyright (C) 2013 - Gustavo Barbosa Libotte <gustavolibotte@gmail.com>
4  *
5  * Copyright (C) 2012 - 2016 - Scilab Enterprises
6  *
7  * This file is hereby licensed under the terms of the GNU GPL v2.0,
8  * pursuant to article 5.3.4 of the CeCILL v.2.1.
9  * This file was originally licensed under the terms of the CeCILL v2.1,
10  * and continues to be available under such terms.
11  * For more information, see the COPYING file which you should have received
12  * along with this program.
13  *
14  */
15 
16 /*------------------------------------------------------------------------*/
17 /* file: set_datatips_property.c                                          */
18 /* desc : function to modify in Scilab the datatips polyline's            */
19 /*        field of a handle                                               */
20 /*------------------------------------------------------------------------*/
21 
22 #include "setHandleProperty.h"
23 #include "Scierror.h"
24 #include "localization.h"
25 #include "SetPropertyStatus.h"
26 
27 /*------------------------------------------------------------------------*/
set_datatips_property(void * _pvCtx,int iObjUID,void * _pvData,int valueType,int nbRow,int nbCol)28 int set_datatips_property(void* _pvCtx, int iObjUID, void* _pvData, int valueType, int nbRow, int nbCol)
29 {
30     Scierror(999, _("Datatips property can not be modified directly.\n"));
31     return SET_PROPERTY_ERROR;
32 }
33 /*------------------------------------------------------------------------*/
34