VintaSoft Imaging .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Imaging.Pdf.UI Namespace / GraphicsFigureViewFactory Class / RegisterViewForGraphicsFigure(Type,Type) Method
Syntax Exceptions Requirements SeeAlso
In This Topic
RegisterViewForGraphicsFigure(Type,Type) Method (GraphicsFigureViewFactory)
In This Topic
Registers view for figure data.
Syntax
'Declaration

Public Shared Sub RegisterViewForGraphicsFigure( _
ByVal graphicsFigureType
Type of figure.
As System.Type, _
ByVal graphicsFigureViewType
Type of figure view.
As System.Type _
)
public static void RegisterViewForGraphicsFigure(
System.Type graphicsFigureType,
System.Type graphicsFigureViewType
)

Parameters

graphicsFigureType
Type of figure.
graphicsFigureViewType
Type of figure view.
Exceptions
ExceptionDescription
Thrown if graphicsFigureType OR graphicsFigureViewType is null.
Thrown if graphicsFigureType is not derived from GraphicsFigure OR graphicsFigureViewType is not derived from RectangleBasedFigureView OR graphicsFigureViewType is abstract type OR graphicsFigureViewType does not contain a public constructor with a single parameter derived from GraphicsFigure.
Requirements

Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

See Also