HtmlSaveOptionsCssSavingStrategy Delegate |
You can assign to this property custom strategy that implements processing
or/and saving of one CSS's part that was created during conversion of PDF to HTML .
In such case processing (like saving to stream or disk)
must be done in that custom code
Namespace: Aspose.PdfAssembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntaxpublic delegate void CssSavingStrategy(
HtmlSaveOptionsCssSavingInfo partSavingInfo
)
Public Delegate Sub CssSavingStrategy (
partSavingInfo As HtmlSaveOptionsCssSavingInfo
)
public delegate void CssSavingStrategy(
HtmlSaveOptionsCssSavingInfo^ partSavingInfo
)
type CssSavingStrategy =
delegate of
partSavingInfo : HtmlSaveOptionsCssSavingInfo -> unit
Parameters
- partSavingInfo
- Type: Aspose.PdfHtmlSaveOptionsCssSavingInfo
represents set of data that can be used for saving of supplied CSS part
See Also