Size3D.Empty 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,這個值表示空白 Size3D 結構。
public:
static property System::Windows::Media::Media3D::Size3D Empty { System::Windows::Media::Media3D::Size3D get(); };
public static System.Windows.Media.Media3D.Size3D Empty { get; }
static member Empty : System.Windows.Media.Media3D.Size3D
Public Shared ReadOnly Property Empty As Size3D
屬性值
Size3D 結構的空白執行個體。
範例
下列範例示範如何將 結構設為 Size3D 空白。
// Gets an empty Size3D structure
Size3D size1 = new Size3D(2, 4, 6);
size1 = Size3D.Empty;
// size1 is now empty
// Displaying Results
syntaxString = "size1 = Size3D.Empty;";
resultType = "Size3D";
operationString = "Getting an empty Size3D structure";
ShowResults(size1.ToString(), syntaxString, resultType, operationString);
' Gets an empty Size3D structure
Dim size1 As New Size3D(2, 4, 6)
size1 = Size3D.Empty
' size1 is now empty
' Displaying Results
syntaxString = "size1 = Size3D.Empty"
resultType = "Size3D"
operationString = "Getting an empty Size3D structure"
ShowResults(size1.ToString(), syntaxString, resultType, operationString)
備註
Size3D將 X 、 Y 和 Z 值設定為 0 的結構不是空的。 空 Size3D 結構具有 X 、 Y 和 Z 值設定為負無限大。 這是結構可以有負值的唯一 Size3D 時間。