FunctionType Property

The FunctionType property returns or sets the function plot type. Returns a Long.

Syntax

object.FunctionType

object.FunctionType = FunctionType

 

Parameter Type Description
FunctionType grfFunctionPlotType required, specifies Y=F(X), X=F(Y), or parametric function type

 

Example 1

This example shows how to return the type of equation.

Debug.Print Function1.FunctionType

Example 2

This example shows how to make the function an X as a function of Y equation.

Function1.FunctionType = grfFunctionPlotXY

Example 3

This example shows how to make the function a parametric equation.

Function1.FunctionType = grfFunctionPlotParametric

 

Used by: AutoFunctionPlot Object