[]
        
(Showing Draft Content)

GrapeCity.Documents.Common.StructConverter-2

StructConverter<TInput, TOutput> Delegate

Represents a method that converts an object from one struct type to another struct type.

Namespace: GrapeCity.Documents.Common
Assembly: DS.Documents.Imaging.dll
Syntax
public delegate void StructConverter<TInput, TOutput>(in TInput input, out TOutput output) where TInput : struct where TOutput : struct
Public Delegate Sub StructConverter(Of TInput As Structure, TOutput As Structure)(input As TInput, output As TOutput)
Parameters
Type Name Description
TInput input

The struct to convert.

TOutput output

The converted struct.

Type Parameters
Name Description
TInput

The type of struct that is to be converted.

TOutput

The type the input struct is to be converted to.