Skip to main content

Book.GetService(Type) Method

Gets the service object of the specified type.

Namespace: DevExpress.Xpf.Controls

Assembly: DevExpress.Xpf.Controls.v23.2.dll

NuGet Package: DevExpress.Wpf.Controls

Declaration

public virtual object GetService(
    Type serviceType
)

Parameters

Name Type Description
serviceType Type

An object that specifies the type of service object to get.

Returns

Type Description
Object

A service object of the specified type. null (Nothing in Visual Basic) if there is no service object of this type.

Remarks

Use the GetService method to enable your application objects to obtain a service of the Book control to employ its methods. The Book control implements the System.IServiceProvider interface, so you can tell it what type of service you wish to retrieve via the GetService method. If a service is available, it is offered to the caller object.

See Also