次の方法で共有


ReportSize.TryParse メソッド

定義

文字列値の ReportSize への解析を試みます。

オーバーロード

TryParse(String, ReportSize)

文字列値の ReportSize への解析を試みます。

TryParse(String, Boolean, ReportSize)

文字列値の ReportSize への解析を試みます。

TryParse(String, ReportSize)

文字列値の 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

パラメーター

value
String

文字列値。

reportSize
ReportSize

[out] 解析されるレポートのサイズ。

戻り値

試行が成功した場合は true、成功しなかった場合は false

適用対象

TryParse(String, Boolean, ReportSize)

文字列値の 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

パラメーター

value
String

文字列値。

allowNegative
Boolean

で負の値 valueを許可するかどうかを指定します。

reportSize
ReportSize

[out] 解析されるレポートのサイズ。

戻り値

試行が成功した場合は true、成功しなかった場合は false

適用対象