Localizable.GetValue Method

Definition

Retrieves the value of the property.

Overloads

GetValue()

Retrieves the value of the property with the default property values.

GetValue(Type)

Gets the type with the specified type.

GetValue<T>()

Retrieves the value associated with the property.

GetValue()

Retrieves the value of the property with the default property values.

public:
 System::Object ^ GetValue();
public object GetValue ();
member this.GetValue : unit -> obj
Public Function GetValue () As Object

Returns

The value of the property.

Applies to

GetValue(Type)

Gets the type with the specified type.

public:
 System::Object ^ GetValue(Type ^ targetType);
public object GetValue (Type targetType);
member this.GetValue : Type -> obj
Public Function GetValue (targetType As Type) As Object

Parameters

targetType
Type

The type for which this style is intended.

Returns

The type with the specified value.

Applies to

GetValue<T>()

Retrieves the value associated with the property.

public:
generic <typename T>
 T GetValue();
public T GetValue<T> ();
member this.GetValue : unit -> 'T
Public Function GetValue(Of T) () As T

Type Parameters

T

A generic object value.

Returns

T

The value that is associated with the property.

Applies to