Svg.SvgTextBase.GetAuthorPathLength C# (CSharp) Méthode

GetAuthorPathLength() protected méthode

protected GetAuthorPathLength ( ) : float
Résultat float
        protected virtual float GetAuthorPathLength()
        {
            return 0;
        }

Usage Example

Exemple #1
0
 public TextDrawingState(ISvgRenderer renderer, SvgTextBase element)
 {
     this.Element      = element;
     this.Renderer     = renderer;
     this.Current      = PointF.Empty;
     _xAnchor          = 0;
     this.BaselinePath = element.GetBaselinePath(renderer);
     _authorPathLength = element.GetAuthorPathLength();
 }
All Usage Examples Of Svg.SvgTextBase::GetAuthorPathLength