ToolTipService.GetShowDuration(DependencyObject) Método

Definição

Obtém o valor da propriedade anexada ShowDuration de um objeto.

public:
 static int GetShowDuration(System::Windows::DependencyObject ^ element);
[System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))]
public static int GetShowDuration (System.Windows.DependencyObject element);
[<System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))>]
static member GetShowDuration : System.Windows.DependencyObject -> int
Public Shared Function GetShowDuration (element As DependencyObject) As Integer

Parâmetros

element
DependencyObject

O objeto do qual o valor da propriedade é lido.

Retornos

O valor da propriedade ShowDuration do objeto.

Atributos

Exemplos

O exemplo a seguir mostra como obter o valor da ToolTipService.ShowDuration propriedade anexada. O FindName método localiza o objeto chamado ellipse2, que é um Ellipse.

myInt = ToolTipService.GetShowDuration(
              (DependencyObject)FindName("ellipse2"));
myInt = ToolTipService.GetShowDuration(CType(FindName("ellipse2"), DependencyObject))

Aplica-se a

Confira também