Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 2.56 KB

File metadata and controls

36 lines (30 loc) · 2.56 KB

Result class

public class Result

Public Members

name description
Result() The default constructor.
Action { get; set; } Delegate. An action to take in the form of a function call when the result has been selected true to hide flowlauncher after select result
ActionKeywordAssigned { get; set; } This holds the action keyword that triggered the result. If result is triggered by global keyword: *, this should be empty.
AutoCompleteText { get; set; } This holds the text which can be provided by plugin to help Flow autocomplete text for user on the plugin result. If autocomplete action for example is tab, pressing tab will have the default constructed autocomplete text (result's Title), or the text provided here if not empty.
ContextData { get; set; } Additional data associated with this result As external information for ContextMenu
Glyph { get; set; } Information for Glyph Icon (Prioritized than IcoPath/Icon if user enable Glyph Icons)
IcoPath { get; set; } Image Displayed on the result Relative Path to the Image FileGlyphInfo is prioritized if not null
PluginDirectory { get; set; } Plugin directory
PluginID { get; } Plugin ID that generated this result
Score { get; set; } Priority of the current result default: 0
SubTitle { get; set; } Provides additional details for the result. This is optional
SubTitleToolTip { get; set; } Show message as ToolTip on result SubTitle hover over
Title { get; set; } The title of the result. This is always required.
TitleHighlightData { get; set; } A list of indexes for the characters to be highlighted in Title
TitleToolTip { get; set; } Show message as ToolTip on result Title hover over
Icon Delegate to Get Image Source
override Equals(…)
override GetHashCode()
override ToString()
delegate IconDelegate

See Also