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입니다.

적용 대상