Leadtools.Annotations Namespace > AnnObject Class : NameOffset Property |
public virtual AnnPoint NameOffset {get; set;}
'Declaration Public Overridable Property NameOffset As AnnPoint
'Usage Dim instance As AnnObject Dim value As AnnPoint instance.NameOffset = value value = instance.NameOffset
public virtual AnnPoint NameOffset {get; set;}
get_NameOffset();
set_NameOffset(value);
Public Sub AnnObject_NameOffset(ByVal container As AnnContainer) Dim font As AnnFont = New AnnFont("Arial", New AnnLength(11, AnnUnit.Point), FontStyle.Regular) For Each obj As AnnObject In container.Objects obj.NameVisible = True obj.NameOffset = AnnPoint.Empty obj.NameForeColor = Color.White obj.NameBackColor = Color.Blue obj.NameFont = font Next obj End Sub
public void AnnObject_NameOffset(AnnContainer container) { AnnFont font = new AnnFont("Arial", new AnnLength(11, AnnUnit.Point), FontStyle.Regular); foreach(AnnObject obj in container.Objects) { obj.NameVisible = true; obj.NameOffset = AnnPoint.Empty; obj.NameForeColor = Color.White; obj.NameBackColor = Color.Blue; obj.NameFont = font; } }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2