Spread Windows Forms 12.0 Product Documentation
ShowOutput Property
Example 


GrapeCity.Win.PluginInputMan Assembly > GrapeCity.Win.Spread.InputMan.CellType Namespace > DropDownCalculatorInfo Class : ShowOutput Property
Gets or sets a bool value that indicates whether to show the output region.
Syntax
'Declaration
 
Public Property ShowOutput As Boolean
'Usage
 
Dim instance As DropDownCalculatorInfo
Dim value As Boolean
 
instance.ShowOutput = value
 
value = instance.ShowOutput
public bool ShowOutput {get; set;}

Property Value

A bool value that indicates whether to show the output region.
Remarks
This property determines whether to show the output area. When the value is false, the output is shown on the EditBox of the GcNumber control.
Example
This example sets the ShowOutput property.
GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType ncell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType(); 
ncell1.DropDownCalculator.ShowOutput = true;
ncell1.DropDownCalculator.OutputHeight = 25;
fpSpread1.ActiveSheet.Cells[1, 1].CellType = ncell1;
fpSpread1.ActiveSheet.Cells[1, 1].Value = 12.31;
Dim ncell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType()
ncell1.DropDownCalculator.ShowOutput = True
ncell1.DropDownCalculator.OutputHeight = 25
fpSpread1.ActiveSheet.Cells(1, 1).CellType = ncell1
fpSpread1.ActiveSheet.Cells(1, 1).Value = 12.31
See Also

Reference

DropDownCalculatorInfo Class
DropDownCalculatorInfo Members