C# 클래스 System.Windows.Controls.Extensions

파일 보기 프로젝트 열기: Warewolf-ESB/Warewolf

공개 메소드들

메소드 설명
Contains ( this s, string value, StringComparison comparison ) : bool

An implementation of the Contains member of string that takes in a string comparison. The traditional .NET string Contains member uses StringComparison.Ordinal.

Invert ( this m, System.Windows.Media.Matrix &outputMatrix ) : bool

Inverts a Matrix. The Invert functionality on the Matrix type is internal to the framework only. Since Matrix is a struct, an out parameter must be presented.

메소드 상세

Contains() 공개 정적인 메소드

An implementation of the Contains member of string that takes in a string comparison. The traditional .NET string Contains member uses StringComparison.Ordinal.
public static Contains ( this s, string value, StringComparison comparison ) : bool
s this The string.
value string The string value to search for.
comparison StringComparison The string comparison type.
리턴 bool

Invert() 공개 정적인 메소드

Inverts a Matrix. The Invert functionality on the Matrix type is internal to the framework only. Since Matrix is a struct, an out parameter must be presented.
public static Invert ( this m, System.Windows.Media.Matrix &outputMatrix ) : bool
m this The Matrix object.
outputMatrix System.Windows.Media.Matrix The matrix to return by an output /// parameter.
리턴 bool