C# 클래스 Fluqi.Widget.jToolTip.Options

A set of properties to apply to a set of jQuery UI ToolTip.
상속: Core.Options
파일 보기 프로젝트 열기: toepoke/Fluqi

공개 메소드들

메소드 설명
Finish ( ) : ToolTip

Used to flag that configuration of Options has finished, and returns the ToolTip object so we can continue defining Tabs attributes.

Options ( ToolTip tooltip ) : System

Contructor

SetContentByFunction ( string content ) : Options

Sets the tooltip function to use

SetContentByString ( string content ) : Options

Sets the tooltip to use

SetDisabled ( bool disabled ) : Options

Disables the tooltip.

SetItems ( ) : Options

A selector indicating which items should show tooltips. Customize if you're using something other then the title attribute for the tooltip content, or if you need a different selector for event delegation. When changing this option, you likely need to also change the content option.

SetItemsObject ( string objSelector ) : Options

A selector indicating which items should show tooltips. Use this option if you're referencing a jQuery object selector Customize if you're using something other then the title attribute for the tooltip content, or if you need a different selector for event delegation. When changing this option, you likely need to also change the content option.

SetToolTipClass ( string cssClass ) : Options

A class to add to the widget, can be used to display various tooltip types, like warnings or errors. This may get replaced by the classes option.

SetTrack ( bool track ) : Options

Whether the tooltip should track (follow) the mouse.

보호된 메소드들

메소드 설명
DiscoverOptions ( Core options ) : void

Builds up a set of options the control can use (i.e. jQuery UI control supports). Which is then used in rendering the JavaScript required to initialise the control properties.

Reset ( ) : void

Resets all the control properties back to their default settings (i.e. the defaults as documented by jQuery UI library

메소드 상세

DiscoverOptions() 보호된 메소드

Builds up a set of options the control can use (i.e. jQuery UI control supports). Which is then used in rendering the JavaScript required to initialise the control properties.
protected DiscoverOptions ( Core options ) : void
options Core Collection to add the identified options to
리턴 void

Finish() 공개 메소드

Used to flag that configuration of Options has finished, and returns the ToolTip object so we can continue defining Tabs attributes.
public Finish ( ) : ToolTip
리턴 ToolTip

Options() 공개 메소드

Contructor
public Options ( ToolTip tooltip ) : System
tooltip ToolTip Tooltip object we're configuring
리턴 System

Reset() 보호된 메소드

Resets all the control properties back to their default settings (i.e. the defaults as documented by jQuery UI library
protected Reset ( ) : void
리턴 void

SetContentByFunction() 공개 메소드

Sets the tooltip function to use
public SetContentByFunction ( string content ) : Options
content string
리턴 Options

SetContentByString() 공개 메소드

Sets the tooltip to use
public SetContentByString ( string content ) : Options
content string
리턴 Options

SetDisabled() 공개 메소드

Disables the tooltip.
public SetDisabled ( bool disabled ) : Options
disabled bool
리턴 Options

SetItems() 공개 메소드

A selector indicating which items should show tooltips. Customize if you're using something other then the title attribute for the tooltip content, or if you need a different selector for event delegation. When changing this option, you likely need to also change the content option.
public SetItems ( ) : Options
리턴 Options

SetItemsObject() 공개 메소드

A selector indicating which items should show tooltips. Use this option if you're referencing a jQuery object selector Customize if you're using something other then the title attribute for the tooltip content, or if you need a different selector for event delegation. When changing this option, you likely need to also change the content option.
public SetItemsObject ( string objSelector ) : Options
objSelector string
리턴 Options

SetToolTipClass() 공개 메소드

A class to add to the widget, can be used to display various tooltip types, like warnings or errors. This may get replaced by the classes option.
public SetToolTipClass ( string cssClass ) : Options
cssClass string
리턴 Options

SetTrack() 공개 메소드

Whether the tooltip should track (follow) the mouse.
public SetTrack ( bool track ) : Options
track bool
리턴 Options