Class FigureRendererPluginResult
Class FigureRendererPluginResult
Namespace: Aspose.TeX.Plugins
Assembly: Aspose.TeX.dll (25.2.0)
The Figure Renderer plugin’s common result.
public sealed class FigureRendererPluginResult : IOperationResult
Inheritance
object ← FigureRendererPluginResult
Implements
Inherited Members
object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Properties
Data
Gets raw data.
public object Data { get; }
Property Value
IsByteArray
Indicates whether the result is a byte array.
public bool IsByteArray { get; }
Property Value
IsFile
Indicates whether the result is a file path.
public bool IsFile { get; }
Property Value
IsStream
Indicates whether the result is a stream.
public bool IsStream { get; }
Property Value
IsString
Indicates whether the result is a string.
public bool IsString { get; }
Property Value
Log
The stream containing the transcript file.
public Stream Log { get; }
Property Value
Size
The size of the rendered formula.
public SizeF Size { get; }
Property Value
Methods
ToFile()
Tries to convert the result to a file.
public string ToFile()
Returns
A string the file path if the result is file; otherwise null
.
ToStream()
Tries to convert the result to a stream.
public Stream ToStream()
Returns
A stream if the result is stream; otherwise null
.