API Search || Global Search

More...

Inheritance diagram for HPS.HighlightSearchOptionsKit:
HPS.Kit HPS.Object

Public Member Functions

override void Dispose ()
 
override bool Empty ()
 Indicates whether this HighlightSearchOptionsKit has any values set on it. More...
 
override bool Equals (System.Object obj)
 
bool Equals (HPS.HighlightSearchOptionsKit in_kit)
 Check if the source HighlightSearchOptionsKit is equivalent to this HighlightSearchOptionsKit. More...
 
override int GetHashCode ()
 
 HighlightSearchOptionsKit ()
 The default constructor creates an empty HighlightSearchOptionsKit object. More...
 
 HighlightSearchOptionsKit (HPS.HighlightSearchOptionsKit in_kit)
 The copy constructor creates a new HighlightSearchOptionsKit object that contains the same settings as the source HighlightSearchOptionsKit. More...
 
override HPS.Type ObjectType ()
 This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object. More...
 
void Set (HPS.HighlightSearchOptionsKit in_kit)
 Copies the source HighlightSearchOptionsKit into this HighlightSearchOptionsKit. More...
 
HPS.HighlightSearchOptionsKit SetOverlay (HPS.Drawing.Overlay in_overlay)
 Sets the overlay type to look for when querying highlights. Only highlights using this overlay type will be returned by highlight queries. More...
 
HPS.HighlightSearchOptionsKit SetOverlays (HPS.Drawing.Overlay[] in_overlays)
 Sets the overlay types to look for when querying highlights. Only highlights using any overlay types in the array will be returned by highlight queries. More...
 
HPS.HighlightSearchOptionsKit SetStyleName (string in_style_name)
 Sets the name of the style to look for when querying highlights. Only highlights using this style will be returned by highlight queries. More...
 
HPS.HighlightSearchOptionsKit SetStyleNames (string[] in_style_names)
 Sets the names of the styles to look for when querying highlights. Only highlights using any style in the array will be returned by highlight queries. More...
 
void Show (out HPS.HighlightSearchOptionsKit out_kit)
 Copies this HighlightSearchOptionsKit into the given HighlightSearchOptionsKit. More...
 
bool ShowOverlays (out HPS.Drawing.Overlay[] out_overlays)
 Shows the overlay types to look for when querying highlights. More...
 
bool ShowStyleNames (out string[] out_style_names)
 Shows the names of the styles to look for when querying highlights. More...
 
HPS.HighlightSearchOptionsKit UnsetEverything ()
 Removes all settings from this HighlightSearchOptionsKit. More...
 
HPS.HighlightSearchOptionsKit UnsetOverlays ()
 Removes all overlay filters. More...
 
HPS.HighlightSearchOptionsKit UnsetStyleNames ()
 Removes all style filters. More...
 
- Public Member Functions inherited from HPS.Kit
override void Dispose ()
 
 Kit (HPS.Kit in_that)
 
override HPS.Type ObjectType ()
 This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object. More...
 
override HPS.Type Type ()
 This function returns the true type of the underlying object. This function is useful for finding the type of smart pointer objects that have been cast to more generic types. More...
 
- Public Member Functions inherited from HPS.Object
IntPtr GetClassID ()
 
IntPtr GetInstanceID ()
 Returns an identifier that can be used to identify which instance of a class an object is. Different keys and controls will return the same value if they are backed by the same database resource. More...
 
bool HasType (HPS.Type in_mask)
 This function indicates whether this Object has the given Type mask. More...
 
 Object (HPS.Object that)
 
virtual void Reset ()
 Resets this object to its initial, uninitialized state. More...
 

Static Public Member Functions

static
HPS.HighlightSearchOptionsKit 
GetDefault ()
 Creates a HighlightSearchOptionsKit which contains the default settings. The returned object will not necessarily have values set for every option, but it will have settings for those options where it is reasonable to have a default. More...
 
static bool operator!= (HPS.HighlightSearchOptionsKit a, HPS.HighlightSearchOptionsKit b)
 
static bool operator== (HPS.HighlightSearchOptionsKit a, HPS.HighlightSearchOptionsKit b)
 
- Static Public Member Functions inherited from HPS.Object
static IntPtr ClassID< T > ()
 

Protected Member Functions

override void deleteCptr ()
 
- Protected Member Functions inherited from HPS.Kit
override void deleteCptr ()
 
- Protected Member Functions inherited from HPS.Object
virtual IntPtr GetNonDirectorClassID ()
 

Additional Inherited Members

- Protected Attributes inherited from HPS.Object
bool cMemOwn
 
HandleRef cptr
 

Detailed Description

The HighlightSearchOptionsKit class is a user space object. It is used to filter highlight queries via HighlightControl.ShowHighlightState, HighlightControl.ShowHighlightStates, and WindowKey.FindHighlights.

Constructor & Destructor Documentation

HPS.HighlightSearchOptionsKit.HighlightSearchOptionsKit ( )
inline

The default constructor creates an empty HighlightSearchOptionsKit object.

HPS.HighlightSearchOptionsKit.HighlightSearchOptionsKit ( HPS.HighlightSearchOptionsKit  in_kit)
inline

The copy constructor creates a new HighlightSearchOptionsKit object that contains the same settings as the source HighlightSearchOptionsKit.

Parameters
in_kitThe source HighlightSearchOptionsKit to copy.

Member Function Documentation

override bool HPS.HighlightSearchOptionsKit.Empty ( )
inlinevirtual

Indicates whether this HighlightSearchOptionsKit has any values set on it.

Returns
    true if no values are set on this HighlightSearchOptionsKit, false otherwise.

Reimplemented from HPS.Object.

bool HPS.HighlightSearchOptionsKit.Equals ( HPS.HighlightSearchOptionsKit  in_kit)
inline

Check if the source HighlightSearchOptionsKit is equivalent to this HighlightSearchOptionsKit.

Parameters
in_kitThe source HighlightSearchOptionsKit to compare to this HighlightSearchOptionsKit.
Returns
    true if the objects are equivalent, false otherwise.
static HPS.HighlightSearchOptionsKit HPS.HighlightSearchOptionsKit.GetDefault ( )
inlinestatic

Creates a HighlightSearchOptionsKit which contains the default settings. The returned object will not necessarily have values set for every option, but it will have settings for those options where it is reasonable to have a default.

Returns
    A HighlightSearchOptionsKit with the default settings.
override HPS.Type HPS.HighlightSearchOptionsKit.ObjectType ( )
inlinevirtual

This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.

Returns
    The declared type of the object in question, which may differ from the true, underlying type.

Reimplemented from HPS.Object.

void HPS.HighlightSearchOptionsKit.Set ( HPS.HighlightSearchOptionsKit  in_kit)
inline

Copies the source HighlightSearchOptionsKit into this HighlightSearchOptionsKit.

Parameters
in_kitThe source HighlightSearchOptionsKit to copy.
HPS.HighlightSearchOptionsKit HPS.HighlightSearchOptionsKit.SetOverlay ( HPS.Drawing.Overlay  in_overlay)
inline

Sets the overlay type to look for when querying highlights. Only highlights using this overlay type will be returned by highlight queries.

Parameters
in_overlayOverlay type.
Returns
    A reference to this object.
HPS.HighlightSearchOptionsKit HPS.HighlightSearchOptionsKit.SetOverlays ( HPS.Drawing.Overlay[]  in_overlays)
inline

Sets the overlay types to look for when querying highlights. Only highlights using any overlay types in the array will be returned by highlight queries.

Parameters
in_overlaysOverlay types.
Returns
    A reference to this object.
HPS.HighlightSearchOptionsKit HPS.HighlightSearchOptionsKit.SetStyleName ( string  in_style_name)
inline

Sets the name of the style to look for when querying highlights. Only highlights using this style will be returned by highlight queries.

Parameters
in_style_nameUTF8-encoded style name.
Returns
    A reference to this HighlightSearchOptionsKit.
HPS.HighlightSearchOptionsKit HPS.HighlightSearchOptionsKit.SetStyleNames ( string[]  in_style_names)
inline

Sets the names of the styles to look for when querying highlights. Only highlights using any style in the array will be returned by highlight queries.

Parameters
in_style_namesUTF8-encoded style names.
Returns
    A reference to this HighlightSearchOptionsKit.
void HPS.HighlightSearchOptionsKit.Show ( out HPS.HighlightSearchOptionsKit  out_kit)
inline

Copies this HighlightSearchOptionsKit into the given HighlightSearchOptionsKit.

Parameters
out_kitThe HighlightSearchOptionsKit to populate with the contents of this HighlightSearchOptionsKit.
bool HPS.HighlightSearchOptionsKit.ShowOverlays ( out HPS.Drawing.Overlay[]  out_overlays)
inline

Shows the overlay types to look for when querying highlights.

Parameters
out_overlaysOverlay types.
Returns
    true if the setting is valid, false otherwise.
bool HPS.HighlightSearchOptionsKit.ShowStyleNames ( out string[]  out_style_names)
inline

Shows the names of the styles to look for when querying highlights.

Parameters
out_style_namesUTF8-encoded style names.
Returns
    true if any style was specified, false otherwise.
HPS.HighlightSearchOptionsKit HPS.HighlightSearchOptionsKit.UnsetEverything ( )
inline

Removes all settings from this HighlightSearchOptionsKit.

Returns
    A reference to this HighlightSearchOptionsKit.
HPS.HighlightSearchOptionsKit HPS.HighlightSearchOptionsKit.UnsetOverlays ( )
inline

Removes all overlay filters.

Returns
    A reference to this object.
HPS.HighlightSearchOptionsKit HPS.HighlightSearchOptionsKit.UnsetStyleNames ( )
inline

Removes all style filters.

Returns
    A reference to this HighlightSearchOptionsKit.

The documentation for this class was generated from the following file:
  • internals/hps_core/source/cs/HPS.HighlightSearchOptionsKit.cs