Aspose.Cells.GridWeb.Examples.CSharp.Cells.ModifyCells.AddDoubleValue C# (CSharp) 메소드

AddDoubleValue() 개인적인 메소드

private AddDoubleValue ( ) : void
리턴 void
        private void AddDoubleValue()
        {
            // ExStart:AddCellDoubleValue
            // Accessing the worksheet of the Grid that is currently active
            GridWorksheet sheet = GridWeb1.WorkSheets[GridWeb1.ActiveSheetIndex];

            // Accessing "B5" cell of the worksheet
            GridCell cell = sheet.Cells["B5"];

            // Putting a numeric value as string in "B5" cell that will be converted to a suitable data type automatically
            cell.PutValue("19.4", true);
            // ExEnd:AddCellDoubleValue
        }
    }