PropertyGuidsForContextNodes.AlignmentLevel フィールド
段落で配置レベルを表す整数を取得および設定するためのグローバル一意識別子 (GUID) を指定します。
名前空間 : Microsoft.Ink
アセンブリ : Microsoft.Ink.Analysis (Microsoft.Ink.Analysis.dll 内)
構文
'宣言
Public Shared ReadOnly AlignmentLevel As Guid
'使用
Dim value As Guid
value = PropertyGuidsForContextNodes.AlignmentLevel
public static readonly Guid AlignmentLevel
public:
static initonly Guid AlignmentLevel
public static final Guid AlignmentLevel
public static final var AlignmentLevel : Guid
解説
このフィールドは、Paragraph 型の ContextNode の配置レベルを表しています。配置レベルは、各段落にあるインデントまたはタブ位置の数で、他の段落に対して相対的な値です。配置レベルは、マージンからの特定のタブの距離は表していません。
例
AlignmentLevel フィールドの例を次に示します。
' Get the relative number of indents or tab stops on a paragraph
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForContextNodes.AlignmentLevel) Then
Dim myAlignmentLevel As Integer = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForContextNodes.AlignmentLevel), Integer)
End If
// Get the relative number of indents or tab stops on a paragraph
if (myAnalysisHintNode.ContainsPropertyData(
PropertyGuidsForContextNodes.AlignmentLevel))
{
int myAlignmentLevel =
(int)myAnalysisHintNode.GetPropertyData(
PropertyGuidsForContextNodes.AlignmentLevel);
}
プラットフォーム
Windows Vista
.NET Framework および .NET Compact Framework では、各プラットフォームのすべてのバージョンはサポートしていません。サポートされているバージョンについては、「.NET Framework システム要件」を参照してください。
バージョン情報
.NET Framework
サポート対象 : 3.0
参照
参照
PropertyGuidsForContextNodes クラス