Share via


ReportSize.TryParse Método

Definición

Intenta analizar un valor de cadena en un ReportSize.

Sobrecargas

TryParse(String, ReportSize)

Intenta analizar un valor de cadena en un ReportSize.

TryParse(String, Boolean, ReportSize)

Intenta analizar un valor de cadena en un ReportSize.

TryParse(String, ReportSize)

Intenta analizar un valor de cadena en un ReportSize.

public:
 static bool TryParse(System::String ^ value, [Runtime::InteropServices::Out] Microsoft::ReportingServices::OnDemandReportRendering::ReportSize ^ % reportSize);
public static bool TryParse (string value, out Microsoft.ReportingServices.OnDemandReportRendering.ReportSize reportSize);
static member TryParse : string * ReportSize -> bool
Public Shared Function TryParse (value As String, ByRef reportSize As ReportSize) As Boolean

Parámetros

value
String

El valor de cadena.

reportSize
ReportSize

[out] Tamaño del informe analizado.

Devoluciones

true si el intento es correcto; de lo contrario, false.

Se aplica a

TryParse(String, Boolean, ReportSize)

Intenta analizar un valor de cadena en un ReportSize.

public:
 static bool TryParse(System::String ^ value, bool allowNegative, [Runtime::InteropServices::Out] Microsoft::ReportingServices::OnDemandReportRendering::ReportSize ^ % reportSize);
public static bool TryParse (string value, bool allowNegative, out Microsoft.ReportingServices.OnDemandReportRendering.ReportSize reportSize);
static member TryParse : string * bool * ReportSize -> bool
Public Shared Function TryParse (value As String, allowNegative As Boolean, ByRef reportSize As ReportSize) As Boolean

Parámetros

value
String

El valor de cadena.

allowNegative
Boolean

Si se va a permitir un valor negativo en value.

reportSize
ReportSize

[out] Tamaño del informe analizado.

Devoluciones

true si el intento es correcto; de lo contrario, false.

Se aplica a