Example #1
0
 /// <description>
 /// Change the charting type of the given plotting curve.
 /// </description>
 /// <param name="plotId">Index of the plotting curve.  Must be 0<=plotId<6.</param>
 /// <param name="graphType">Charting type to use for the curve.</param>
 /// <remarks> Instead of calling this method, you can directly assign to #plotType.</remarks>
 public void SetGraphType(int plotId, GuiGraphType graphType)
 {
     InternalUnsafeMethods.SetGraphType__Args _args = new InternalUnsafeMethods.SetGraphType__Args()
     {
         plotId    = plotId,
         graphType = (int)graphType,
     };
     InternalUnsafeMethods.SetGraphType()(ObjectPtr, _args);
 }
Example #2
0
            internal static void setGraphType(IntPtr thisPtr, int plotId, GuiGraphType graphType)
            {
                if (_setGraphTypeFunc == null)
                {
                    _setGraphTypeFunc =
                        (_setGraphType)Marshal.GetDelegateForFunctionPointer(Torque3D.DllLoadUtils.GetProcAddress(Torque3D.Torque3DLibHandle,
                                                                                                                  "fn_GuiGraphCtrl_setGraphType"), typeof(_setGraphType));
                }

                _setGraphTypeFunc(thisPtr, plotId, graphType);
            }
 /// <summary>
 /// Change the charting type of the given plotting curve.
 ///    @param plotId Index of the plotting curve.  Must be 0=plotId6.
 ///    @param graphType Charting type to use for the curve.
 ///    @note Instead of calling this method, you can directly assign to #plotType. )
 /// 
 /// </summary>
 public void setGraphType(int plotId, GuiGraphType graphType)
     {
     TorqueScriptTemplate.m_ts.fnGuiGraphCtrl_setGraphType(_mSimObjectId, plotId, (int) graphType);
     }
/// <summary>
/// Change the charting type of the given plotting curve.
///    @param plotId Index of the plotting curve.  Must be 0<=plotId<6.
///    @param graphType Charting type to use for the curve.
///    @note Instead of calling this method, you can directly assign to #plotType. )
/// 
/// </summary>
public  void setGraphType(string guigraphctrl, int plotId, GuiGraphType graphType){
m_ts.fnGuiGraphCtrl_setGraphType(guigraphctrl, plotId, (int)graphType );
}
Example #5
0
 public virtual void setGraphType(int plotId, GuiGraphType graphType)
 {
     InternalUnsafeMethods.setGraphType(ObjectPtr, plotId, graphType);
 }
/// <summary>
/// Change the charting type of the given plotting curve.
///    @param plotId Index of the plotting curve.  Must be 0=plotId6.
///    @param graphType Charting type to use for the curve.
///    @note Instead of calling this method, you can directly assign to #plotType. )
///
/// </summary>
        public void setGraphType(int plotId, GuiGraphType graphType)
        {
            TorqueScriptTemplate.m_ts.fnGuiGraphCtrl_setGraphType(_mSimObjectId, plotId, (int)graphType);
        }