Table of Contents

Class GroupGridExporter

Namespace
Avalonia.Controls
Assembly
Tripous.Avalonia.Controls.dll

Base class for group grid exporters.

public abstract class GroupGridExporter
Inheritance
GroupGridExporter
Derived
Inherited Members
Extension Methods

Properties

DefaultExtension

Gets the default file extension without a leading dot.

public abstract string DefaultExtension { get; }

Property Value

string

Name

Gets the exporter display name.

public abstract string Name { get; }

Property Value

string

Methods

Export(GroupGrid, GroupGridExportSnapshot, string)

Exports a group grid snapshot.

public abstract void Export(GroupGrid Grid, GroupGridExportSnapshot Snapshot, string FilePath)

Parameters

Grid GroupGrid

The source group grid.

Snapshot GroupGridExportSnapshot

The export snapshot.

FilePath string

The export file path.

ValidateFilePath(string)

Ensures that the export file path is a full file path.

protected void ValidateFilePath(string FilePath)

Parameters

FilePath string

The export file path.

WriteText(string, string)

Writes export text to a file.

protected void WriteText(string FilePath, string Text)

Parameters

FilePath string

The export file path.

Text string

The text to write.