[This is preliminary documentation and subject to change.]

Returns whether this plugin has custom configurable options.


Namespace: MediaMallTechnologies.Plugin
Assembly: Util (in Util.dll)

Syntax

Visual Basic (Declaration)
ReadOnly Property HasOptions As Boolean
C#
bool HasOptions { get; }
C++
property bool HasOptions abstract  {
    bool get();
}
J#
/** property */
public bool get_HasOptions();
JScript
public function get HasOptions() : bool

Property Value

true if this plugin has custom configurable options, false otherwise.

Remarks

A plugin is optionally able to have arbitrary custom options in a separate window. If this property returns true then an "Options" button will be visible and enabled in PlayOn Settings for this plugin. When the user presses this button, the IPlayOnProviderSettings.ConfigureOptions method will be invoked.

See Also