Skip to content

Instantly share code, notes, and snippets.

@chris-vanvranken
Last active December 11, 2015 03:08
Show Gist options
  • Save chris-vanvranken/4535086 to your computer and use it in GitHub Desktop.
Save chris-vanvranken/4535086 to your computer and use it in GitHub Desktop.
Creating Soft reports with VisualStudio

How to Manipulate the DataTables

protected override Option<DataTable> _ConstructDataTable(GetSoftOracle soft)
{
   return Option.Some(soft.
     FilledTable(Query.get("softquery",orderControl.OrderRangeFrom,orderControl.OrderRangeTo))
   );
}

How to manipulate the HTML formatting

protected override HtmlFormatting _SetupFormatting(HtmlFormatting formatting)
{
    /*
     * For info on how to setup HTML formatting
     * See this page: 
     */

     return formatting;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment